Currently when we are parsing markdown such as those defined on (https://www.markdownlang.com/advanced/frontmatter.html)
+++
title = "My Article Title"
date = 2024-01-15
author = "John Doe"
tags = ["markdown", "tutorial", "web"]
+++
# Article Content
or
;;;
{
"title": "My Article Title",
"date": "2024-01-15",
"author": "John Doe",
"tags": ["markdown", "tutorial", "web"]
}
;;;
# Article Content
The parser is identifying the front matter block as a paragraph but it should be identified as Toml and json respectively.
Currently when we are parsing markdown such as those defined on (https://www.markdownlang.com/advanced/frontmatter.html)
or
;;; { "title": "My Article Title", "date": "2024-01-15", "author": "John Doe", "tags": ["markdown", "tutorial", "web"] } ;;; # Article ContentThe parser is identifying the front matter block as a paragraph but it should be identified as Toml and json respectively.