HTML Formatter通过PHP将代码格式化输出

NOCO发布于 分类 PHP

更新于 2015-10-20

4天前 有1个用户阅读过

似乎没找到NGINX APACHE模块实现将代码格式化输出,在github上找到一个PHP实现的。

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>

以上是项目官方说明,如果对代码输出格式有更严重的洁癖,你可以将类里面的标签换行与缩进相关的代码适当修改。

-- The End --

本文标题: HTML Formatter通过PHP将代码格式化输出

本文地址: https://seonoco.com/blog/html-formatter-php

本文是否有所帮助?
点赞 0
感谢支持
0
多谢反馈
评论 0
打赏

支持微信/支付宝

评论

网友