Fix regex that detects end of article. - tgtimes - The Gopher Times | |
git clone git://bitreich.org/tgtimes git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit bef5987b8456b7c83745e4561debe8264866d6fa | |
parent 6ecd7539c18c2913a95a84e3585dc245e22912f8 | |
Author: Troels Henriksen <[email protected]> | |
Date: Sun, 27 Aug 2023 22:05:11 +0200 | |
Fix regex that detects end of article. | |
Signed-off-by: Christoph Lohmann <[email protected]> | |
Diffstat: | |
M filters/nudge.filter | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/filters/nudge.filter b/filters/nudge.filter | |
@@ -23,6 +23,6 @@ BEGIN { | |
incontent = 1; | |
} | |
} | |
-/^$/ { incontent = 0; } | |
+/`----/ { incontent = 0; } | |
{ print $0; line++; } | |