mihaeu/html-formatter

HTML Formatter pritifies HTML content by applying proper intendation (no tidy, purification, etc.).

1.0.0 2013-11-26 11:55 UTC

This package is auto-updated.

Last update: 2024-04-04 16:45:31 UTC


README

DEPRECATED

I'm surprised that people are still using this. This is a terrible piece of software. I wrote it years ago on a 10" laptop from my tent while camping somewhere in Armenia (yes that's a valid excuse for writing bad software :P) PRs welcome, but until then I would recommend you don't use this.

HTML Formatter

HTML Formatter re-indents HTML. This is not clean or safe at the moment, but I couldn't find anything else on Packagist that does the job.

Everyone makes sure to stick to standards when it comes to his/her code (or at least I hope they do), but 99% of the HTML on the web looks completely messed up.

This is far from perfect, but if speed does not matter (this implementation is slooow, it was the quickest and dirties solution that came to my mind), because the HTML is cached or something, then this will do.

Installation

If you still don't use Composer, get started here: Composer - Getting Started

# assuming you chose to install Composer globally
$ composer require mihaeu/html-formatter:*

Usage

<?php

require __DIR__.'/vendor/autoload.php';

echo Mihaeu\HtmlFormatter::format('<h1>Hello World</h1><p>Test</p>');

Which should produce something along the lines of:

<h1>
	Hello World
</h1>
<p>
	Test
</p>