Intro

In In Jail In My Own Society, author writes.

'; $this->assertSame( '

Intro

In In Jail In My Own Society, author writes.

', WooHtml::sanitize($html), ); } public function test_plain_to_html_wraps_legacy_paragraphs(): void { $plain = "First paragraph\r\nSecond paragraph\r\nThird paragraph"; $this->assertSame( '

First paragraph

Second paragraph

Third paragraph

', WooHtml::plainToHtml($plain), ); } public function test_normalize_for_editor_upgrades_plain_text(): void { $this->assertSame( '

Line one

Line two

', WooHtml::normalizeForEditor("Line one\nLine two"), ); } }