web2py Markdown Usage Example
from gluon.contrib.markdown import WIKI as markdown
def index():
""" ##
[see](web2py.com/examples/static/sphinx/gluon/gluon.contrib.markdown.html)
[Markdown see](https://groups.google.com/g/web2py/c/om9aXi3xg3Y/m/jE4t-KwpBQAJ)
"""
# response.view = 'genericIndexJoe.html'
response.flash = T("Welcome!")
my_md = '''## Welcome to the cov19cty App!
### To generate County Comparison Charts:
1. Click Menu >> Gen Chart >> Multi-County Input Form
1. Add Your Counties to compare (state, county, typeOfData)
2. Define Your Time Series
2. Click Menu >> Gen Chart >> Show Multi-County Chart
'''
my_html = markdown(my_md)
# return dict( message=my_html )
return my_html
#markdown, #web2py