fmtm 0.0.4

A diff-friendly Markdown formatter that breaks lines on sensible punctuations and words to fit a line width.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use insta::assert_snapshot;
use tracing::Level;
use tracing_subscriber::EnvFilter;

use super::*;

mod format;

fn init_tracing() {
    _ = tracing_subscriber::fmt()
        .with_env_filter(
            EnvFilter::builder()
                .with_default_directive(Level::INFO.into())
                .from_env_lossy(),
        )
        .try_init();
}