Markdown example of desired snippet/keybinding.
- Code: Select all
{
"keys": ["alt+a"], "command": "insert_snippet",
"args": {"contents": "[${1:$SELECTION}](${2:$SELECTION })"},
"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown"}]
}
..gives
- Code: Select all
[SublimeText](http://www.sublimetext.com)
The problem is that Textile syntax for link contains quotes which conflicts with keybinding settings file
- Code: Select all
"SublimeText":http://www.sublimetext.com
I'm looking for some input regarding this, i'd really like to have this shortcut possible somehow.
Thanks