-
-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
When the to_html
function converts the contents of a Thematic break
or Front matter
block in Markdown, unexpected HTML tags appear( <h2>
or <p>
).
Input yaml metadata block:
---
title: Markdown Front Matter
author: Bob
---
Output:
<h2>title: Markdown Front Matter
author: Bob</h2>
Input toml metadata block:
+++
title = "Markdown Front Matter"
author = "Bob"
+++
Output:
<p>+++
title = "Markdown Front Matter"
author = "Bob"
+++</p>
Input toml metadata block with yaml style:
---toml
title = "Markdown Front Matter"
author = "Bob"
---
Output:
<h2>---toml
title = "Markdown Front Matter"
author = "Bob"</h2>
Metadata
Metadata
Assignees
Labels
No labels