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
commitdc3d7c5fa4062cac36d718766504c87696a3de41 (patch)
treed4c7af0ce640393e593b84b823c524b955d3011a
parent2ad6aa134d9e8e755c8c738d0b51d72b0851c212 (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 ed1bb10..41b4719 100755
--- a/doc/cli.sh
+++ b/doc/cli.sh
@@ -69,7 +69,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"
}