Webservice database: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

4 June 2026

  • curprev 09:5309:53, 4 June 2026 Smtxwiki talk contribs 952 bytes +952 Created page with "Convert to hyperlink: function transformLinks(text) { // 1. Zoek naar [Tekst](URL) en vervang door <a href="URL">Tekst</a> // De regex zoekt naar: [ alles behalve ] ] ( alles behalve ) ) const markdownRegex = /\[([^\]]+)\]\((https?:\/\/[^\s)]+)\)/g; let html = text.replace(markdownRegex, '<a href="$2" target="_blank">$1</a>'); // 2. Zoek naar resterende URL's die NIET al in een href-attribuut zitten // Deze regex pakt losse http/https links die voor..."