carpentries / varnish

Template for pkgdown site
https://carpentries.github.io/varnish/
Other
7 stars 25 forks source link

do not use escape brackets for `forward_title` and `back_title` #98

Closed zkamvar closed 10 months ago

zkamvar commented 10 months ago

I was going through old issues and I realize this is a bug from {varnish}, not {sandpaper}. Specifically, this is caused by the Mustache templating escaping values.

So any place that contains {{forward_title}} or {{back_title}} needs to be changed to either include an ampersand or triple curlies (see https://mustache.github.io/mustache.5.html):

https://github.com/carpentries/varnish/blob/b013dd85b88e654d78e4c6278cea19d699a2f94b/inst/pkgdown/templates/content-chapter.html#L22-L25

Originally posted by @zkamvar in https://github.com/carpentries/workbench/issues/71#issuecomment-1798956098