From dcc430b01b520ce81c0fb5445cee6e2bdb3ef7da Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Sat, 28 Dec 2024 19:05:15 +0000 Subject: [PATCH] Markdownify multiple-choice questions and answers and feedback (#1262) --- common-theme/layouts/partials/multiple-choice.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common-theme/layouts/partials/multiple-choice.html b/common-theme/layouts/partials/multiple-choice.html index ec88f6dcd..3e7b4631c 100644 --- a/common-theme/layouts/partials/multiple-choice.html +++ b/common-theme/layouts/partials/multiple-choice.html @@ -29,7 +29,7 @@
- 🤔 {{ $question }} + 🤔 {{ $question | markdownify }}
    {{range $index, $answer := $answers }}
  1. @@ -42,7 +42,7 @@ id="answer-{{ $index }}" name="answer" value="{{ $index }}" /> - {{ $answer }}
  2. {{ end }} @@ -51,7 +51,7 @@