Skip to content

Instantly share code, notes, and snippets.

@aheil
Last active November 22, 2022 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aheil/c5ec42ae8c397d5077fa78b686acac19 to your computer and use it in GitHub Desktop.
Save aheil/c5ec42ae8c397d5077fa78b686acac19 to your computer and use it in GitHub Desktop.
LiaScript Code Snippets for Visual Studio Code
{
// LiaScript Code Snippets for Visual Studio Code
//
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
"LiaScript Section": {
"scope": "markdown,html",
"prefix": "liasec",
"body": [
"{{$TM_SELECTED_TEXT}}",
"************************************",
"",
"************************************"
],
"description": "Creates a LiaScript "
},
"liawidth": {
"scope": "markdown,html",
"prefix": "liawidth",
"body": "<!-- style=\"width: $TM_SELECTED_TEXT%;\" -->",
"description": "Lia specific style for image with, to be replacved behind the image markdown."
},
"liawidth": {
"scope": "markdown,html",
"prefix": "lia-tbl-none",
"body": "<!-- data-type=\"none\" -->",
"description": "Prevent any kind of visualization."
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment