0.1.0 • Published 6 years ago

markdown-split v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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: '...' }
  ]
}