Let the short version of links not have title

and create versions with title with "

Rationale: it is more common to have links without title in Markdown.
This commit is contained in:
Ciro Santilli 2014-11-20 19:06:47 +01:00
parent 8a1de6157a
commit e3ea6460fe

View File

@ -3,23 +3,43 @@
# Includes octopress (http://octopress.org/) snippets
snippet [
[${1:text}](http://${2:address} "${0:title}")
[${1:text}](http://${2:address})
snippet [*
[${1:link}](${2:`@*`})
snippet ["
[${1:text}](http://${2:address} "${0:title}")
snippet ["*
[${1:link}](${2:`@*`} "${3:title}")
snippet [:
[${1:id}]: http://${2:url} "${0:title}"
[${1:id}]: http://${2:url}
snippet [:*
[${1:id}]: ${2:`@*`}
snippet [:"
[${1:id}]: http://${2:url} "${0:title}"
snippet [:"*
[${1:id}]: ${2:`@*`} "${0:title}"
snippet ![
![${1:alttext}](${2:/images/image.jpg} "${0:title}")
![${1:alttext}](${2:/images/image.jpg})
snippet ![*
![${1:alt}](${2:`@*`})
snippet !["
![${1:alttext}](${2:/images/image.jpg} "${0:title}")
snippet !["*
![${1:alt}](${2:`@*`} "${3:title}")
snippet ![:
![${1:id}]: ${2:url} "${0:title}"
![${1:id}]: ${2:url}
snippet ![:*
![${1:id}]: ${2:`@*`}
snippet ![:"
![${1:id}]: ${2:url} "${0:title}"
snippet ![:"*
![${1:id}]: ${2:`@*`} "${0:title}"
snippet ===