-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
code-reaper08
committed
Mar 25, 2021
1 parent
107f3a8
commit a897a8c
Showing
8 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# v 1.0.0 | ||
|
||
**Date** : Feb 10 2021 | ||
|
||
_**note :** This is the Initial release of MarkdownAssistant._ | ||
|
||
**Fixes** : none | ||
|
||
------- | ||
------- | ||
------- | ||
|
||
# v 1.0.1 | ||
|
||
**Date** : Mar 01 2021 | ||
|
||
**Fixes** : | ||
|
||
+ Missing Scope: [#1](https://github.com/code-reaper08/MarkdownAssistant/issues/1) Scopes for all snippets are fixed so as, they only pop up in Markdown files. | ||
|
||
+ Descriptions altered to act as conveying labels. | ||
|
||
[#2](https://github.com/code-reaper08/MarkdownAssistant/issues/2) Descriptions are made much shorter and conveying. | ||
|
||
------- | ||
------- | ||
------- | ||
|
||
# v 1.0.2 | ||
|
||
**Date** : Mar 25 2021 | ||
|
||
_**note :** Thank you folks for making it **trending** and for getting me up by **306** download (at the time of writing this.). **Hooray** !!_ | ||
|
||
<div align="center"> | ||
|
||
## Let's make it awesome. | ||
|
||
</div> | ||
|
||
**Fixes** : none | ||
|
||
**Features** : For this awesome occassion , I am introducing **6 more snippets** for you to enjoy. I present you the below , | ||
|
||
1. **Image related snippets**: | ||
+ cenimg --> Which gives a centered image. | ||
+ rimg --> Which gives a Right aligned image. | ||
+ limg --> Which gives a Left aligned image. | ||
|
||
2. **Table related snippets**: | ||
+ t14 --> Which gives a 1x4 table. | ||
+ t24 --> Which gives a 2x4 table. | ||
+ t34 --> Which gives a 3x4 table. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${4:1,4} | | ||
| ------------- |:-------------:| -------| -----:| | ||
]]></content> | ||
<tabTrigger>mdt14</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown Table 1X4</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${3:1,3} | | ||
| ------------- |:-------------:| -------| -----:| | ||
| ${4:2,1} |${5:2,2} | ${6:2,3} | ${6:2,3} | | ||
]]></content> | ||
<tabTrigger>mdt24</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown Table 2X4</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${3:1,3} | | ||
| ------------- |:-------------:| -------| -----:| | ||
| ${4:2,1} |${5:2,2} | ${6:2,3} | ${6:2,3} | | ||
| ${7:3,1} | ${8:3,2} | ${9:3,3} | ${9:3,3} | | ||
]]></content> | ||
<tabTrigger>mdt34</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown Table 3X4</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<div align="center"> | ||
![${1:alt text}](${2:Image link} "${3:Hover Text}") | ||
</div> | ||
]]></content> | ||
<tabTrigger>cenimg</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown centered Image</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<div align="left"> | ||
![${1:alt text}](${2:Image link} "${3:Hover Text}") | ||
</div> | ||
]]></content> | ||
<tabTrigger>limg</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown left aligned Image</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
<div align="right"> | ||
![${1:alt text}](${2:Image link} "${3:Hover Text}") | ||
</div> | ||
]]></content> | ||
<tabTrigger>rimg</tabTrigger> | ||
<scope>text.html.markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown right aligned Image</description> | ||
</snippet> |