https://github.com/edheltzel/vscode-jekyll-snippets
🧪 Jekyll snippets for Visual Studio Code
https://github.com/edheltzel/vscode-jekyll-snippets
jekyll jekyll-snippets visual-studio-code vscode vscode-extension vscode-snippets
Last synced: 2 months ago
JSON representation
🧪 Jekyll snippets for Visual Studio Code
- Host: GitHub
- URL: https://github.com/edheltzel/vscode-jekyll-snippets
- Owner: edheltzel
- License: mit
- Created: 2016-12-30T20:02:13.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-19T16:08:05.000Z (over 5 years ago)
- Last Synced: 2025-09-07T16:51:35.905Z (3 months ago)
- Topics: jekyll, jekyll-snippets, visual-studio-code, vscode, vscode-extension, vscode-snippets
- Homepage: https://marketplace.visualstudio.com/items?itemName=ginfuru.vscode-jekyll-snippets
- Size: 85.9 KB
- Stars: 14
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
#
snippets package for Visual Studio Code.
[](https://github.com/ginfuru/vscode-jekyll-snippets/releases)
Jekyll snippets for Visual Studio Code. This is a combination of both the the [sublime-jekyll package](https://github.com/23maverick23/sublime-jekyll)
by [@23maverick23.](https://github.com/23maverick23) and the [atom-jekyll package](https://atom.io/packages/jekyll-snippets) by [@jasonhodges](https://github.com/jasonhodges).
## HTML, Jekyll Lang and Markdown Support
* **Support for markdown has also been added**, which was referenced in issue [#7](https://github.com/ginfuru/vscode-jekyll-snippets/issues/7) by [@Haroenv](https://github.com/Haroenv). I haven't found a markdown grammer file that highlights liquid syntax.
If you want to have snippets suggestions as you type, you'll need to add the below to your global settings or workspace settings:
```
{
"[markdown]": {
"editor.quickSuggestions": true
}
}
```
Alternatively, you can also use the keyboard trigger `ctrl+ space`
* **Support for html has been added**, due to some odd behavior from other extenions I use which doesn't provide support for `liquid` file extension.
## Roadmap & Contributing
I do have plans to continue adding more snippets, based on the [Jekyll Tips Cheat Sheet](http://jekyll.tips/jekyll-cheat-sheet/), but **PLEASE** feel free to contribute and/or file issues with requests. If you do want to contribute please make sure to create a feature branch and when creating a pull request to rebase or squash prior to.
> ##### Thanks again to [@23maverick23.](https://github.com/23maverick23) and [@jasonhodges](https://github.com/jasonhodges)