summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Huang <40531692+MayoDuckPy@users.noreply.github.com>2023-07-26 20:22:06 +0000
committerGitHub <noreply@github.com>2023-07-26 16:22:06 -0400
commit5b9fe16bc9f3ea57f329e531ae652d684b1876e9 (patch)
treeaa5f0b9f4830afef83f5c98c266ff0b22004ee44
parent715b5fbdc62caeababee1857c696d0796805c3d3 (diff)
Separate OpenOffice preview cases (#376)
This commit ports ranger/ranger@9da2b4c which fixes previews with 'ods' and 'odp' filetypes as pandoc does not support them.
-rwxr-xr-xconfig/preview_file.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/preview_file.sh b/config/preview_file.sh
index 15fa6fc..bb7cc7b 100755
--- a/config/preview_file.sh
+++ b/config/preview_file.sh
@@ -96,12 +96,16 @@ handle_extension() {
exit 1 ;;
## OpenDocument
- odt|ods|odp|sxw)
+ odt|sxw)
## Preview as text conversion
odt2txt "${FILE_PATH}" && exit 0
## Preview as markdown conversion
pandoc -s -t markdown -- "${FILE_PATH}" && exit 0
exit 1 ;;
+ ods|odp)
+ ## Preview as text conversion (unsupported by pandoc for markdown)
+ odt2txt "${FILE_PATH}" && exit 0
+ exit 1 ;;
## XLSX
xlsx)