Add binary download links to docs
Some checks failed
/ verify (push) Has been cancelled

This commit is contained in:
Juno Takano 2026-03-09 13:17:26 -03:00
commit 00fb91b96f
3 changed files with 20 additions and 2 deletions

View file

@ -46,7 +46,10 @@ impl TokenOutput {
pub fn parse(text: &str, graph: &Graph) -> String { parser::read(text, graph) }
pub fn rich_parse(text: &str, graph: &Graph) -> TokenOutput {
parser::rich_read(text, graph)
parser::rich_read(
&text.replace("{{ en_version }}", env!("CARGO_PKG_VERSION")),
graph,
)
}
#[cfg(test)]