aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-06-24 14:52:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-06-24 14:54:13 +0200
commit089da744886bccdee4c0cc9fc5105c0efc6be125 (patch)
tree7e7fa22b43587a4cf47c8575257056e19abbcd16
parent86455ac8a3f2e972a27a7d35eaaf1610dd360932 (diff)
Improve fallback tree output with &middot;
-rwxr-xr-xdoc/cli.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/cli.sh b/doc/cli.sh
index 947b1c6..1c8535f 100755
--- a/doc/cli.sh
+++ b/doc/cli.sh
@@ -72,7 +72,7 @@ function xhtml_to_ps () # <from> <to> [<html2ps-options>]
local to="$1"
shift
- sed -e 's/├/|/g' -e 's/│/|/g' -e 's/─/-/g' -e 's/└/`/g' "$from" | \
+ sed -e 's/├/|/g' -e 's/│/|/g' -e 's/─/-/g' -e 's/└/\xb7/g' "$from" | \
html2ps "${@}" -o "$to"
}