monkeyWzr / hugo-theme-cactus

Cactus theme for hugo
MIT License
541 stars 341 forks source link

description: render as markdown #55

Closed lollipopman closed 3 years ago

lollipopman commented 3 years ago

Prior to this change the description parameter was templated as a string. This made it difficult to insert links or make text bold, as the Go template engine escapes any html markup.

After this change the string is rendered with .RenderString which uses the default page markup, markdown, to render the string.

monkeyWzr commented 3 years ago

@lollipopman Thank you! And really sorry for the delay.