preserve hardcoded markdown content in TOC files

This commit is contained in:
Sarah Schneider 2021-04-20 11:25:22 -04:00
Родитель 5d03537551
Коммит 27f0448219
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -45,6 +45,8 @@
{% include featured-links %} {% include featured-links %}
{% endif %} {% endif %}
{{ renderedPage }}
{% include generic-toc-items %} {% include generic-toc-items %}
</div> </div>
</div> </div>

Просмотреть файл

@ -73,7 +73,7 @@ indexFiles
} }
// Index files should no longer have body content, so we write an empty string // Index files should no longer have body content, so we write an empty string
fs.writeFileSync(indexFile, frontmatter.stringify('', data, { lineWidth: 10000 })) fs.writeFileSync(indexFile, frontmatter.stringify(content, data, { lineWidth: 10000 }))
}) })
function getLinks (linkItemArray) { function getLinks (linkItemArray) {