diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-24 14:52:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-24 14:52:30 +0200 |
commit | 64242246d49d92533f020afff30323724404bbfe (patch) | |
tree | 3b3116c9efb5e2c591e58562102fbee47d51476e | |
parent | 7dd664fb3933614bc556c2911567ed852fb6d99c (diff) |
Improve fallback tree output with ·
-rwxr-xr-x | doc/cli.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" } |