##// END OF EJS Templates
Fixed header cells getting commented out because of...
Jonathan Frederic -
Show More
@@ -142,22 +142,24 b' This template does not define a docclass, the inheriting class must define this.'
142 ((*- endmacro *))
142 ((*- endmacro *))
143
143
144 % Draw heading cell. Explicitly map different cell levels.
144 % Draw heading cell. Explicitly map different cell levels.
145 ((* block headingcell scoped -*))
145 ((* block headingcell scoped *))
146 ((*- if cell.level == 1 -*))
146
147 ((* if cell.level == 1 -*))
147 ((* block h1 -*))\section((* endblock h1 -*))
148 ((* block h1 -*))\section((* endblock h1 -*))
148 ((*- elif cell.level == 2 -*))
149 ((* elif cell.level == 2 -*))
149 ((* block h2 -*))\subsection((* endblock h2 -*))
150 ((* block h2 -*))\subsection((* endblock h2 -*))
150 ((*- elif cell.level == 3 -*))
151 ((* elif cell.level == 3 -*))
151 ((* block h3 -*))\subsubsection((* endblock h3 -*))
152 ((* block h3 -*))\subsubsection((* endblock h3 -*))
152 ((*- elif cell.level == 4 -*))
153 ((* elif cell.level == 4 -*))
153 ((* block h4 -*))\paragraph((* endblock h4 -*))
154 ((* block h4 -*))\paragraph((* endblock h4 -*))
154 ((*- elif cell.level == 5 -*))
155 ((* elif cell.level == 5 -*))
155 ((* block h5 -*))\subparagraph((* endblock h5 -*))
156 ((* block h5 -*))\subparagraph((* endblock h5 -*))
156 ((*- elif cell.level == 6 -*))
157 ((* elif cell.level == 6 -*))
157 ((* block h6 -*))\\*\textit((* endblock h6 -*))
158 ((* block h6 -*))\\*\textit((* endblock h6 -*))
158 ((*- endif -*))
159 ((*- endif -*))
159 {((( cell.source | escape_latex )))}
160 {((( cell.source | escape_latex )))}
160 ((*- endblock headingcell *))
161
162 ((* endblock headingcell *))
161
163
162 % Redirect pyout to display data priority.
164 % Redirect pyout to display data priority.
163 ((* block pyout scoped *))
165 ((* block pyout scoped *))
General Comments 0
You need to be logged in to leave comments. Login now