From 42518598e1aa30f35c20d399e9568aa8ddec4527 Mon Sep 17 00:00:00 2001 From: Wolfgang <dm5wk@noreply.localhost> 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..7e168c5 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;