谷歌美化对我来说很棒。我建立了一个具有Twitter bootstrap 前端和google prettify语法突出显示的应用程序。但是该应用程序也可用于离线工作,例如本地主机,因此包含了prettify.js和prettify.css。

现在,当我离线并在应用程序中工作时,它将开始通过本地prettify.js版本查找在线代码:

  • https://google-code-prettify.googlecode.com/svn/loader/lang-"+encodeURIComponent(D[m])+".js
  • https://google-code-prettify.googlecode.com/svn/loader/skins/"+encodeURIComponent(N[m])+".css
  • https://google-code-prettify.googlecode.com/svn/loader/prettify.css

  • 它可以在脱机状态下正常工作,但是为什么要请求外部js和CSS文件,又如何从缩小的prettify.js中删除呢?我不需要它,它正在减慢应用程序的速度。

    最佳答案

    GettingStarted Wiki页面说明:

    10-07 17:15