1
6
Fork
You've already forked mork
0
Markdown parser for Gleam. Note: This repository is a mirror of https://git.liten.app/krig/mork
  • Gleam 98.7%
  • Python 0.9%
  • Shell 0.3%
  • JavaScript 0.1%
2026年05月24日 09:04:59 +02:00
data
examples/cli
gen
src
test
to_lustre
.gitignore
bench.sh
CHANGELOG.md
DEVELOPMENT.md
gleam.toml
LICENSE
manifest.toml
mise.toml
README.md
TODO.md

mork

Package Version Hex Docs

Brainmade

MÖRK is a Markdown parser written in pure Gleam. It is 100% spec compliant with Commonmark, supports most Github extensions, some Obsidian extensions and footnotes.

It has mainly been developed for the Erlang compilation target, but is tested against and should work for both Node.js, Deno and Bun as Javascript runtimes. Though to be fair, for someone targetting Javascript the commonmark.js library is probably faster (though it doesn't support the features of Mörk).

Status

  • All Commonmark spec tests are passing.
  • Footnotes are supported.
  • Most GFM (Github) features are supported.
  • Some Obsidian features are supported.
  • See TODO.md for details on extended syntax support.

Example

gleam add mork@1
importsimplifileimportmorkpubfnmain()->Nil{letreadme="./README.md"letassertOk(markdown)=simplifile.read(from:readme)lethtml=markdown|>mork.parse|>mork.to_htmlletassertOk(_)=html|>simplifile.write(to:"README.html")}

Further documentation can be found at https://hexdocs.pm/mork.

Lustre support

There is an experimental Lustre support package called mork_to_lustre:

gleam add mork_to_lustre
importmorkimportmork/to_lustrepubfnmain()->Nil{letmarkdown="# Hello, Joe!\n"lete=markdown|>mork.parse|>to_lustre.to_lustrelete=e|>element.fragment|>element.to_stringasserte=="<h1>Hello, Joe!</h1>"}

Development

gleam build # Build the project
gleam test # Run the tests
gleam test tabs # Run only the Tabs section of tests
gleam test tabs 9 # Run only example number 9 from the test section
gleam test custom # Run only extra tests (not from the spec)

Requirements (Erlang)

  • Gleam 1.13+
  • Erlang 28+ (due to PCRE2 usage)

Requirements (Javascript)

  • Gleam 1.13+

Data sources