如何使 grails 2 文档停止生成水平滚动条?

How to make the grails 2 documentation quit generating a horizontal scroll bar?

任何仍在使用 grails 2 应用程序并注意到

上的文档的人

https://grails.github.io/grails2-doc/2.5.6/guide/single.html

https://grails.github.io/grails2-doc/2.4.5/guide/single.html

https://grails.github.io/grails2-doc/2.3.11/guide/single.html

需要使用水平滚动条并且快速参考链接远离屏幕?

这是由文档中一些非常宽的 <pre> 标记引起的。

在 Chrome 中,您可以使用小书签解决此问题。

使用以下 URL 创建一个新书签:

javascript:(function() {var sheet=document.createElement('style');sheet.innerHTML="pre{white-space:pre-wrap}";document.body.appendChild(sheet)}())

此处再次格式化,但您需要将其粘贴为一行。

javascript:(function() {
    var sheet=document.createElement('style');
    sheet.innerHTML="pre{white-space:pre-wrap}"; 
    document.body.appendChild(sheet)
 }())

下次您访问其中一个页面时,只需单击书签,大约一秒钟后,您的快速参考将再次变得快速,不再需要水平滚动。