mirror of https://github.com/status-im/codimd.git
Update docs and textcomplete rules for image syntax with size specified
This commit is contained in:
parent
56840e784f
commit
5c861fd51e
|
@ -460,6 +460,8 @@ With a reference later in the document defining the URL location:
|
||||||
|
|
||||||
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
|
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
|
||||||
|
|
||||||
|
![Minion](https://octodex.github.com/images/minion.png =200x200)
|
||||||
|
Show the image With given size
|
||||||
|
|
||||||
### Footnotes
|
### Footnotes
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,10 @@ var supportReferrals = [
|
||||||
text: '![image alt](url "title")',
|
text: '![image alt](url "title")',
|
||||||
search: '![]()'
|
search: '![]()'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: '![image alt](url "title" =WidthxHeight)',
|
||||||
|
search: '![]()'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: '[TOC]',
|
text: '[TOC]',
|
||||||
search: '[]'
|
search: '[]'
|
||||||
|
|
Loading…
Reference in New Issue