cmark-syntax

Crates.iocmark-syntax
lib.rscmark-syntax
version0.4.1
sourcesrc
created_at2021-12-13 23:34:29.298823
updated_at2024-07-12 19:47:04.167686
descriptionSyntax highlighting for pulldown-cmark
homepagehttps://github.com/grego/cmark-syntax
repositoryhttps://github.com/grego/cmark-syntax
max_upload_size
id497467
size65,783
(grego)

documentation

README

cmark syntax highlighting

Crates.io status Docs

This crate provides a preprocessor for pulldown_cmark events that implements syntax highlighting. It is based on the work of Maciej Hirsz for the Ramhorns templating engine.

Supported languages

  • Rust
  • JavaScript
  • sh shell
  • TOML

Files defining language syntax are located in src/languages directory. The syntax is defined using regexes, which the Logos procedural macro turns into a lexer at the compile time. PRs implementing new languages are very welcome!

Features

With latex2mathml feature enabled, blocks denoted by math containing LaTeX formulas are rendered into MathML in block mode and analogously for inline code delimited by $ at the start and the end in inline mode.

Use

This preprocessor can be used as a callback for the Ramhorns templating engine.

use ramhorns::encoding::Encoder;

pub fn encode<E: Encoder>(source: &str, encoder: &mut E) -> Result<(), E::Error> {
    let parser = pulldown_cmark::Parser::new(source);
    let processed = cmark_syntax::SyntaxPreprocessor::new(parser);
    encoder.write_html(processed)
}

The emitted HTML consists of span tags with the following class names: glyph, literal, identifier, special-identifier, strong-identifier, keyword, comment.

Commit count: 14

cargo fmt