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:52:30 +0200
commit34770f72fb2b80e7e0d260b8238b5603158723f1 (patch)
tree3a31d67f035872c5e2017a318609549e222ff813
parentef6b426d5cac6ea077f22cb597b1c8bc692bb55b (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 91055d9..7ed2662 100755
--- a/doc/cli.sh
+++ b/doc/cli.sh
@@ -32,7 +32,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"
}