A simple HTML pretty printer written in PHP
PHP
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.

README

A simple HTML formatter.

Example:

<?php

include_once('format.php');

$html = 'BIG STRING FULL OF HTML';

$format = new Format;

$formatted_html = $format->HTML($html);

echo $formatted_html;