Module for Pretty Printing HTML?

余生长醉 提交于 2019-12-03 07:10:21

You found all the resources you need. That module does it for you.

var html = require("html");
var data = '<h2><strong><a href="http://awesome.com">AwesomeCom</a></strong><span>is awesome</span></h2>';
var prettyData = html.prettyPrint(data, {indent_size: 2});
process.stdout.write(prettyData)

Look at it's source.


Or you could use child_process to execute the command found in the README: html *.html.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!