literate

Crates.ioliterate
lib.rsliterate
version0.5.1
sourcesrc
created_at2022-01-13 21:32:02.73587
updated_at2022-01-17 03:54:54.227667
descriptionA literate programming tool that extracts code written in your Markdown files.
homepagehttps://github.com/misalcedo/literate-rs
repositoryhttps://github.com/misalcedo/literate-rs
max_upload_size
id513550
size55,423
Miguel D. Salcedo (misalcedo)

documentation

https://docs.rs/literate

README

literate-rs

A literate programming tool that allows writing code in your Markdown files.

Badges

Build License Crates.io Version Docs.rs Version

How it works

At its core literate reads a file from standard in and outputs code blocks to standard out as a single stream. The code blocks may be filtered by various qualities such as language, attributes, etc.

The real magic

Although literate itself is very simple, the magic really happens when you apply the tool to entire directories. For example, a Rust project could add literate to their build.rs in order to write their examples as Markdown files that become Rust files at build time. Since Rust has a very mature documentation culture, the actual source may not benefit as much from literate. However, one can easily envision a tool that flips Rust's documentation on its head. Instead of doc comments, Rust source could be defined as Markdown files. During build, the file could be parsed to add the surrounding text as a doc comment to the code block code. User's could plug in different strategies for traversing up the tree to find the relevant documentation.

Testing

cat .\examples\tortuga.ta.md | literate --language tortuga --required
Commit count: 41

cargo fmt