Scarlatum / Onaparse

Node minimalistic markdown parser with clean output

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Onaparse

Minimalistic markdown parser with clean output

Input:

  ### Something

  Und folgt wieder und lispelnd...

  ![Description](./image.avif)

Output:

  [
    {
      "type": "h3",
      "value": "Something"
    },
    {
      "type": "p",
      "value": "Und folgt wieder und lispelnd..."
    },
    {
      "type": "img",
      "value": {
        "url": "./image.avif",
        "alt": "Description"
      }
    }
  ]

About

Node minimalistic markdown parser with clean output

License:MIT License


Languages

Language:TypeScript 100.0%