aboutsummaryrefslogtreecommitdiff
path: root/doc
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
commit5344a28b0d57fc67b182baea000adb220b89ab78 (patch)
tree10ce913b3bcfd7623b48d6a5e87b3d6173112dbe /doc
parent02970b233afb937f7a16d27d47ded056ce082c1e (diff)
Improve fallback tree output with &middot;
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/cli.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/cli.sh b/doc/cli.sh
index a5780c2..a41721a 100755
--- a/doc/cli.sh
+++ b/doc/cli.sh
@@ -80,7 +80,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"
}