1 unstable release
Uses old Rust 2015
0.0.1 | Dec 18, 2014 |
---|
#73 in #turn
2KB
52 lines
highlightrs
"A command line utility to turn arbitrary rust code into syntax highlighted html"
Currently based on rustdoc::html::highlight::highlight
but transitioning to using syntax::parse::parser::Parser
to get an AST to then highlight.
As of now,
$> highlightrs 'let a = "b";'
produces
<pre class='rust '>
<span class='kw'>let</span> <span class='ident'>a</span> <span class='op'>=</span> <span class='string'>"b"</span>;
</pre>
Usage
Options:
-i --inputfile FILE use a file for the input
-o --outfile FILE use a file for the output
-h --help print this help menu