In Pelican, is it possible to add a comment in the metadata section of a markdown file? Suppose I have a post that looks like this:
Title: Hello World!
Tags: greetings
Date: 2020-01-01
Lorem ipsum sit dolor amet...
Is it possible to add comments to the metadata? For example:
Title: Hello World!
Tags: greetings
Date: 2020-01-01 # This is the first comment.
# This is another comment.
Lorem ipsum sit dolor amet...
The example above does not work because Pelican treats # This is another comment.
as a Markdown heading.
How can I comment within the metadata section of Pelican markdown files?