-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from arthurkatz/master
adding missing mjml snippets
- Loading branch information
Showing
17 changed files
with
106 additions
and
13 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,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-all $1 />]]></content> | ||
<tabTrigger>mjall</tabTrigger> | ||
<description>MJML - MJML All</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-attributes> | ||
$1 | ||
</mj-attributes>]]></content> | ||
<tabTrigger>mjattributes</tabTrigger> | ||
<description>MJML - MJML Attributes</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-class name="$1" $2/>]]></content> | ||
<tabTrigger>mjclass</tabTrigger> | ||
<description>MJML - MJML Class</description> | ||
<scope>text.mjml.basic</scope> | ||
</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
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,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-divider $1 />]]></content> | ||
<tabTrigger>mjdivider</tabTrigger> | ||
<description>MJML - MJML Divider</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-font name="$1" href="$2" />]]></content> | ||
<tabTrigger>mjfont</tabTrigger> | ||
<description>MJML - MJML Font</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-group> | ||
$1 | ||
</mj-group>]]></content> | ||
<tabTrigger>mjgroup</tabTrigger> | ||
<description>MJML - MJML Group</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-head> | ||
$1 | ||
</mj-head>]]></content> | ||
<tabTrigger>mjhead</tabTrigger> | ||
<description>MJML - MJML Head</description> | ||
<scope>text.mjml.basic</scope> | ||
</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[<mj-hero> | ||
<mj-hero-content> | ||
$1 | ||
</mj-hero-content> | ||
</mj-hero>]]></content> | ||
<tabTrigger>mjhero</tabTrigger> | ||
<description>MJML - MJML Hero</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-html> | ||
$1 | ||
</mj-html>]]></content> | ||
<tabTrigger>mjhtml</tabTrigger> | ||
<description>MJML - MJML Html</description> | ||
<scope>text.mjml.basic</scope> | ||
</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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-image> | ||
$1 | ||
</mj-image>]]></content> | ||
<content><![CDATA[<mj-image src="$1" />]]></content> | ||
<tabTrigger>mjimage</tabTrigger> | ||
<description>MJML - MJML image</description> | ||
<description>MJML - MJML Image</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,6 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-include path="$1" />]]></content> | ||
<tabTrigger>mjinclude</tabTrigger> | ||
<description>MJML - MJML Include</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,7 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-location> | ||
adress="$1" />]]></content> | ||
<tabTrigger>mjlocation</tabTrigger> | ||
<description>MJML - MJML Location</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-raw> | ||
$1 | ||
</mj-raw>]]></content> | ||
<tabTrigger>mjraw</tabTrigger> | ||
<description>MJML - MJML Raw</description> | ||
<scope>text.mjml.basic</scope> | ||
</snippet> |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-style> | ||
$1 | ||
</mj-style>]]></content> | ||
<tabTrigger>mjstyle</tabTrigger> | ||
<description>MJML - MJML Style</description> | ||
<scope>text.mjml.basic</scope> | ||
</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,8 @@ | ||
<snippet> | ||
<content><![CDATA[<mj-title> | ||
$1 | ||
</mj-title>]]></content> | ||
<tabTrigger>mjtitle</tabTrigger> | ||
<description>MJML - MJML Title</description> | ||
<scope>text.mjml.basic</scope> | ||
</snippet> |