Greasy Fork is available in English.

GitHub - Don't wrap code lines

Don't wrap code lines

Tính đến 10-01-2023. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

  1. /* ==UserStyle==
  2. @name GitHub - Don't wrap code lines
  3. @description Don't wrap code lines
  4. @namespace https://greatest.deepsurf.us/users/4813
  5. @author Swyter
  6. @version 2023.01.10
  7. @license CC-BY-SA 4.0
  8. @preprocessor default
  9. ==/UserStyle== */
  10. @-moz-document domain("github.com")
  11. {
  12. body .gist .blob-code-inner {
  13. white-space: pre ;
  14. }
  15. /* No `.gist` */
  16. body .blob-code-inner {
  17. white-space: pre;
  18. }
  19. }
  20.