[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
The regular expression for an HTML element.
File Size: | 442 lines (16 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
htmlSplit(input) X-Ref |
Separate HTML elements and comments from the text. return: {string[]} The formatted text. param: {string} input The text which has to be formatted. |
replaceInHtmlTags(haystack, replacePairs) X-Ref |
Replace characters or phrases within HTML elements only. return: {string} The formatted text. param: {string} haystack The text which has to be formatted. param: {Record<string,string>} replacePairs In the form {from: 'to', …}. |
autop(text) X-Ref |
Replaces double line-breaks with paragraph elements. A group of regex replaces used to identify text formatted with newlines and replace double line-breaks with HTML paragraph tags. The remaining line- breaks after conversion become `<br />` tags, unless br is set to 'false'. return: {string} Text which has been converted into paragraph tags. param: {string} text The text which has to be formatted. param: {boolean} br Optional. If set, will convert all remaining line- |
removep(html) X-Ref |
Replaces `<p>` tags with two line breaks. "Opposite" of autop(). Replaces `<p>` tags with two line breaks except where the `<p>` has attributes. Unifies whitespace. Indents `<li>`, `<dt>` and `<dd>` for better readability. return: {string} The content with stripped paragraph tags. param: {string} html The content from the editor. |
Generated: Thu Nov 21 01:00:03 2024 | Cross-referenced by PHPXref 0.7.1 |