Switch to Liquid comments
authorMaxim Belkin <maxim.belkin@gmail.com>
Wed, 6 Nov 2019 22:40:35 +0000 (16:40 -0600)
committerFrançois Michonneau <francois.michonneau@gmail.com>
Thu, 7 Nov 2019 14:58:08 +0000 (15:58 +0100)
HTML comments end up in the generated HTML pages: they're not displayed by the browsers but they're still present there. Liquid comments do not end up in the generated HTML pages

_includes/manual_episode_order.html

index 2928ee852ee86dd9266f3f5dcc4acb99c835c25a..573ebdee74d3227df72c2edb8d4ccbabe700e710 100644 (file)
@@ -50,7 +50,9 @@
         {% endif %}
 {% endcomment %}
 
-<!-- Manual ordering of Episodes begins here -->
+{% comment %}
+Manual ordering of Episodes begins here
+{% endcomment %}
 
 {% if site.episode_order %}
     {% assign lesson_episodes = site.episode_order %}
   {% assign next_episode  = page.next %}
 {% endif %}
 
-<!-- Manual ordering of Extras begins here -->
+
+{% comment %}
+Manual ordering of Extras begins here
+{% endcomment %}
 
 {% if site.extras_order %}
     {% assign lesson_extras = site.extras_order %}