Skip to content

Commit

Permalink
Merge branch 'main' into feature/audits
Browse files Browse the repository at this point in the history
  • Loading branch information
SallyMcGrath authored Dec 30, 2024
2 parents 6095a28 + dcc430b commit 9fe4fac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common-theme/layouts/partials/multiple-choice.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<multiple-choice data-correct="{{$correct}}" class="c-quiz">
<form slot="quiz">
<fieldset class="c-quiz__fieldset" tabindex="0">
<legend class="c-quiz__legend">🤔 {{ $question }}</legend>
<legend class="c-quiz__legend">🤔 {{ $question | markdownify }}</legend>
<ol class="c-quiz__list">
{{range $index, $answer := $answers }}
<li class="c-quiz__answer">
Expand All @@ -42,7 +42,7 @@
id="answer-{{ $index }}"
name="answer"
value="{{ $index }}" />
{{ $answer }}</label
{{ $answer | markdownify }}</label
>
</li>
{{ end }}
Expand All @@ -51,7 +51,7 @@
</form>
<section class="c-quiz__feedback" slot="feedback" aria-live="polite">
{{ range $index, $fb := $feedback }}
<p class="c-quiz__remark" data-index="{{$index}}" >💬 {{ $fb }}</p>
<p class="c-quiz__remark" data-index="{{$index}}" >💬 {{ $fb | markdownify }}</p>
{{ end }}
</section>
</multiple-choice>
Expand Down

0 comments on commit 9fe4fac

Please sign in to comment.