Closed mattwwarren closed 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.
| markdownify
{{ . }}
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.