From a9201a7060b116f3ddfbdbf2ac1e27b0a07db6e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Tue, 17 Jun 2025 15:41:40 +0200 Subject: [PATCH] bugfix: removed introduced bug with | -> : replacement --- src/awk/approx.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/awk/approx.awk b/src/awk/approx.awk index a966cfb..d08e1d1 100644 --- a/src/awk/approx.awk +++ b/src/awk/approx.awk @@ -96,7 +96,7 @@ function fn(path, n, a) { function title(start, summary) { summary = getcontent(summary) gsub("\n", " ", summary) # This will be put on a single line - gsub("|", ":", summary) # we use "|" as delimiter + gsub("\\|", ":", summary) # we use "|" as delimiter depth = split(FILENAME, path, "/") collection = depth > 1 ? path[depth-1] : "" collection = collection in collection2label ? collection2label[collection] : collection