##// END OF EJS Templates
minirst: support subsubsubsubsections (header level 5) with marker ''''...
Sietse Brouwer -
r42437:f9cdd732 default
parent child Browse files
Show More
@@ -44,6 +44,9 b' def subsubsection(s):'
44 44 def subsubsubsection(s):
45 45 return "%s\n%s\n\n" % (s, "." * encoding.colwidth(s))
46 46
47 def subsubsubsubsection(s):
48 return "%s\n%s\n\n" % (s, "'" * encoding.colwidth(s))
49
47 50 def replace(text, substs):
48 51 '''
49 52 Apply a list of (find, replace) pairs to a text.
General Comments 0
You need to be logged in to leave comments. Login now