syntax-highlighting

Add syntax highlight to code blocks on the REAPER forum

Installa questo script?
Script suggerito dall'autore

Potresti essere interessato/a anche a original-poster

Installa questo script

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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);