syntax-highlighting

Add syntax highlight to code blocks on the REAPER forum

安装此脚本
作者推荐脚本

您可能也喜欢original-poster

安装此脚本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        syntax-highlighting
// @description Add syntax highlight to code blocks on the REAPER forum
// @namespace   https://cfillion.ca
// @version     1.0.3
// @author      cfillion
// @license     GPL-3.0-or-later
// @include     https://forum.cockos.com/showthread.php*
// @include     https://forum.cockos.com/showpost.php*
// @include     https://forum.cockos.com/editpost.php*
// @include     https://forum.cockos.com/newreply.php*
// @require     https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.3/highlight.min.js
// ==/UserScript==

// highlight.js v11 removed auto-merging of html (removes links) 

var theme = document.createElement('link');
theme.rel = 'stylesheet';
theme.href = 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.3/styles/sunburst.min.css';
document.body.appendChild(theme);

var style = document.createElement('style');
style.textContent = `
  pre.alt2 a:link, pre.alt2 a:visited { color: white; }
  pre.alt2 font { color: inherit; }
`;
document.body.appendChild(style);

hljs.configure({
  tabReplace: '\x20'.repeat(2),
  languages: ['lua', 'cpp'],
});

document.querySelectorAll('pre.alt2').forEach(hljs.highlightBlock);