Skip to content

Latest commit

 

History

History
67 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

67 lines (35 loc) · 1.15 KB

markdown-snippets README

Features

Parse Markdown code blocks into VSCode snippets.



Snippet format


## 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.



How to use

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.


Release Notes

1.0.0

Initial release.



More information