This Obsidian.md plugin will render Amazon State Language script into state machine graph.
Download zip archive from GitHub releases page and extract it into <vault>/.obsidian/plugins
directory.
Add a code block with "asl" type:
```asl
{
"StartAt": "HelloWorld",
"States": {
"HelloWorld": {
"Type": "Pass",
"Result": "Hello World!",
"End": true
}
}
}
```
Open the preview mode:
Hold CTRL
when scrolling in order to control the zoom level:
This plugin mimic the AWS Toolkit for Visual Studio Code behaviour using the same "GrapheneStateGraph" library.