2017 © Pedro PelĂĄez
 

library xhtml-formatter

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

image

machy8/xhtml-formatter

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  • Thursday, February 1, 2018
  • by Machy8
  • Repository
  • 3 Watchers
  • 2 Stars
  • 282 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 32 % Grown

The README.md

XML + (X)HTML formatter / beautifier

Build Status, (*1)

Installation

composer require machy8/xhtml-formatter

Usage

Compiles this đŸ’©, (*2)

<!DOCTYPE html>
<html lang="en">
    <head><meta charset="utf-8"><title>title</title>
    <link rel="stylesheet" href="style.css">
<script src="script.js"></script></head><body><!-- page content --></body></html>

into this đŸ˜±đŸ˜­, (*3)

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>
            title
        </title>
        <link rel="stylesheet" href="style.css">
        <script src="script.js"></script>
    </head>
    <body>
        <!-- page content -->
    </body>
</html>

and all you need is, (*4)

use XhtmlFormatter\Formatter;

$formatter = new Formatter();

$output = $formatter->format($string);

and if you want to disable formatting, (*5)




Unformatted code goes here! , (*6)

Setup

$formatter

    // Change the content type from CONTENT_HTML (default) to CONTENT_XML or CONTENT_XHTML
    ->setContentType(Formatter::CONTENT_XML)

    // Add new unpaired element
    ->addUnpairedElement('element', Formatter::CONTENT_XML)

    // Add skipped elements
    ->addSkippedElement('elementA elementB')

    // Indent file by 4 spaces instead of tabs
    ->setSpacesIndentationMethod(4);

The Versions

01/02 2018

dev-master

9999999-dev

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  Sources   Download

BSD-3-Clause New BSD License

The Requires

  • php >=7.0

 

The Development Requires

by Vladimír Macháček

xml html formatter xhtml beautifier

14/08 2017

1.0.x-dev

1.0.9999999.9999999-dev

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  Sources   Download

New BSD License

The Requires

  • php >=7.0

 

The Development Requires

by Vladimír Macháček

xml html formatter xhtml beautifier

14/08 2017

v0.1.0

0.1.0.0

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  Sources   Download

New BSD License

The Requires

  • php >=7.0

 

The Development Requires

by Vladimír Macháček

xml html formatter xhtml beautifier

14/08 2017

v1.0.0

1.0.0.0

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  Sources   Download

New BSD License

The Requires

  • php >=7.0

 

The Development Requires

by Vladimír Macháček

xml html formatter xhtml beautifier

14/08 2017

0.1.x-dev

0.1.9999999.9999999-dev

Simple, lightweight, customizable (X)HTML and XML formatter / beautifier.

  Sources   Download

New BSD License

The Requires

  • php >=7.0

 

The Development Requires

by Vladimír Macháček

xml html formatter xhtml beautifier