diff options
author | John Ankarström <john@ankarstrom.se> | 2021-01-29 20:09:45 +0000 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-01-29 20:09:45 +0000 |
commit | 5c4dcffa4c0b206f985087ed0d2cd469f81c9cb0 (patch) | |
tree | e2e854de5ac909f0d20d6b227ccae3054fe7113f | |
parent | 4c238cc343935253c37c1da84d285b0adb21944a (diff) | |
download | em-5c4dcffa4c0b206f985087ed0d2cd469f81c9cb0.tar.gz |
Fix formatting
-rwxr-xr-x | aux/emparse | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/emparse b/aux/emparse index f92e342..e7e1fb5 100755 --- a/aux/emparse +++ b/aux/emparse @@ -144,7 +144,7 @@ expectblock { newblock("p") } block = "ul" && /^ - / { item(1, "ul", line) } block = "ol" && /^ [0-9a-z]+\. / { item(1, "ol", line) } -block = "nl" && /^ \[[0-9a-z]\]+ [^ ]+$/ { next; } # hyperlink reference +block = "nl" && /^ \[[0-9a-z]\]+ [^ ]+$/ { next } # hyperlink reference block = "nl" && /^ \[[0-9a-z]\]+ / { item(1, "nl", line) } # text reference block = "dl" && /^ .*: / { term(line) } |