Fold into 74 chars. See the logo and ads. - tgtimes - The Gopher Times | |
git clone git://bitreich.org/tgtimes git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 24d5342832a764dc92f275179ad1d14978aaf1fe | |
parent b60a8fae8e1b5277cbb301ef83af82fa1a7eacab | |
Author: Christoph Lohmann <[email protected]> | |
Date: Thu, 10 Aug 2023 12:50:30 +0200 | |
Fold into 74 chars. See the logo and ads. | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -13,7 +13,7 @@ mdptxtfiles=${mdfiles:.md=.ptxt} | |
.md.ptxt: | |
cat $< \ | |
| ./filters/markdown.filter \ | |
- | fold -s \ | |
+ | fold -s -w 74 \ | |
| ./filters/boxquote.filter \ | |
> $@ | |
@@ -21,7 +21,7 @@ txtfiles=$(filter-out ${tgtimes}.txt, $(wildcard opus${v}/*.t… | |
txtptxtfiles=${txtfiles:.txt=.ptxt} | |
.txt.ptxt: | |
cat $< \ | |
- | fold -s \ | |
+ | fold -s -w 74 \ | |
| ./filters/boxquote.filter \ | |
> $@ | |