chloe
chloe
This PR fixes #133 by adding a new setting: WSL mode. When WSL mode is on, it runs all commands in WSL via `wsl -e `. On non-Windows installations, the...
It would be great if there was a bug report issue template so that people who are reporting bugs know to include information such as their OS, obsidian version, plugin...
There was a lot of code shared between `NodeJSExecutor` and `PythonExecutor`. If we expand to other languages, it would be even harder to maintain, so I refactored their shared language-agnostic...
To have a proper equivalence to ipynb notebooks, I thought that it might be nice to persist the output in the file. In this PR, the Outputter adds a code...
Tests!
We're seeing a lot of bugs (#119, #109, #108, #95) that would be relatively easy to automatically test. If we could set up a test suite & use GitHub Actions's...
Right now, `@show(...)` and `@html(...)` use regex. This limits their applicability. A simple contextual parser would help - Allow more complex dynamic calculations (e.g. `@show("~/pictures/" + folder + "/img.png")`) -...
On GitHub and many other services, you can use a code-block with the `console` language to represent a console session. For example: ```console chlohal@DESKTOP2FA3C:~$ echo 'hi' ``` It would be...
Currently, [ANSI Escape Codes](https://en.wikipedia.org/wiki/ANSI_escape_code) show up as plaintext in output. In Powershell and Bash, this makes output ugly (see #169). If we parsed escape codes, we could change that.