HTML Auto <p>

Build Status

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!

", autop("Hello world!", false, false)); asserteq!("

Line 1
\nLine 2

", auto
p("Line 1\nLine 2", true, false)); asserteq!("

Line 1
\nLine 2

", auto
p("Line 1
\nLine 2", true, false)); asserteq!("

Paragraph 1

\n

Paragraph 2

", auto
p("Paragraph 1\n\nParagraph 2", false, false)); asserteq!("
Line 1
\nLine 2
", auto
p("
Line 1
\nLine 2
", true, false)); asserteq!("
Line 1<br>\nLine 2
", auto
p("
Line 1
\nLine 2
", true, true)); ```

Crates.io

https://crates.io/crates/html-auto-p

Documentation

https://docs.rs/html-auto-p

License

MIT