jbeder / yaml-cpp

A YAML parser and emitter in C++
MIT License
5.18k stars 1.87k forks source link

doc, fix: invalid liquid '{{...}}' tags #1298

Closed SGSSGene closed 3 months ago

SGSSGene commented 4 months ago

This fixes the failing of pages build and deployment when deploying the documentation.

jekyll/liquid got hung up on {{"Daniel", 26}, {"Jesse", 24}}.

The reason is that {{...}} are used as variables that are replaced by there values. In this case we have a YAML object that looks the same. This issue can be fixed by surrounding the block into {% raw %}...{% endraw %} tags.