Markdown Post Format - getscissorhands/Scissorhands.NET GitHub Wiki

In order to publish your posts written in markdown to HTML ones, the following format MUST be strictly complied; otherwise, your posts won't be parsed properly.

Structure

Each markdown post contains three parts – Header, Section Divider and Body. Header contains metadata of the post and Body is the actual content. With Section Divider, the Header is distinguished from the Body.

Header

The Header section contains information in JSON format.

{
  "title": "Title of the post",
  "author": "Author of the post",
  "datePublished": "Date when the post is published",
  "dateUpdated": "Date when the post is updated",
  "tags": [ "list", "of", "tags" ]
}

NOTE: Both datePublished and dateUpdated will be automatically updated by Scissorhands.NET.

Section Divider

Horizontal ruler is used as a section divider. In markdown, the horizontal ruler can be represented by one of the following:

--- (hyphens)
*** (asterisks)
___ (underscores)

Body

The Body section is the actual content of the post written in markdown.