diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 15:47:43 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 15:47:43 +0100 |
commit | 854fb8c1705a52707d0b2b1ad6f9f7391c2f9267 (patch) | |
tree | 753a82926345b1a467aa16efa86d61546b0ffffd | |
parent | bd30257f7c456f8a885726483eec6d857aea67d2 (diff) |
fix preview utf-8 compatibility
-rwxr-xr-x | .local/share/bin/preview | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/share/bin/preview b/.local/share/bin/preview index 0ca63a7..2fe9c4d 100755 --- a/.local/share/bin/preview +++ b/.local/share/bin/preview @@ -17,7 +17,7 @@ render_manpage() { exec groff -T utf8 -m man -rcR=1 -rIN=0 -rLL="${WIDTH}n" << EOF .nr an-suppress-header-and-footer 1 .TH -$(cat) +$(cat | preconv) EOF } |