dmc-codegen 0.2.0

HTML and MDX body emitters for the dmc compiler
Documentation

Install

cargo add dmc-codegen

Quick start

use dmc_codegen::{HtmlEmitter, Walker};

let mut emitter = HtmlEmitter::new();
Walker::new().walk(document, &mut emitter);
let html = emitter.into_string();

Docs

Contributing

See ../CONTRIBUTING.md.

License

MIT. See ../LICENSE.