We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dad800 commit e465e41Copy full SHA for e465e41
README.md
@@ -4,10 +4,18 @@ This plugin for Obsidian allows you to run JavaScript from within your notes usi
4
5
## Usage
6
7
-Start by creating a code block with the `js-engine` plugin.
+Start by creating a code block with `js-engine` as the code block language.
8
Inside the code block you can write what ever JavaScript code that you want.
9
The plugin will run the JavaScript and render the returned value in place of the code block.
10
11
+````md
12
+## This is a Note in Obsidian
13
+
14
+```js-engine
15
+return engine.markdown.create('*test*');
16
+```
17
+````
18
19
## API Docs
20
21
Docs are available [here](https://www.moritzjung.dev/obsidian-js-engine-plugin-docs/).
0 commit comments