Skip to content

auermi/mdparse-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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]

About

Python Markdown to HTML parser

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages