Autoblog Example

categ2

As showed in this manual, it uses hash(#) to identify headings, emphasizes some text to be bold or italic. You can insert a link , or a footnote[^demo]. Serveral advanced syntax are listed below, please press Ctrl + / to view Markdown cheatsheet.

Code block

1
2
3
4
5
6
7
8
9
10
def (param1='', param2=0):
'''A docstring'''
if param1 > param2:
print 'Greater'
return (param2 - param1 + 1) or None
class SomeClass:
pass
>>> message = '''interpreter
... prompt'''