Posts

Showing posts with the label HTML

HTML Minior

Image
Please enable JavaScript Compress HTML Compress CSS Compress JS COMPRESS HTML RESTORE HTML Minior is a tool to minify or compress your HTML code. By default, it implements this trimming method: function minifyHTML(html) { return ( html // Removes HTML comments. .replace(/<!--[\s\S]*?-->/g, "") // Collapses all whitespace (spaces, newlines, tabs) into single spaces. .replace(/\s+/g, " ") // Removes spaces between tags. .replace(/>\s+</g, "><") // Trims leading-trailing whitespace. .trim() ) } Compress CSS If checked (picked), it will implement CSSO package to accomplish CSS code minification within HTML code which is wrapped in style tag. Compress JS If checked (picked), it will impl...

HTML Formatter

Image
Please enable JavaScript Indentation FORMAT HTML RESTORE HTML Formatter is a tool to format (beautify or structuralise) your HTML code. Indentation Specifies how many horizontal indentation spaces used for the structured nesting.

HTLCER: HTML Tag Lowercase-er

Image
LOWERCASE HTML TAGS RESTORE HTLCER is a tool to uniformly lowercase the HTML tags from the HTML code. For example, <SpAn>Inner Text</SpAn> will be lowercased as <span>Inner Text</span> ℹ️ This tool is optional — Because sometimes, we did intend to create custom HTML tags with our own naming convention.