Skip to content

Commit

Permalink
feat: ✨ mark descriptions as safe
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfskaempf committed Apr 3, 2024
1 parent 641b836 commit 3be8e56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions percvre/vitae/templates/vitae/cv.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2>Experience</h2>
<h3 class="mb-0">{{ exp.title }}</h3>
<p class="mb-0">{{ exp.organisation }}</p>
<p class="mt-0">{{ exp.start_description }} — {{ exp.end_description }}</p>
<p>{{ exp.description }}</p>
<p>{{ exp.description|safe }}</p>
</div>
</div>
{% endfor %}
Expand All @@ -49,7 +49,7 @@ <h2>Education</h2>
<h3 class="mb-0">{{ edu.title }}</h3>
<p>{{ edu.start_description }} — {{ edu.end_description }} @ {{ edu.institute }}</p>

<p>{{ edu.description }}</p>
<p>{{ edu.description|safe }}</p>
</div>
{% endfor %}

Expand Down

0 comments on commit 3be8e56

Please sign in to comment.