Skip to content

Commit 4258500

Browse files
authored
Merge pull request #9 from smirnoffmg/develop
feat: render bullets as markdown for clickable
2 parents 53289bd + b9cf2d9 commit 4258500

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_layouts/cv.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ <h2 class="cv-section-title">{{ section.title | upcase }}</h2>
110110
{% if e.bullets %}
111111
<ul class="cv-entry-bullets">
112112
{% for b in e.bullets %}
113-
<li>{{ b }}</li>
113+
<li>{{ b | markdownify | remove: '<p>' | remove: '</p>' | strip }}</li>
114114
{% endfor %}
115115
</ul>
116116
{% endif %}

0 commit comments

Comments
 (0)