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 | 13903f8fdc85b8a03d87ad3458ca5b82e8072dcc (patch) | |
tree | 567b7637f3d2cebdd7de732307fc57ef59474447 | |
parent | c540881a2518764be8193560167a52caf13059e0 (diff) |
Improve fallback tree output with ·
-rwxr-xr-x | doc/cli.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,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" } |