reviewList = reviewList.map((c, i) => {
return {
- 'question': c['question'],
+ 'question': c['question_html'],
'type': c['type'],
'correctAnswers': c['answers'].filter((c__,k) => { //on filtre les réponses
let status_ = c['answers']
font-weight: 600
line-height: 48px
+
+
#welcome
max-width: 590px
margin: 0 auto
+font-size(16)
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%)
- strong
- font-weight: bold
- em
- font-style: italic
a
text-decoration: underline
@if($question['type'] === "draganddrop")
<h1 class="{{$h1class}}" id="titleQuestion">
<span
- class="only-desktop">{!! $markdownToHTML($question['question']) !!}</span>
- <span class="only-mobile">{{$__('Swipe up or down each card in the right container')}}{{__(': ')}}<br>{!! $markdownToHTML($question['question']) !!}</span>
+ class="only-desktop">{!! $question['question_html'] !!}</span>
+ <span class="only-mobile">{{$__('Swipe up or down each card in the right container')}}{{__(': ')}}<br>{!! $question['question_html'] !!}</span>
</h1>
<h2 class="subtitle only-desktop">{{$__('Use arrow keys to move the cards to the corresponding zone')}}</h2>
@elseif($question['type']==='match')
<h1 id="titleQuestion">
- {!! $markdownToHTML($question['question']) !!}
+ {!! $question['question_html'] !!}
</h1>
<h2 class="subtitle"
class="only-desktop">{{$__('When you feel the answer is appropriate, confirm the match to move on to the next question')}}</h2>
@else
- <h1 class="{{$h1class}}" id="titleQuestion">{!! $markdownToHTML($question['question']) !!}</h1>
+ <h1 class="{{$h1class}}" id="titleQuestion">{!! $question['question_html'] !!}</h1>
@endif
</header>