diff --git a/_includes/all_keypoints.html b/_includes/all_keypoints.html
index bedfd73..898133a 100644
--- a/_includes/all_keypoints.html
+++ b/_includes/all_keypoints.html
@@ -11,9 +11,9 @@
Key Points
- {% for keypoint in episode.keypoints %}
- - {{ keypoint }}
- {% endfor %}
+ {% for keypoint in episode.keypoints %}
+ - {{ keypoint|markdownify }}
+ {% endfor %}
|
diff --git a/_includes/episode_keypoints.html b/_includes/episode_keypoints.html
index e14de40..85378a5 100644
--- a/_includes/episode_keypoints.html
+++ b/_includes/episode_keypoints.html
@@ -2,7 +2,7 @@
Key Points
{% for keypoint in page.keypoints %}
- - {{ keypoint }}
+ - {{ keypoint|markdownify }}
{% endfor %}
diff --git a/_includes/episode_overview.html b/_includes/episode_overview.html
index f4a5a7c..f22a1a6 100644
--- a/_includes/episode_overview.html
+++ b/_includes/episode_overview.html
@@ -14,7 +14,7 @@ Overview
Questions
{% for question in page.questions %}
- - {{ question }}
+ - {{ question|markdownify }}
{% endfor %}
@@ -27,7 +27,7 @@ Overview
Objectives
{% for objective in page.objectives %}
- - {{ objective }}
+ - {{ objective|markdownify }}
{% endfor %}
diff --git a/_includes/syllabus.html b/_includes/syllabus.html
index 5f4b7c8..bb7d1ef 100644
--- a/_includes/syllabus.html
+++ b/_includes/syllabus.html
@@ -41,7 +41,12 @@ Schedule
Break
{% else %}
{% if episode.questions %}
- {{ episode.questions | join: '
' }}
+ {% for question in episode.questions %}
+ {{question|markdownify|strip_html}}
+ {% unless forloop.last %}
+
+ {% endunless %}
+ {% endfor %}
{% endif %}
{% endif %}
diff --git a/assets/css/lesson.scss b/assets/css/lesson.scss
index 0f3e47e..7c6de99 100644
--- a/assets/css/lesson.scss
+++ b/assets/css/lesson.scss
@@ -131,7 +131,6 @@ ol {
padding-left: 1em;
}
-
span.fold-unfold {
margin-left: 1em;
opacity: 0.5;