From 3cc89d28a8a763ef83e967af7cda5f9df33a8db6 Mon Sep 17 00:00:00 2001 From: Wolfgang Date: Fri, 21 Feb 2025 12:10:11 +0100 Subject: [PATCH] fix regex for column divider --- morserino-abbr.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morserino-abbr.html b/morserino-abbr.html index c41b501..b4afb30 100644 --- a/morserino-abbr.html +++ b/morserino-abbr.html @@ -32,7 +32,7 @@ dt, dd { const url_blob = "https://github.com/oe1wkl/Morserino-32/blob/master/Documentation/User Manual/Version 6.x/m32_user-Manual_v6_de.adoc"; const appendix_match = new RegExp("\[\[appendix7\]\]"); - const column_match = new RegExp("::[\s\t]+"); + const column_match = new RegExp(/::\s+/); const url_raw = url_blob.replace("github.com", "raw.githubusercontent.com").replace("/blob/", "/") document.getElementById("abbr_url").innerText = url_blob;