##// END OF EJS Templates
fix typo
Matthias BUSSONNIER -
Show More
@@ -204,7 +204,7 b' class RevealHelpTransformer(ConfigurableTransformers):'
204 204
205 205 def cell_transform(self, cell, other,count):
206 206 ctype = cell.metadata.get('slideshow',{}).get('slide_type',None)
207 if ctype is None :
207 if ctype in [None, '-'] :
208 208 cell.metadata.slideshow = {}
209 209 cell.metadata.slideshow['slide_type'] = None
210 210 elif ctype == 'fragment':
@@ -26,7 +26,7 b''
26 26 <aside class="notes">
27 27 {{ super() }}
28 28 </aside>
29 {% elif cell.metadata.slideshow.slide_tyle not in ['skip'] %}
29 {% elif cell.metadata.slideshow.slide_type not in ['skip'] %}
30 30 {{ super() }}
31 31 {% endif %}
32 32
General Comments 0
You need to be logged in to leave comments. Login now