markdown-split
v0.1.0
Published
An extension to Markdown to split the content into sections / pages.
Downloads
1
Readme
markdown-sections
An extension to Markdown to split the content into sections / pages.
Markdown Sections
This:
§ Optional Section Name
# Some heading
Some content.
§
This section is anonymous.
is parsed to this:
{
sections: [
{ name: 'Optional Section Name', content: '...'},
{ content: '...' }
]
}