Skip to content

Commit

Permalink
Added files for v 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
code-reaper08 committed Mar 25, 2021
1 parent 107f3a8 commit a897a8c
Show file tree
Hide file tree
Showing 8 changed files with 127 additions and 0 deletions.
55 changes: 55 additions & 0 deletions CHANGELOG.md
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.


6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,24 @@ To find out where the Packages directory is, you can go to _Preferences_ and _Br
| mdcs | Creates a single line code|
| mdcb | Creates a code block|
| mdimg | Creates a image with hover text|
| cenimg | centered Image with hover text|
| limg | Left aligned Image with hover text|
| rimg | Right aligned Image with hover text|
| mdlnkt | Creates a link with title|
| mdmailto | Creates a mailto link for easy mailing |
| mdol | Creates an ordered list|
| mdul | Creates an unordered list|
| mdt12 | Creates a 1X2 table|
| mdt13 | Creates a 1X3 table|
| mdt14 | Creates a 1X4 table|
| mdt21 | Creates a 2X1 table|
| mdt22 | Creates a 2X2 table|
| mdt23 | Creates a 2X3 table|
| mdt24 | Creates a 2X4 table|
| mdt31 | Creates a 3X1 table|
| mdt32 | Creates a 3X2 table|
| mdt33 | Creates a 3X3 table|
| mdt34 | Creates a 3X3 table|
| mdcic | Creates a checklist item(checked)|
| mdciu | Creates a checklist item(Unchecked)|
| mdhl | Creates a Horizontal line seperator|
Expand Down
9 changes: 9 additions & 0 deletions Tables/t14.sublime-snippet
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>
10 changes: 10 additions & 0 deletions Tables/t24.sublime-snippet
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>
11 changes: 11 additions & 0 deletions Tables/t34.sublime-snippet
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>
12 changes: 12 additions & 0 deletions img/cenimg.sublime-snippet
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>
12 changes: 12 additions & 0 deletions img/limg.sublime-snippet
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>
12 changes: 12 additions & 0 deletions img/rimg.sublime-snippet
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>

0 comments on commit a897a8c

Please sign in to comment.