#documentation #macro #macro-railroad #decl-macros #docsrs

macro macro_railroad_annotation

Easily embed macro_railroad images in your docs using this attribute macro!

3 stable releases

1.0.3 Feb 4, 2024
1.0.2 Feb 1, 2024

#374 in Procedural macros

Download history 117/week @ 2024-01-29 59/week @ 2024-02-05 42/week @ 2024-02-12 60/week @ 2024-02-19 250/week @ 2024-02-26 50/week @ 2024-03-04 49/week @ 2024-03-11 63/week @ 2024-03-18 3/week @ 2024-03-25 16/week @ 2024-04-01 47/week @ 2024-04-08 154/week @ 2024-04-15 34/week @ 2024-04-22

253 downloads per month

MIT license

8KB
83 lines

macro_railroad Annotations

Annotation macro to generate railroads for macro_rules! and embed them in the documentation

Usage

/// This is some documentation for the macro below
#[macro_railroad_annotation::generate_railroad]
/// # Examples
/// ````ignore
/// foo!(5 + 5);
/// ````
macro_rules! foo {
  ($tok:expr) => {};
}

Be aware that this only positions the graphic correctly on nightly compilers (which includes docs.rs). If on stable the graphic will just be positioned at the top of the doc comments. The alt text will be set to the following banner:

=========================================================
_Here would be a railroad diagram of the macro [`macro_name`]_
=========================================================

Alternatively, you can position the image manually and specify your own alt text, which works on all versions:

/// This is some documentation for the macro below
/// ![alt text][ref_string]
/// # Examples
/// ````ignore
/// foo!(5 + 5);
/// ````
#[macro_railroad_annotation::generate_railroad("ref_string")]
macro_rules! foo {
  ($tok:expr) => {};
}

Credits

This macro uses the excellent macro_railroad crate to generate the diagrams, and is only a slim wrapper around it.

Dependencies

~1.2–1.7MB
~34K SLoC