This plugin allows you to execute code snippets in code blocks in your notes. The plugin adds a 'run' button for code blocks in supported languages. Clicking them results in the code of the block being executed locally. After the execution the result of the execution is showed. An interactive input element is created when your code snippets reads expects user input.
The result is shown only after the execution is finished. It is not possible to enter text on the command line into the executed program now.
[!NOTE] Advertisement on my behalf: I am working on my master's thesis and looking for a PhD position in AI (especially explainable AI or foundations of machine learning) - if you have or know about an open position in that field, I would love to hear about it π
The following languages are supported: C, CPP, Dart, Golang, Groovy, Kotlin, Java, JavaScript, TypeScript, Lean, Lua, CSharp, Prolog, Rust, Python, R, Ruby, Wolfram Mathematica, Haskell, Scala, Racket, F#, Batch, Shell & Powershell, Octave, Maxima, Zig and OCaml.
If you are new to MarkDown or Obsidian.md, you can go to the Quickstart Guide or take a look in to some blogs and videos that feature this plugin
Python, Rust, and Octave support embedded plots. All languages support "magic" commands that help you to access paths in obsidian or show images in your notes.
You can create code blocks that are executed before or after each code block of the same language and define global code injections.
New: You can enable persistent output to store the output of a code block in the note and export it to PDF.
Take a look at the changelog to see what has changed in recent versions.
Here you can find some other tools and plugins that are compatible with this plugin and might be useful for you.
In blogs:
Are you featuring this plugin in your content? Let me know and I will add it here.
Squiggle: For Squiggle support take a look at the Obsidian Squiggle plugin by @jqhoogland.
Support for the following is planned:
Open for suggestions.
Magic commands are some meta commands that can be used in the code block. They are processed by the plugin before the source code is executed.
The following magic commands are supported:
@vault_path
: Inserts the vault path as string (e.g. "/User/path/to/vault")@vault_url
: Inserts the vault url as string. (e.g. "app://local/path/to/vault")@note_path
: Inserts the vault path as string (e.g. "/User/path/to/vault/Note.md")@note_url
: Inserts the vault url as string. (e.g. "app://local/path/to/vault/Note.md")@title
: Inserts the note title as string.@show(ImagePath)
: Displays an image at the given path in the note.@show(ImagePath, Width, Height)
: Displays an image at the given path in the note.@show(ImagePath, Width, Height, Alignment[center|left|right])
: Displays an image at the given path in the note.@html(HtmlSource)
: Displays HTML in the note(@show(...)
and @html(...)
are only supported for JavaScript and Python yet.)
(The old commands @note
and @vault
are still supported, but may be removed in the future.)
Examples for the magic commands with Python:
print("Vault path:", @vault_path)
print("Vault url:", @vault_url)
print("Note path:", @note_path)
print("Note url:", @note_url)
print("Note title:", @title)
@show("image.png")
@show("image.png", 100, 100)
@show("https://upload.wikimedia.org/wikipedia/commons/d/de/TestScreen_square.svg", 10%, 10%, "center")
@html("<h1>HTML Caption</h1>")
@html('''
<svg width="100%" height="100%" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="300" cy="300" r="250" style="fill:peru;" />
<circle cx="200" cy="250" r="50" style="fill:black;" />
<circle cx="400" cy="250" r="50" style="fill:black;" />
<circle cx="190" cy="230" r="20" style="fill:white;" />
<circle cx="390" cy="230" r="20" style="fill:white;" />
<circle cx="250" cy="400" r="85" style="fill:saddlebrown;" />
<circle cx="350" cy="400" r="85" style="fill:saddlebrown;" />
<ellipse cx="300" cy="380" rx="50" ry="35" style="fill:black;" />
<ellipse cx="130" cy="100" rx="110" ry="70" style="fill:saddlebrown;"/>
<ellipse cx="470" cy="100" rx="110" ry="70" style="fill:saddlebrown;" />
</svg>
''')
Try it out yourself!
Adding run-
before the language name in the code blocks (as in the example below) renders the code block in the preview already.
This allows you to execute the code in the preview.
```run-python
def hello(name):
print("Hello", name)
if __name__ == "__main__":
hello("Eve")
Code blocks support specifying additional arguments in the form {key='value', otherkey=['val1', 'val2']}
. Add them to code blocks like so:
```python {label='my label'}
print('my labelled code block')
## Global Code Injection and Reusing Code Blocks π
Sometimes it is helpful to have code that is executed before or after each other block of the same language. This plugin supports this in a few ways:
### Global Injection in the Settings
All languages have a 'global inject' option in the settings that allows defining code to be added to the top of every single code block on a per-language basis. Code reuse fully works with all languages, and all existing magic commands, including showing images, and inline plot outputs. This can be used to define e.g. often used functions or import your favourite packages or libraries.
### Note-wide Pre- and Post-Code Blocks
You can specify the `pre` argument to create a block that is executed before each following code block:
import pandas as pd
This code block is added before each python block you define below in the note and import the pandas package.
`post` blocks work the same way, but the code in post blocks is executed _after_ your other code blocks.
Pre/Post blocks will only apply to code blocks defined below them, and will only apply to code blocks from the same language.
You can also have a pre and post block at the same time by specifying `{pre, post}`
Note, the `pre`/`post` arguments are special in that you don't need to explicitly state a key/value pair, however you can do so if you wish:
`{pre}` is equivalent to `{export='pre'}`, `{pre, post}` is equivalent to `{export=['pre', 'post']}`.
### Labelled Code Blocks
You can label specific code blocks with the `label='string'` argument, then import them explicitly in other blocks with the `import='string'` or `import=['string1', 'string2', ...]` argument so they aren't automatically imported as with pre / post blocks:
print('running block 1')
print('running block 2')
print('should run block 1 and 2')
Labelled code blocks will be executed before the code block being run, however after global injects and pre blocks.
### Ignoring Code Exports
In case you want to manually ignore specific exports in a code block like pre / post / global exports, you can do so with the `ignore` argument that accepts either `pre`, `post`, `global`, an array of any of these 3, or `all` to ignore all exports:
print('should not run any global injects or pre / post blocks')
print('should not run any pre blocks or global injects')
### Notebook Mode
A few languages (currently JS and Python) support *Notebook Mode*. If a language is using Notebook Mode (configurable in Settings), then all code blocks in a given file will execute in the same environment.
Variables functions, etc. defined in one code block will be available in other code blocks. Code blocks are executed on demand; the order of code blocks in the file does not affect the order in which they are executed:
console.log(f)
var f = 3;
Running the first code block, then the second, then the first again will give:
Uncaught ReferenceError: f is not defined undefined 3
To manage the open runtimes for Notebook Mode, you can use the `Open Code Runtime Management` command in the command palette. From this sidebar window, you can stop kernels. **Note: force-stopping requires `taskkill` on Windows and `pkill` on Unix. 99% of systems should have these preinstalled: if yours doesn't, please [file an issue](https://github.com/twibiral/obsidian-execute-code/issues/new/choose)**
### Persistent Output \[Experimental\]
Since version 2.0.0, the plugin supports persistent output. This means that the output of a code block is
stored in the note and will be displayed when you open the note again. This is useful for long-running code blocks or
code blocks that produce a lot of output. The output is stored in the note as a comment and will be displayed in the
preview mode.
To enable this feature, you have to enable the setting `Persistent Output` in the plugin settings.
We recommend reopening open notes that contain code blocks after enabling this feature.
This feature is still experimental and may not work as expected in all cases.
We recommend that you disable this feature if you encounter any problems.
## Misc π¦
### Style Settings π¨
This plugin supports customising styles using the [Style Settings plugin](https://github.com/mgmeyers/obsidian-style-settings)
or the [Obsidian Code Styler plugin](https://github.com/mayurankv/Obsidian-Code-Styler).
### Other Tools
Take a look at the [Obsidian Tools python package](https://github.com/mfarragher/obsidiantools) to find some useful
tools for interacting with your vault.
## Quickstart Guide
Start by checking if the plugin is installed and **activated**. Continue by creating a code block in your preferred language. Check above to see if the language is supported.
Now you can switch from the preview mode to the rendered mode (where you can't edit the text anymore). Now, when you hover over the code block, you should see a button labeled "run". Click it!
If it didn't work and a warning appears (that is not related to a bug in your code), you probably need to set the correct execution part for the language (e.g., "C://User/YourName/anaconda/python.exe" or something like that). You can find instructions about how to find the right path below.
Now it works, great! Feel free to read or skim through the text above to learn more features you might like, for example persistent output or embedding of plots.
## Installation πΎ
In your vault go to Settings > Community plugins > Browse and search for "Execute Code". Select the plugin, install it and activate it.
or
Follow [this link](https://obsidian.md/plugins?search=execute%20code#) and click "Open in Obsidian".
## Locating Path Settings ( ex. JavaScript | Node )
To avoid or resolve errors from an incorrect path.
('where' for Mac and Windows) --- (for Linux Users, replace 'where' with 'which')
1. In your terminal, type 'where node'
![Type 'where node' in terminal](https://github.com/twibiral/obsidian-execute-code/blob/master/images/path_location_shell.png?raw=true)
2. Copy path from terminal ( ex. /opt/homebrew/bin/node )
3. Paste in path under settings ( ex. Node path )
![Update path under settings with path from step 2](https://github.com/twibiral/obsidian-execute-code/blob/master/images/path_location_settings.png?raw=true)
## Warning β
Do not execute code from sources you don't know or code you don't understand. Executing code can cause irreparable damage.
## Known Problems π
- On Linux, Snap/Flatpak/AppImage installations of Obsidian run in an isolated environment. As such, they will not have access to any of your installed programs. If you are on Linux, make sure to install the `.deb` version of Obsidian. If your distro isn't compatible with `.deb` files, you may see issues.
- Missing when `run` button after switching the theme: Try to close and reopen your notes and wait for a few minutes. It seems like obsidian doesn't call the postprocessors after the theme switch.
- Pre- / Post-blocks may not be executed if the file contains duplicate code blocks.
- In Python, Embed Plots may not be off while Notebook Mode is on
## Future Work π
- Error warning when the execution fails (e.g. when python isn't installed)
- Test if this plugin works in combination with dataview.
## Contribution π€
All contributions are welcome. Just create a merge request or email me: tim.wibiral(at)uni-ulm.de
The bullet points in Future Work are a good starting point if you want to help.
## Contributors β₯
<a href="https://github.com/twibiral/obsidian-execute-code/graphs/contributors">
<img alt="List of contributors to this project." src="https://contrib.rocks/image?repo=twibiral/obsidian-execute-code" />
</a>
<sub>Made with [contrib.rocks](https://contrib.rocks).</sub>