##// END OF EJS Templates
add some missing parentheses
MinRK -
Show More
@@ -59,7 +59,7 b' Out[{{cell.prompt_number}}]:'
59 59
60 60 {% block headingcell scoped %}
61 61 <div class="text_cell_render border-box-sizing rendered_html">
62 {{("#" * cell.level + " " + cell.source) | replace('\n', ' ') | markdown | rm_fake | add_anchor }}
62 {{("#" * cell.level + cell.source) | replace('\n', ' ') | markdown | rm_fake | add_anchor }}
63 63 </div>
64 64 {% endblock headingcell %}
65 65
@@ -87,7 +87,7 b' it introduces a new line'
87 87 ((* endblock markdowncell *))
88 88
89 89 ((* block headingcell scoped -*))
90 ((( '#' * cell.level + ' ' + cell.source | replace('\n', ' ') | markdown2latex )))
90 ((( ('#' * cell.level + cell.source) | replace('\n', ' ') | markdown2latex )))
91 91 ((* endblock headingcell *))
92 92
93 93 ((* block rawcell scoped *))
General Comments 0
You need to be logged in to leave comments. Login now