mdt_cli 0.9.0

Write docs once, sync everywhere — markdown templates that eliminate doc drift
Documentation
1
2
3
4
5
6
7
8
9
10
//! <!-- {=crate_docs|trim|linePrefix:"//! ":true} -->
//! Old crate docs here.
//! <!-- {/crate_docs} -->

/// <!-- {=fn_greet|trim|linePrefix:"/// ":true} -->
/// Old function docs.
/// <!-- {/fn_greet} -->
pub fn greet(name: &str) {
	println!("Hello, {name}!");
}