aboutsummaryrefslogtreecommitdiff
path: root/emparse
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-01-30 20:35:05 +0000
committerJohn Ankarström <john@ankarstrom.se>2021-01-30 20:35:05 +0000
commit9fafbd13c858e6db6248ae961aa4108d16bc4593 (patch)
tree7e0f4a2de8219c5e01f6f8a87d2e393e51e9ab1d /emparse
parent78791fdc6a351726aa536ef23e332cce2ff19737 (diff)
downloadem-9fafbd13c858e6db6248ae961aa4108d16bc4593.tar.gz
Support multiple numbers/letters in references
(The letters are useful for hyperlink references.)
Diffstat (limited to 'emparse')
-rwxr-xr-xemparse6
1 files changed, 3 insertions, 3 deletions
diff --git a/emparse b/emparse
index 0f86ee3..3184488 100755
--- a/emparse
+++ b/emparse
@@ -14,7 +14,7 @@ END { breakblock() }
expectblock && /^ / { newblock("table") }
expectblock && /^ - / { newblock("ul") }
expectblock && /^ [0-9a-z]+\. / { newblock("ol") }
-expectblock && /^ \[[0-9a-z]\]+ / { newblock("nl") }
+expectblock && /^ \[[0-9a-z]+\] / { newblock("nl") }
expectblock && /^ .*: / { newblock("dl") }
expectblock && /^ / { newblock("pre") }
expectblock && /^---$/ { expectblock = 0; printf "<hr/>\n"; next }
@@ -30,8 +30,8 @@ openblock == "pre" { sub("^ ", ""); $0 = escape($0); printf "%s\n", $0; next }
openblock == "ul" && /^ - / { item(1, "ul", line) }
openblock == "ol" && /^ [0-9a-z]+\. / { item(1, "ol", line) }
-openblock == "nl" && /^ \[[0-9a-z]\]+ [^ ]+$/ { next } # hyperlink reference
-openblock == "nl" && /^ \[[0-9a-z]\]+ / { item(1, "nl", line) } # text reference
+openblock == "nl" && /^ \[[0-9a-z]+\] [^ ]+$/ { next } # hyperlink reference
+openblock == "nl" && /^ \[[0-9a-z]+\] / { item(1, "nl", line) } # text reference
openblock == "dl" && /^ .*: / { term(line) }
(openblock == "ul" || openblock == "ol") && /^ -/ { item(2, "ul", line) }