diff options
author | Titus Wormer <tituswormer@gmail.com> | 2023-02-10 12:43:38 +0100 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2023-02-10 12:43:38 +0100 |
commit | 905b62583be73a8969014dbb98b6fd1c92c23df6 (patch) | |
tree | 78827305dcb1110ca48c2951c8eae82dc182f268 /examples/lib.rs | |
parent | 72a8cf99fbd20ab29f4f3c1845c67898cdaff7de (diff) | |
download | markdown-rs-905b62583be73a8969014dbb98b6fd1c92c23df6.tar.gz markdown-rs-905b62583be73a8969014dbb98b6fd1c92c23df6.tar.bz2 markdown-rs-905b62583be73a8969014dbb98b6fd1c92c23df6.zip |
Add `log` feature, document features
Diffstat (limited to 'examples/lib.rs')
-rw-r--r-- | examples/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lib.rs b/examples/lib.rs index 3c76022..14cfa64 100644 --- a/examples/lib.rs +++ b/examples/lib.rs @@ -1,6 +1,6 @@ fn main() -> Result<(), String> { // Turn on debugging. - // You can show it with `RUST_LOG=debug cargo run --example lib` + // You can show it with `RUST_LOG=debug cargo run --features log --example lib` env_logger::init(); // Safely turn (untrusted?) markdown into HTML. |