Flutter-Bounty-Hunters / static_shock

A static site generator for Dart.
MIT License
59 stars 5 forks source link

[Shock] - Use HTML comments for Jinja front matter instead of dashes #57

Closed matthew-carroll closed 11 months ago

matthew-carroll commented 11 months ago

Using dashes "---" for front matter in Jinja files confuses syntax highlighters because it's not valid HTML.

Use HTML comments, instead:

<--
title: some title
tag:
  - tag 1
  - tag 2
-->
<html>
  <!-- -->
</html>