Skip to content

Commit a897a8c

Browse files
author
code-reaper08
committed
Added files for v 1.0.2
1 parent 107f3a8 commit a897a8c

8 files changed

+127
-0
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# v 1.0.0
2+
3+
**Date** : Feb 10 2021
4+
5+
_**note :** This is the Initial release of MarkdownAssistant._
6+
7+
**Fixes** : none
8+
9+
-------
10+
-------
11+
-------
12+
13+
# v 1.0.1
14+
15+
**Date** : Mar 01 2021
16+
17+
**Fixes** :
18+
19+
+ 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.
20+
21+
+ Descriptions altered to act as conveying labels.
22+
23+
[#2](https://github.com/code-reaper08/MarkdownAssistant/issues/2) Descriptions are made much shorter and conveying.
24+
25+
-------
26+
-------
27+
-------
28+
29+
# v 1.0.2
30+
31+
**Date** : Mar 25 2021
32+
33+
_**note :** Thank you folks for making it **trending** and for getting me up by **306** download (at the time of writing this.). **Hooray** !!_
34+
35+
<div align="center">
36+
37+
## Let's make it awesome.
38+
39+
</div>
40+
41+
**Fixes** : none
42+
43+
**Features** : For this awesome occassion , I am introducing **6 more snippets** for you to enjoy. I present you the below ,
44+
45+
1. **Image related snippets**:
46+
+ cenimg --> Which gives a centered image.
47+
+ rimg --> Which gives a Right aligned image.
48+
+ limg --> Which gives a Left aligned image.
49+
50+
2. **Table related snippets**:
51+
+ t14 --> Which gives a 1x4 table.
52+
+ t24 --> Which gives a 2x4 table.
53+
+ t34 --> Which gives a 3x4 table.
54+
55+

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,24 @@ To find out where the Packages directory is, you can go to _Preferences_ and _Br
5858
| mdcs | Creates a single line code|
5959
| mdcb | Creates a code block|
6060
| mdimg | Creates a image with hover text|
61+
| cenimg | centered Image with hover text|
62+
| limg | Left aligned Image with hover text|
63+
| rimg | Right aligned Image with hover text|
6164
| mdlnkt | Creates a link with title|
6265
| mdmailto | Creates a mailto link for easy mailing |
6366
| mdol | Creates an ordered list|
6467
| mdul | Creates an unordered list|
6568
| mdt12 | Creates a 1X2 table|
6669
| mdt13 | Creates a 1X3 table|
70+
| mdt14 | Creates a 1X4 table|
6771
| mdt21 | Creates a 2X1 table|
6872
| mdt22 | Creates a 2X2 table|
6973
| mdt23 | Creates a 2X3 table|
74+
| mdt24 | Creates a 2X4 table|
7075
| mdt31 | Creates a 3X1 table|
7176
| mdt32 | Creates a 3X2 table|
7277
| mdt33 | Creates a 3X3 table|
78+
| mdt34 | Creates a 3X3 table|
7379
| mdcic | Creates a checklist item(checked)|
7480
| mdciu | Creates a checklist item(Unchecked)|
7581
| mdhl | Creates a Horizontal line seperator|

Tables/t14.sublime-snippet

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<snippet>
2+
<content><![CDATA[
3+
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${4:1,4} |
4+
| ------------- |:-------------:| -------| -----:|
5+
]]></content>
6+
<tabTrigger>mdt14</tabTrigger>
7+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
8+
<description>Markdown Table 1X4</description>
9+
</snippet>

Tables/t24.sublime-snippet

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<snippet>
2+
<content><![CDATA[
3+
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${3:1,3} |
4+
| ------------- |:-------------:| -------| -----:|
5+
| ${4:2,1} |${5:2,2} | ${6:2,3} | ${6:2,3} |
6+
]]></content>
7+
<tabTrigger>mdt24</tabTrigger>
8+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
9+
<description>Markdown Table 2X4</description>
10+
</snippet>

Tables/t34.sublime-snippet

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<snippet>
2+
<content><![CDATA[
3+
| ${1:1,1} | ${2:1,2} | ${3:1,3} | ${3:1,3} |
4+
| ------------- |:-------------:| -------| -----:|
5+
| ${4:2,1} |${5:2,2} | ${6:2,3} | ${6:2,3} |
6+
| ${7:3,1} | ${8:3,2} | ${9:3,3} | ${9:3,3} |
7+
]]></content>
8+
<tabTrigger>mdt34</tabTrigger>
9+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
10+
<description>Markdown Table 3X4</description>
11+
</snippet>

img/cenimg.sublime-snippet

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<div align="center">
4+
5+
![${1:alt text}](${2:Image link} "${3:Hover Text}")
6+
7+
</div>
8+
]]></content>
9+
<tabTrigger>cenimg</tabTrigger>
10+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
11+
<description>Markdown centered Image</description>
12+
</snippet>

img/limg.sublime-snippet

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<div align="left">
4+
5+
![${1:alt text}](${2:Image link} "${3:Hover Text}")
6+
7+
</div>
8+
]]></content>
9+
<tabTrigger>limg</tabTrigger>
10+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
11+
<description>Markdown left aligned Image</description>
12+
</snippet>

img/rimg.sublime-snippet

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<div align="right">
4+
5+
![${1:alt text}](${2:Image link} "${3:Hover Text}")
6+
7+
</div>
8+
]]></content>
9+
<tabTrigger>rimg</tabTrigger>
10+
<scope>text.html.markdown - meta.code-fence - markup.raw</scope>
11+
<description>Markdown right aligned Image</description>
12+
</snippet>

0 commit comments

Comments
 (0)