From 3ab42a5fb02a2652cae089bd3f936729fd49382d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sun, 31 Jan 2021 17:53:13 +0000 Subject: Support [A-Za-z] in list item values HTML/CSS makes this a bit awkward; all the better if em can handle it for you. --- emcollect | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'emcollect') diff --git a/emcollect b/emcollect index c0f7759..de9c2d0 100755 --- a/emcollect +++ b/emcollect @@ -7,7 +7,7 @@ function collect(line) { right = $0 sub("^ \\[", "", left) sub("\\].*$", "", left) - sub("^ \\[[0-9]+\\] <", "", right) + sub("^ \\[[0-9a-z]+\\] <", "", right) sub(">$", "", right) printf "%s=%s\n", left, right } @@ -15,5 +15,5 @@ function collect(line) { BEGIN { expectblock = 1 } /^$/ { expectblock = 1; getline } -expectblock && /^ \[[0-9]+\] / { block = "nl"; expectblock = 0 } -block = "nl" && /^ \[[0-9]+\] <(\.\/.*|\.\.\/.*|#.*|.*\/.*)>$/ { collect($0); next } +expectblock && /^ \[[0-9a-z]+\] / { block = "nl"; expectblock = 0 } +block = "nl" && /^ \[[0-9a-z]+\] <(\.\/.*|\.\.\/.*|#.*|.*\/.*)>$/ { collect($0); next } -- cgit v1.2.3