Parse Markdown code blocks into VSCode snippets.
- multiple files.
- multiple snippets per file.
- multiple languages per file allowed. See VSCode language identifiers.
## My Cool Snippet
```python pre="hworld" desc="insert hello world"
print("Hello World")
```
IMPORTANT:
The language identifier is needed. See VSCode language identifiers.
The pre, desc tag are optional.
1) Set this setting in settings.json:
markdownSnippets.markdownFolder
: The path to the folder with your markdown files.
2) Run command Save Snippets from command palette.
- Snippets are also exported when VSCode starts up.
Initial release.