HTML Cleaners
Extract Text from HTML Source
Cleans up HTML raw text. It strips out anything between ‘<’ and ‘>’. Extract the text contents from HTML source with this cleaner. It also handles Ampersand escape codes ( or Œ) and removes tab characters and multiple carriage returns.
HTML Entity to Text
Convert known HTML entities to their text equivalent. Supports all the standard HTML entities and most of the Unicode-based entities.
Text to Named HTML Entity
Convert non-ASCII text to HTML Entities. It converts character to a named entity. If a named entity cannot be found for the character, it reverts to a numeric HTML entity.
Text to Numeric HTML Entity
Convert non-ASCII text to HTML Entities, without attempting to find a matching named entity. The results are always numeric entities.
All Text to Numeric HTML Entities
Converts all standard ASCII, as well as non-ASCII, characters to numeric HTML Entities.
HTML: Create Ordered List
Converts a series of lines into an HTML-based ordered list.
HTML: Create Unordered List
Converts a series of lines into an HTML-based unordered list.
HTML Tag: Bold
Wraps the selected text in a given tag.
“Sample Text” becomes “<b>Sample Text</b>”.
HTML Tag: Italic
Wraps the selected text in a given tag.
“Sample Text” becomes “<i>Sample Text<i>”.
HTML Tag: Preformatted
Wraps the selected text in a given tag.
“Sample Text” becomes: “<pre>Sample Text</pre>”
HTML Tag: Break
Inserts the “<br/>” tag.
HTML Tag: Div
Wraps the selected text in a given tag.
“Sample Text” becomes “<div>Sample Text</div>”.
HTML Tag: Paragraph
Wraps the selected text in a given tag.
“Sample Text” becomes “<p>Sample Text</p>”.
HTML Tag: Span
Wraps the selected text in a given tag.
“Sample Text” becomes “<span>Sample Text</span>”.
HTML Tag: BlockQuote
Wraps the selected text in a given tag.
“Sample Text” becomes “<blockquote>Sample Text</blockquote>”.
HTML Tag: Cite
Wraps the selected text in a given tag.
“Sample Text” becomes “<cite>Sample Text</cite>”.
HTML Tag: h1
Wraps the selected text in a given tag.
“Sample Text” becomes “<h1>Sample Text</h1>”.
HTML Tag: h2
Wraps the selected text in a given tag.
“Sample Text” becomes “<h2>Sample Text</h2>”.
HTML Tag: h3
Wraps the selected text in a given tag.
“Sample Text” becomes “<h3>Sample Text</h3>”.
HTML Tag: h4
Wraps the selected text in a given tag.
“Sample Text” becomes “<h4>Sample Text</h4>”.
HTML Tag: h5
Wraps the selected text in a given tag.
“Sample Text” becomes “<h5>Sample Text</h5>”.
HTML Tag: h6
Wraps the selected text in a given tag.
“Sample Text” becomes “<h6>Sample Text</h6>”.
HTML Tag: Unordered List
Wraps the selected text in a given tag.
“Sample Text” becomes “<ul>Sample Text</ul>”.
HTML Tag: Ordered List
Wraps the selected text in a given tag.
“Sample Text” becomes “<ol>Sample Text</ol>”.
HTML Tag: List Item
Wraps the selected text in a given tag.
“Sample Text” becomes “<li>Sample Text</li>”.
HTML Tag: Table
Wraps the selected text in a given tag.
“Sample Text” becomes “<table>Sample Text</table>”.
HTML Tag: Table Row
Wraps the selected text in a given tag.
“Sample Text” becomes “<tr>Sample Text</tr>”.
HTML Tag: Table Cell
Wraps the selected text in a given tag.
“Sample Text” becomes “<td>Sample Text</td>”.
HTML Tag: Link
Creates an href tag with the selected text as the URL.
“http://www.unmarked.com” becomes <a href=“http://www.unmarked.com”> Sample Text</a>".