saey55 / hugo-elate-theme

A one page parallax theme with animation for Hugo
MIT License
192 stars 102 forks source link

a tags not allowed in work.description #3

Closed mattwwarren closed 7 years ago

mattwwarren commented 7 years ago

I have a link that I want in my description text for the work section like so

description = 'We use the <a href="https://hubot.github.com">Hubot Framework</a> for this project.'

From my initial investigation, the text is templated in layouts/partials/work.html on line 8

{{ with .Site.Params.work.description }}{{ . }}{{ end }}

It looks like if I add | markdownify to {{ . }} it works. I don't know if that's the right move but I can make a PR to that effect.