diff options
-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 ;; |