File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
common-theme/layouts/partials Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
< multiple-choice data-correct ="{{$correct}} " class ="c-quiz ">
30
30
< form slot ="quiz ">
31
31
< fieldset class ="c-quiz__fieldset " tabindex ="0 ">
32
- < legend class ="c-quiz__legend "> 🤔 {{ $question }}</ legend >
32
+ < legend class ="c-quiz__legend "> 🤔 {{ $question | markdownify }}</ legend >
33
33
< ol class ="c-quiz__list ">
34
34
{{range $index, $answer := $answers }}
35
35
< li class ="c-quiz__answer ">
42
42
id ="answer-{{ $index }} "
43
43
name ="answer "
44
44
value ="{{ $index }} " />
45
- {{ $answer }}</ label
45
+ {{ $answer | markdownify }}</ label
46
46
>
47
47
</ li >
48
48
{{ end }}
51
51
</ form >
52
52
< section class ="c-quiz__feedback " slot ="feedback " aria-live ="polite ">
53
53
{{ range $index, $fb := $feedback }}
54
- < p class ="c-quiz__remark " data-index ="{{$index}} " > 💬 {{ $fb }}</ p >
54
+ < p class ="c-quiz__remark " data-index ="{{$index}} " > 💬 {{ $fb | markdownify }}</ p >
55
55
{{ end }}
56
56
</ section >
57
57
</ multiple-choice >
You can’t perform that action at this time.
0 commit comments