jdsteinbach / eleventy-plugin-toc

11ty plugin to generate a TOC from page content
61 stars 19 forks source link

Output is escaped #3

Closed Heydon closed 5 years ago

Heydon commented 5 years ago

Using...

{{ content | toc }}

... I get

<nav class="toc"><ol><li><a href="#here-be-a-heading">Here be a heading</a></li><li><a href="#aaaaaaaaand-another">Aaaaaaaaand another</a></li></ol></nav>

Any ideas? I tried {{content | safe | toc}} but that errored.

Thanks.

FrancisVega commented 5 years ago

Put

{{ content | toc | safe }}
Heydon commented 5 years ago

@FrancisVega Thanks