Commit 77357c9e21da2eb76c7f685bcb434a9199198713

Authored by Miguel Barão
1 parent f6cf71ee
Exists in master and in 1 other branch dev

- removed 2nd argumento from md() calls

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
templates/review-question.html
@@ -15,7 +15,7 @@ @@ -15,7 +15,7 @@
15 15
16 <div class="card-body"> 16 <div class="card-body">
17 <div id="text"> 17 <div id="text">
18 - {{ md(q['text'], q) }} 18 + {{ md(q['text']) }}
19 </div> 19 </div>
20 20
21 {% block answer %}{% end %} 21 {% block answer %}{% end %}
@@ -66,7 +66,7 @@ @@ -66,7 +66,7 @@
66 66
67 <div class="card-body text-secondary"> 67 <div class="card-body text-secondary">
68 <p id="text"> 68 <p id="text">
69 - {{ md(q['text'], q) }} 69 + {{ md(q['text']) }}
70 </p> 70 </p>
71 71
72 {% block answer %}{% end %} 72 {% block answer %}{% end %}