Python-Markdown extension for annotating gthnk journal text files
Project description
Extend Python Markdown with the gthnk journal annotation format. With this extension installed, all datestamps and timestamps will be rendered as headings.
Installation
pip install mdx-journal
Documentation
Please see the Readme file on github.
An example
First, let’s look at a journal entry without this custom markup.
>>> from markdown import markdown >>> text = "2013-12-16\n\n1620\n\nThis is the first entry\n1621\n\nAnd this is the second entry" >>> markdown(text) u'<p>2013-12-16</p>\n<p>1620</p>\n<p>This is the first entry\n1621</p>\n<p>And this is the second entry</p>'
Now let’s look at a journal entry with journal markup applied. You will see that dates and times are now wrapped in heading tags.
>>> markdown(text, extensions=["journal"]) u'<p><h3>2013-12-16</h3></p>\n<p><h4>1620</h4></p>\n<p>This is the first entry\n<h4>1621</h4></p>\n<p>And this is the second entry</p>'
Source
License
MIT License.
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
mdx_journal-0.1.4.tar.gz
(2.5 kB
view details)
File details
Details for the file mdx_journal-0.1.4.tar.gz
.
File metadata
- Download URL: mdx_journal-0.1.4.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b7d8f011164c38e3ea2aa0de8d89b62e514155887671cd1ea894d7021afdd3e |
|
MD5 | 7965963e27cc9ed0fac676edd7520774 |
|
BLAKE2b-256 | 1e0e2aca226ea92f4227e21e32a8b5223962f2d5091e60265bb189759fa55813 |