pikchr

Crates.iopikchr
lib.rspikchr
version0.1.3
sourcesrc
created_at2020-10-24 19:13:51.106669
updated_at2023-09-20 08:04:38.728158
descriptionPIC-like diagramming language to SVG converter
homepage
repositoryhttps://github.com/kinnison/pikchr
max_upload_size
id305076
size310,889
Daniel Silverstone (kinnison)

documentation

README

Pikchr - Diagram renderer

Taken from the pikchr homepage:

Pikchr (pronounced like "picture") is a PIC-like markup language for diagrams in technical documentation. Pikchr is designed to be embedded in fenced code blocks of Markdown (or in similar mechanisms in other markup languages) to provide a convenient means of showing diagrams.

This crate wrappers the pikchr.c version downloaded from that website on the 23rd August 2023.

You can use it as follows:

use pikchr::{Pikchr, PikchrFlags};

let piccy = Pikchr::render(
    diagram_str,
    None,
    PikchrFlags::default()).unwrap();

println!("{}", piccy);

There is a little helper program that reads a Pikchr file named on the command line and renders it as SVG to the standard output:

cargo run -p pikchr-cli -q foo.pikchr > foo.svg

You can install it with cargo install pikchr-cli (cargo install --path=pikchr-cli from the source tree).

Commit count: 25

cargo fmt