diff options
author | toonn <toonn@toonn.io> | 2022-04-01 21:35:20 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-04-01 21:35:20 +0200 |
commit | 391f061cb0b0cfa8266c0651f2a6d948f22e01dd (patch) | |
tree | 4fe68442c7282923c2a37900fc314963bf44251d | |
parent | 89d3683e42f9d220e7e888edc5d82bdb29f423c3 (diff) | |
parent | ba78c45557405e68643ec429b86d63a5aa1a49d1 (diff) | |
download | ranger-391f061cb0b0cfa8266c0651f2a6d948f22e01dd.tar.gz |
Merge remote-tracking branch 'ferdinandyb/ipynb_preview'
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | ranger/data/scope.sh | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md index d7fe30b3..6598b655 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,7 @@ For enhanced file previews (with `scope.sh`): * `mediainfo` or `exiftool` for viewing information about media files * `odt2txt` for OpenDocument text files (`odt`, `ods`, `odp` and `sxw`) * `python` or `jq` for JSON files +* `jupyter nbconvert` for Jupyter Notebooks * `fontimage` for font previews * `openscad` for 3D model previews (`stl`, `off`, `dxf`, `scad`, `csg`) * `draw.io` for [draw.io](https://app.diagrams.net/) diagram previews diff --git a/ranger/data/scope.sh b/ranger/data/scope.sh index 5e0e66ac..2e9983ee 100755 --- a/ranger/data/scope.sh +++ b/ranger/data/scope.sh @@ -108,7 +108,15 @@ handle_extension() { ;; ## JSON - json|ipynb) + json) + jq --color-output . "${FILE_PATH}" && exit 5 + python -m json.tool -- "${FILE_PATH}" && exit 5 + ;; + + ## Jupyter Notebooks + ipynb) + jupyter nbconvert --to markdown "${FILE_PATH}" --stdout | env COLORTERM=8bit bat --color=always --style=plain --language=markdown && exit 5 + jupyter nbconvert --to markdown "${FILE_PATH}" --stdout && exit 5 jq --color-output . "${FILE_PATH}" && exit 5 python -m json.tool -- "${FILE_PATH}" && exit 5 ;; |