pub fn format_for(raw: &str, filename_or_ext: &str) -> FormatResult
Expand description

Format a file content with filetype.

Example:

let raw = r#"
<article>
  <h1>这是 Heading 标题</h1>
  <div class="content">
    <p>你好 Rust 世界<strong>Bold 文本</strong></p>
    <p>这是第二行 p 标签</p>
  </div>
</article>
"#;
autocorrect::format_for(raw, "html");
autocorrect::format_for(raw, "index.html");