Fixed markdown snippets.

This commit is contained in:
crazymaster 2013-05-20 20:57:26 +09:00
parent 12bf6b429d
commit f9e05a1ec6

View File

@ -1,52 +1,67 @@
snippet link snippet link
abbr [link][] abbr [link][]
options word
[${1:#:link_id}][]${2} [${1:#:link_id}][]${2}
snippet linkid snippet linkid
abbr [link][id] abbr [link][id]
options word
[${1:#:link}][${2:id}]${3} [${1:#:link}][${2:id}]${3}
snippet linkurl snippet linkurl
abbr [link](url) abbr [link](url)
options word
[${1:#:link}](http://${2:#:url})${3} [${1:#:link}](http://${2:#:url})${3}
snippet linkemail snippet linkemail
abbr [link](email) abbr [link](email)
options word
[${1:#:link}](mailto:${2:#:email})${3} [${1:#:link}](mailto:${2:#:email})${3}
snippet linkurltitle snippet linkurltitle
abbr [link](url "title") abbr [link](url "title")
options word
[${1:#:link}](${2:#:url} "${3:#:title}")${4} [${1:#:link}](${2:#:url} "${3:#:title}")${4}
snippet idurl snippet idurl
abbr [id]: url "title" abbr [id]: url "title"
options word
[${1:#:id}]: http://${2:#:url} "${3:#:title}" [${1:#:id}]: http://${2:#:url} "${3:#:title}"
snippet idemail snippet idemail
abbr [id]: email "title" abbr [id]: email "title"
options word
[${1:#:id}]: mailto:${2:#:url} "${3:#:title}" [${1:#:id}]: mailto:${2:#:url} "${3:#:title}"
snippet altid snippet altid
abbr ![alt][id] abbr ![alt][id]
options word
![${1:#:alt}][${2:#:id}]${3} ![${1:#:alt}][${2:#:id}]${3}
snippet alturl snippet alturl
abbr ![alt](url) abbr ![alt](url)
options word
![${1:#:alt}](${2:#:url})${3} ![${1:#:alt}](${2:#:url})${3}
snippet alturltitle snippet alturltitle
abbr ![alt](url "title") abbr ![alt](url "title")
options word
![${1:#:alt}](${2:#:url} "${3:#:title}")${4} ![${1:#:alt}](${2:#:url} "${3:#:title}")${4}
snippet emphasis1 snippet emphasis1
abbr *emphasis* abbr *emphasis*
options word
*${1}*${2} *${1}*${2}
snippet emphasis2 snippet emphasis2
abbr _emphasis_ abbr _emphasis_
options word
_${1}_${2} _${1}_${2}
snippet strong1 snippet strong1
abbr **strong** abbr **strong**
options word
**${1}**${2} **${1}**${2}
snippet strong2 snippet strong2
abbr __strong__ abbr __strong__
options word
__${1}__${2} __${1}__${2}
snippet code snippet code
abbr `code` abbr `code`
options word
\`${1}\`${2} \`${1}\`${2}