mirror of
https://github.com/meld-cp/obsidian-build.git
synced 2026-07-22 07:30:25 +00:00
docs
This commit is contained in:
parent
90fec7a8ed
commit
02ec84905a
1 changed files with 18 additions and 0 deletions
18
README.md
18
README.md
|
|
@ -2,6 +2,24 @@
|
|||
|
||||
Write and execute JavaScript in code blocks to render templates, query DataView and create dynamic notes.
|
||||
|
||||
Basically, turn a note into a small, simple, runnable thing.
|
||||
|
||||
## Quick Start
|
||||
- Install and enable the plugin
|
||||
- Paste the Markdown below into a new note.
|
||||
- If you are in Reading or Live Preview modes, click the 'Hi' button. If you are in Source mode, choose `Meld Build: Run` from the command pallette.
|
||||
````md
|
||||
|
||||
```meld-build-toolbar
|
||||
run = Hi
|
||||
```
|
||||
|
||||
```js meld-build
|
||||
const ans = await $.ui.ask('What should I call you?');
|
||||
await $.ui.message( `From this day forth you shall be known as ${ans}` );
|
||||
```
|
||||
````
|
||||
|
||||
## Documentaion
|
||||
|
||||
- [User Guide](/docs/user-guide.md)
|
||||
|
|
|
|||
Loading…
Reference in a new issue