Skip to content

Latest commit

 

History

History
39 lines (36 loc) · 1.02 KB

File metadata and controls

39 lines (36 loc) · 1.02 KB

markdown-parse

Python based Markdown to HTML parser

Usage

Running the script
python3 mdparse.py note.md
Current Limitations of the Parser
  • Currently, the parser reads each line of your markdown one at a time so you can only use one kind of styling per line

Markdown Spec

The initial version will be based off of the Daring Fireball Spec

Supported Markdown

Header tags using '#' notation from <h1> to <h6>
# H1 Title
Bold text using asterisks or underscore notation
**Bold Text**    __Bold Text__
Italic text using asterisks or underscore notation
*Italic text*    _Italic text_
Code blocks i.e.
``console.log('markdown is awesome!');``
Images (Alt text, Image URL)
![alt text here](http://thecatapi.com/?id=bsb)
Links (Link Text, Link URL)
[View Markdown Parse on Github][https://github.com/auermi/markdown-parse]