aboutsummaryrefslogtreecommitdiff
path: root/doc/cli.sh
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:52:30 +0200
commit64242246d49d92533f020afff30323724404bbfe (patch)
tree3b3116c9efb5e2c591e58562102fbee47d51476e /doc/cli.sh
parent7dd664fb3933614bc556c2911567ed852fb6d99c (diff)
Improve fallback tree output with &middot;
Diffstat (limited to 'doc/cli.sh')
-rwxr-xr-xdoc/cli.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/cli.sh b/doc/cli.sh
index 91a45c9..b2e2605 100755
--- a/doc/cli.sh
+++ b/doc/cli.sh
@@ -31,7 +31,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"
}