Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mihaeu/html-formatter

HTML Formatter is a PHP library which pretty prints HTML.
https://github.com/mihaeu/html-formatter

Last synced: 24 days ago
JSON representation

HTML Formatter is a PHP library which pretty prints HTML.

Awesome Lists containing this project

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](http://getcomposer.org/doc/00-intro.md)

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

## Usage

```php
Hello World

Test

');
```

Which should produce something along the lines of:

```


Hello World



Test


```