<p>
This library provides a function like wpautop
in Wordpress. It uses a group of regex replaces used to identify text formatted with newlines and replace double line-breaks with HTML paragraph tags.
Someone who familiars with HTML would prefer directly writing plain HTML instead of using an editor like TinyMCE or Gutenberg. However, it takes time to manually add newlines and paragraphs in HTML. Wordpress provides a handy function called wpautop
which can replace double line-breaks with paragraph elements (<p>
) and convert remaining line-breaks to <br>
elements.
The auto_p
function in this library can be used like wpautop
.
```rust extern crate htmlautop;
use htmlautop::auto_p;
asserteq!(" Hello world! Line 1 Line 1 Paragraph 1 Paragraph 2
\nLine 2
\nLine 2
\nLine 2", true, false));
asserteq!("Line 1
", autop("
\nLine 2
Line 1", true, false)); asserteq!("
\nLine 2
Line 1<br>\nLine 2", autop("
Line 1", true, true)); ```
\nLine 2
<br>
elements.<pre>
elements. This is useful when the inner HTML needs to be formatted and be wrapped into other non-<pre>
elements.https://crates.io/crates/html-auto-p
https://docs.rs/html-auto-p