Skip to content

A simple to use HTML prettifier class written in PHP. Added as a composer library in memory of Bennett Roesch (spyrosoft).

License

Notifications You must be signed in to change notification settings

lcherone/html-format

Repository files navigation

HTML formatter class.

Build Status StyleCI Scrutinizer Code Quality Code Coverage Packagist Version Packagist Downloads

A simple to use HTML prettifier class written in PHP. Added as a composer library in memory of Bennett Roesch (spyrosoft).

Original code from: https://github.com/spyrosoft/php-format-html-output

Install

Require this package with composer using the following command:

$ composer require roesch/html-format

Example usage:

<?php
require 'vendor/autoload.php';

$html = 'Unformatted HTML string';

// initialize class
$format = new \Roesch\Format();

// use spaces at 4 length
echo $format->html($html);

// use spaces at 2 length
echo $format->html($html, true, 2);

// use tabs
echo $format->html($html, false);

Static method example usage:

<?php
require 'vendor/autoload.php';

$html = 'Unformatted HTML string';

// use spaces at 4 length
echo \Roesch\Format::HTML($html);

// use spaces at 2 length
echo \Roesch\Format::HTML($html, true, 2);

// use tabs
echo \Roesch\Format::HTML($html, false);

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

A simple to use HTML prettifier class written in PHP. Added as a composer library in memory of Bennett Roesch (spyrosoft).

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages