代码修饰似乎想从CDN中获取pretty.css,而不是使用本地副本-是否有可能进行配置以使其使用本地版本而无需网络调用?

最佳答案

run_prettify.js从CDN加载并使用查询标志来计算
列出要加载的内容:

<head>
  <script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
</head>
<body>
  ...
</body>


prettify.js脚本使您可以更好地控制加载,但是您必须记住加载所需的语言处理程序,并在加载时调用PR.prettyPrint()

<head>
  <script src="/path/to/prettify.js"></script>
  <link rel="stylesheet" href="/path/to/prettify.css" />
  <!-- You would also need to load the language handlers you need here. -->
</head>
<body onload="PR.prettyPrint()">
  ...
</body>


您可以在https://github.com/google/code-prettify/tree/master/src中找到prettify.{js,css}和语言处理程序

关于javascript - 在使用JavaScript的代码中使用本地pretty.css进行代码修饰?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49597078/

10-11 05:38