Skip to content

Commit 7b1592e

Browse files
authored
Enable line breaks in indented section in html doc ...
... by removing them when rendering to man
1 parent b0d336c commit 7b1592e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

man/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
if FLaC__HAS_PANDOC
2020
flac.1: flac.md
21-
pandoc --standalone --to man $? > $@
21+
cat $? | tr "\n" "\r" | sed -e 's/ \r\t/\r\t/g' | tr "\r" "\n" | pandoc --standalone --to man > $@
2222

2323
metaflac.1: metaflac.md
2424
pandoc --standalone --to man $? > $@

0 commit comments

Comments
 (0)