November 2015
Beginner
250 pages
5h 16m
English
Markdown is a now widely used mark-up language on the web. It allows you to write plain text in a special format that can be programmatically converted to HTML. This can be especially useful when editing text from a mobile device where, for example, highlighting text to make it bold is significantly trickier than on a PC. You can see how to use the Markdown syntax at http://daringfireball.net/projects/markdown/
One interesting thing to note with Markdown is that you can still use HTML as well as Markdown at the same time.
Of course, to get this running is quick and simple in Python. We install it as follows:
sudo pip install Flask-Markdown
Then we can apply it to our blueprint or app as follows:
from flaskext.markdown ...
Read now
Unlock full access