Tag: js beautify

如何写文件到美丽的HTML?

我想写的test.html文件这个HTML: <h2><strong><a href="http://awesome.com">AwesomeCom</a></strong><span>is awesome</span></h2> 这将是lokk像: <h2> <strong> <a href="http://awesome.com"> AwesomeCom </a> </strong> <span> is awesome </span> </h2> 所以它看起来很漂亮,等等…我试过这个代码: var html = require("html"); var beautify_html = require('js-beautify').html; var data = '<h2><strong><a href="http://awesome.com">AwesomeCom</a></strong><span>is awesome</span></h2>'; var beautyHtml= beautify_html(data); fs.writeFile('test.html',beautyHtml, function (err) {}); 但它是停留在一行…是不是我写的是错的? 或者我必须添加一些东西? 感谢您的帮助