18 releases (breaking)

new 0.15.0 Jan 11, 2025
0.13.0 Dec 31, 2024
0.10.0 Nov 15, 2024
0.5.1 May 31, 2024
0.1.0 Mar 28, 2024

#145 in Programming languages

Download history 11/week @ 2024-09-18 14/week @ 2024-09-25 4/week @ 2024-10-02 151/week @ 2024-10-09 49/week @ 2024-10-16 145/week @ 2024-10-23 23/week @ 2024-10-30 16/week @ 2024-11-06 131/week @ 2024-11-13 36/week @ 2024-11-20 18/week @ 2024-11-27 19/week @ 2024-12-04 22/week @ 2024-12-11 217/week @ 2024-12-18 270/week @ 2024-12-25 192/week @ 2025-01-01

707 downloads per month
Used in 5 crates

MIT license

81KB
2.5K SLoC

🤓 Asciidork

An Asciidoc parser/backend written in Rust

Installation

# requires rust/cargo toolchain
cargo install asciidork-cli
or install from source
git clone https://github.com/jaredh159/asciidork
cd asciidork
cargo build --release --bins

# vvvv -- OPTIONAL: or use rel path to `./target/release/asciidork` instead
sudo cp ./target/release/asciidork /usr/local/bin

Usage

# read the friendly manual
asciidork --help

# parse/convert/print from a file
asciidork --input test.adoc

# without a --input arg, it reads from stdin
echo "foo _bar_ *baz*" | asciidork
asciidork < test.adoc

# don't include enclosing document structure by passing `--embedded`
asciidork --input test.adoc --embedded

# send output to a file (alternatively just redirect stdout)
asciidork --input test.adoc --embedded --output test.html

# print information about perf (did i mention it's written in Rust btw?)
asciidork --input test.adoc --print-timings

# print pretty html (requires `pretter` -- install w/ `npm i -g prettier`)
asciidork --input test.adoc --embedded --format dr-html-prettier

WASM

The Asciidork parser and dr-html backend compiles to WASM to run in the browser! (Did I mention it's written in Rust?) NPM package coming soon, but for now you can see it in action here:

https://asciidork-playground.vercel.app

Be sure to pop the dev tools to see timing info.

Caveats

[!WARNING] Asciidork is not complete. It implements a sizeable majority of the documented behavior of Asciidoc, but there are some unfinished areas, missing error handling, and edge cases yet unfinished.

Known unfinished or unimplemented areas include:

  • STEM
  • Source highlighting
  • Inline SVGs
  • Embedded data-uri images
  • Docinfo files

PRs welcome! 👍

Dependencies

~215–310KB