我正在使用js-beautify来格式化以动态方式生成的HTML,其中包括一个包含JavaScript的脚本块。感觉格式化HTML的方法与格式化JS的方法不同,我这样做:
htmlText1 = html_beautify(htmlText1, { "indent_size": 2 });
jsText = js_beautify(jsText, { "indent_size": 2 });
htmlText2 = html_beautify(htmlText2, { "indent_size": 2 });
allFormattedCode = htmlText1 + '\n' + jsText + '\n' + htmlText2;
它的格式很好,除了JS位于左边缘。有什么办法让脚本块中所有代码缩进X个空格?
谢谢! -马特