diff --git a/_includes/articleAuthor.njk b/_includes/articleAuthor.njk index 0f0337e..3005bd7 100644 --- a/_includes/articleAuthor.njk +++ b/_includes/articleAuthor.njk @@ -20,7 +20,7 @@ {% endif %} {% if author.bio %} -
{{ author.bio }} + {{ author.bio | markdownify | safe }} {% endif %}

{% else %} @@ -44,7 +44,7 @@ {% endif %} {% if metadata.author.bio %} -
{{ metadata.author.bio }} + {{ metadata.author.bio | markdownify | safe }} {% endif %} {% endif %}

diff --git a/public/css/index.css b/public/css/index.css index 1b145f5..3a37655 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -729,6 +729,11 @@ article > .post-image, font-size: var(--step--2); font-variation-settings: "wght" 400; line-height: calc(var(--step--2) * 1.5); + & .authorBio a { + text-decoration: underline; + text-decoration-color: var(--contrast-color); + transition: var(--transition-normal); + } } }