##// END OF EJS Templates
templatefuncs: only render text portion of minirst.format() result...
av6 -
r38243:3277940a stable
parent child Browse files
Show More
@@ -553,7 +553,7 b' def rstdoc(context, mapping, args):'
553 text = evalstring(context, mapping, args[0])
553 text = evalstring(context, mapping, args[0])
554 style = evalstring(context, mapping, args[1])
554 style = evalstring(context, mapping, args[1])
555
555
556 return minirst.format(text, style=style, keep=['verbose'])
556 return minirst.format(text, style=style, keep=['verbose'])[0]
557
557
558 @templatefunc('separate(sep, args...)', argspec='sep *args')
558 @templatefunc('separate(sep, args...)', argspec='sep *args')
559 def separate(context, mapping, args):
559 def separate(context, mapping, args):
@@ -3138,7 +3138,7 b' Dish up an empty repo; serve it cold.'
3138 <p>
3138 <p>
3139 which will prevent the pager from running.
3139 which will prevent the pager from running.
3140 </p>
3140 </p>
3141 windows
3141
3142 </div>
3142 </div>
3143 </div>
3143 </div>
3144 </div>
3144 </div>
General Comments 0
You need to be logged in to leave comments. Login now