pub fn format_html(html_str: &str) -> String
Expand description

Format a html content.

Example:

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