diff options
author | June McEnroe <june@causal.agency> | 2018-10-08 14:45:37 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-10-08 14:47:40 -0400 |
commit | 34c654eeb9ec8e115648baf7f6eb8d1cb21aeb3f (patch) | |
tree | 7d196e136a19076f928f995b43204f3e68c6d419 /Makefile | |
parent | Add CAVEATS to "Pleasant C" (diff) | |
download | src-34c654eeb9ec8e115648baf7f6eb8d1cb21aeb3f.tar.gz src-34c654eeb9ec8e115648baf7f6eb8d1cb21aeb3f.zip |
Use col -b to strip formatting
As suggested in man(1).
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 32e858e0..8b50a0f8 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ all: $(TXTS) .SUFFIXES: .7 .txt .7.txt: - mandoc $< | sed $$'s/.\b//g' > $@ + mandoc $< | col -b -x > $@ feed.atom: $(TXTS) ./feed.sh > feed.atom |