not really known
Go to file
2022-06-02 16:43:39 +01:00
src/MdAst Remove unused dependencies 2022-06-02 16:43:39 +01:00
test Update to v0.15 2022-06-02 16:38:00 +01:00
.gitignore Update gitignore 2021-12-15 09:54:59 +00:00
bower.json Update spago.dhall 2021-12-16 08:44:40 +00:00
LICENSE Update module name 2021-12-14 11:04:42 +00:00
package-lock.json Update to v0.15 2022-06-02 16:38:00 +01:00
package.json Update to v0.15 2022-06-02 16:38:00 +01:00
packages.dhall Update to v0.15 2022-06-02 16:38:00 +01:00
README.md Update module name 2021-12-14 11:04:42 +00:00
spago.dhall Remove unused dependencies 2022-06-02 16:43:39 +01:00
test.dhall Remove unused dependencies 2022-06-02 16:43:39 +01:00

purescript-mdast

Purescript wrapper for mdast-util-from-markdown. mdast-util-from-markdown allows you to parse markdown into a markdown abstract syntaxt tree.

Usage

Due to mdast being esm only, you will have to install the mdast-util-from-markdown-face node module from this repo.

# clone this repo
git clone https://github.com/sigma-andex/purescript-mdast-util-from-markdown.git

Add the repo to your packages.dhall

let upstream = ...
    with mdast-util-from-markdown = ../purescript-mdast-util-from-markdown/spago.dhall as Location // You might need to adapt this path

Install mdast-util-from-markdown with spago:

spago install mdast-util-from-markdown

Add the mdast-util-from-markdown-facade to your package.json

"mdast-util-from-markdown-facade": "file:../purescript-mdast-util-from-markdown/mdast-util-from-markdown-facade",