1.0.1 • Published 1 year ago

parserly v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Parserly

This library is suppose to be parsing markdown to javascript object so that you can have claen API to do whatever you want with your markdown files. By default it will return predfined by library types but there is a possibility to write own factory that will return types defined by you instead. More on it in a future.

So far these are elements that will be supported/are supported by the library. In the future this list can grow

ElementMarkdown SyntaxState
Heading# H1, ## H2, ### H3
Bold**bold text**
Italic*italicized text*
Blockquote> blockquote
Ordered List1. First item 2. Second item 3. Third item
Unordered List- First item - Second item - Third item
Code`code`
Horizontal Rule---
Link Rule[title](https://www.example.com)
Image![alt text](image.jpg)