我创建了一个LaTex文档。问题是:
我尝试使用://old code in here
if (typeof define === "function" && define['amd']) {
define("google-code-prettify", [], function () {
return PR;
});
}
//new code in here
if(typeof module==="object"&&typeof module.exports==="object") {
module.exports = PR;
} else if (typeof define === "function" && define['amd']) {
define("google-code-prettify", [], function () {
return PR;
});
}
或let prettify = require('../../dep/prettify');
$("#doc-view").html(virtualDom);
prettify.prettyPrint();
,但它不起作用。