##// 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 def subsubsubsection(s):
44 def subsubsubsection(s):
45 return "%s\n%s\n\n" % (s, "." * encoding.colwidth(s))
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 def replace(text, substs):
50 def replace(text, substs):
48 '''
51 '''
49 Apply a list of (find, replace) pairs to a text.
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