Skip to main content

A chrome-edit-server plugin allowing one to edit Gmail messages

Project description

Converts a (tiny) subset of HTML -> text and back. Empirically this should be enough to edit “plain text” in gmail’s new compose window, but it’s somewhat fragile.

>>> c = GmailCodec()
>>> content = ("3<div><br></div><div><br></div><div><br></div><div>"
...            "2</div><div><br></div><div><br></div><div>"
...            "1</div><div><br></div><div>"
...            "0</div><div>"
...            "EOF</div>")
>>> plaintext = c.decode(content)
>>> print plaintext
3
<BLANKLINE>
<BLANKLINE>
<BLANKLINE>
2
<BLANKLINE>
<BLANKLINE>
1
<BLANKLINE>
0
EOF
>>> html = c.encode(plaintext)
>>> print html
3<br><br><br><br>2<br><br><br>1<br><br>0<br>EOF

Also, for entities and preserving of unknown tags:

>>> print c.encode(c.decode('&lt;<foo x="1">foo!</foo>'))
&lt;<foo x="1">foo!</foo>

Entities:

>>> print repr(c.decode(" &nbsp;"))
'  '
>>> print repr(c.encode(c.decode(" &nbsp;")))
'&nbsp; '

Tabs:

>>> print repr(c.encode('\t'))
'&nbsp;&nbsp;&nbsp; '

Spacing:

>>> print c.encode('>    1')
&gt; &nbsp;&nbsp; 1

Requirements

Installation

Install from PyPI by running:

pip install chrome-edit-server-gmail-filter

When you next use an “Edit server”-compatible chrome plugin (like “TextAid” or “Edit With Emacs”) from Gmail, this filter will be invoked automatically.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chrome-edit-server-gmail-filter-0.3.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page