##// END OF EJS Templates
Process header cells....
Jonathan Frederic -
Show More
@@ -65,64 +65,72 b''
65 65 ((* block footer *))
66 66 ((* endblock footer *))
67 67
68 ((*- block any_cell scoped -*))
69 ((( cell.source)))
70 ((*- if cell.type in ['code'] -*))
71
72 ((*- block codecell scoped -*))
73 ((*- block input_group -*))
74 ((*- block in_prompt -*))((*- endblock in_prompt -*))
75 ((*- block input -*))((*- endblock input -*))
76 ((*- endblock input_group -*))
77 ((*- if cell.outputs -*))
78 ((*- block output_group -*))
79 ((*- block output_prompt -*))((*- endblock output_prompt -*))
80 ((*- block outputs -*))
81 ((*- for output in cell.outputs -*))
82 ((*- if output.output_type in ['pyout'] -*))
83 ((*- block pyout scoped -*))((*- endblock pyout -*))
84 ((*- elif output.output_type in ['stream'] -*))
85 ((*- block stream scoped -*))
86 ((*- if output.stream in ['stdout'] -*))
87 ((*- block stream_stdout scoped -*))
88 ((*- endblock stream_stdout -*))
89 ((*- elif output.stream in ['stderr'] -*))
90 ((*- block stream_stderr scoped -*))
91 ((*- endblock stream_stderr -*))
92 ((*- endif -*))
93 ((*- endblock stream -*))
94 ((*- elif output.output_type in ['display_data'] -*))
95 ((*- block display_data scoped -*))
96 ((*- block data_priority scoped -*))
97 ((*- endblock data_priority -*))
98 ((*- endblock display_data -*))
99 ((*- elif output.output_type in ['pyerr'] -*))
100 ((*- block pyerr scoped -*))
101 ((*- for line in output.traceback -*))
102 ((*- block traceback_line scoped -*))((*- endblock traceback_line -*))
103 ((*- endfor -*))
104 ((*- endblock pyerr -*))
68 ((*- block headingcell-*))
69
70 ((*- if cell.level == 1 -*))
71 \part
72 ((*- elif cell.level == 2 -*))
73 \chapter
74 ((*- elif cell.level == 3 -*))
75 \section
76 ((*- elif cell.level == 4 -*))
77 \subsection
78 ((*- elif cell.level == 5 -*))
79 \subsubsection
80 ((*- elif cell.level == 6 -*))
81 \paragraph
82 ((*- endif -*)){((( cell.source )))}
83 ((*- endblock headingcell -*))
84
85 ((*- block codecell scoped -*))
86 ((*- block input_group -*))
87 ((*- block in_prompt -*))((*- endblock in_prompt -*))
88 ((*- block input -*))((*- endblock input -*))
89 ((*- endblock input_group -*))
90 ((*- if cell.outputs -*))
91 ((*- block output_group -*))
92 ((*- block output_prompt -*))((*- endblock output_prompt -*))
93 ((*- block outputs -*))
94 ((*- for output in cell.outputs -*))
95 ((*- if output.output_type in ['pyout'] -*))
96 ((*- block pyout scoped -*))((*- endblock pyout -*))
97 ((*- elif output.output_type in ['stream'] -*))
98 ((*- block stream scoped -*))
99 ((*- if output.stream in ['stdout'] -*))
100 ((*- block stream_stdout scoped -*))
101 ((*- endblock stream_stdout -*))
102 ((*- elif output.stream in ['stderr'] -*))
103 ((*- block stream_stderr scoped -*))
104 ((*- endblock stream_stderr -*))
105 105 ((*- endif -*))
106 ((*- endblock stream -*))
107 ((*- elif output.output_type in ['display_data'] -*))
108 ((*- block display_data scoped -*))
109 ((*- block data_priority scoped -*))
110 ((*- endblock data_priority -*))
111 ((*- endblock display_data -*))
112 ((*- elif output.output_type in ['pyerr'] -*))
113 ((*- block pyerr scoped -*))
114 ((*- for line in output.traceback -*))
115 ((*- block traceback_line scoped -*))((*- endblock traceback_line -*))
106 116 ((*- endfor -*))
107 ((*- endblock outputs -*))
108 ((*- endblock output_group -*))
109 ((*- endif -*))
110 ((*- endblock codecell -*))
111 ((*- elif cell.type in ['markdown'] -*))
112
113 ((*- block markdowncell scoped-*))
114 ((*- endblock markdowncell -*))
115 ((*- elif cell.type in ['heading'] -*))
116
117 ((*- block headingcell scoped-*))
118 ((*- endblock headingcell -*))
119 ((*- elif cell.type in ['raw'] -*))
120
121 ((*- block rawcell scoped-*))
122 ((*- endblock rawcell -*))
123 ((*- else -*))
124
125 ((*- block unknowncell scoped-*))
126 ((*- endblock unknowncell -*))
127 ((*- endif -*))
128 ((*- endblock any_cell -*))
117 ((*- endblock pyerr -*))
118 ((*- endif -*))
119 ((*- endfor -*))
120 ((*- endblock outputs -*))
121 ((*- endblock output_group -*))
122 ((*- endif -*))
123 ((*- endblock codecell -*))
124
125 ((*- block markdowncell scoped-*))
126 %TODO: Get this working!
127 ((*- endblock markdowncell -*))
128
129
130 ((*- block rawcell scoped-*))
131
132 ((*- endblock rawcell -*))
133
134 ((*- block unknowncell scoped-*))
135
136 ((*- endblock unknowncell -*))
General Comments 0
You need to be logged in to leave comments. Login now