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