#html #highlight #syntax-highlighting #graphics

highlight-ez

Easy Syntax Highlighting with HTML output

7 releases

new 0.2.6 May 1, 2024
0.2.5 May 1, 2024
0.2.3 Apr 25, 2024

#150 in Graphics APIs

Download history 342/week @ 2024-04-08 65/week @ 2024-04-15 152/week @ 2024-04-22

559 downloads per month

MIT-0 license

20KB
425 lines

Create HTML renderings of code with highlighting using tree-sitter

The general workflow of this is to simplify the workflow of creating pretty html code blocks using tree-sitter.

let my_pyblock = r#"def fib(a):
    if a = 1:
        return 1
    else:
        return fib(a - 1)"#;
let lang = TargetLanguage::Python;
let html = render_html(my_pyblock, lang);

lib.rs:

Create HTML renderings of code with highlighting using tree-sitter

The general workflow of this is to simplify the workflow of creating pretty html code blocks using tree-sitter.

let my_pyblock = r#"def fib(a):
    if a = 1:
        return 1
    else:
        return fib(a - 1)"#;
let lang = TargetLanguage::Python;
let html = render_html(my_pyblock, lang);

Dependencies

~25–40MB
~666K SLoC