Markdown
Markdown format (text/markdown).
Just like the text format, the "md" format imports/exports plain text to/from an "md" field.
# Title
This is an example.
import "./test.md"; // has both "md" and "markdown" as identifiers
#[main]
fn main() {
assert_eq(self.md, r#"
# Title
This is an example.
"#);
}Last updated
Was this helpful?