Skip to content

Commit

Permalink
fix : extra space before unordered list items
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenpuglia committed Jun 22, 2015
1 parent 5ca2cc1 commit 1aececb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 25 deletions.
47 changes: 25 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ Long tags like `blockquote` are shortened for power use.
##List of Tab Triggers

```
mh1 // Heading 1
mh2 // Heading 2
mh3 // Heading 3
mh4 // Heading 4
mh5 // Heading 5
mh6 // Heading 6
mh1 // Heading 1
mh2 // Heading 2
mh3 // Heading 3
mh4 // Heading 4
mh5 // Heading 5
mh6 // Heading 6
```
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
##### Heading 5
###### Heading 6
```
mb // Bold
mi // Italic
mbq // Blockquote
mstrike // Strikeout
mhr // Horizontal Rule, Divider
mb // Bold
mi // Italic
mbq // Blockquote
mstrike // Strikeout
mhr // Horizontal Rule, Divider
```
**Bold Text**

Expand All @@ -65,35 +65,38 @@ mhr // Horizontal Rule, Divider
---

```
mcode // Inline Code
mpre // Code Block with language based highlighting.
mcode // Inline Code
mpre // Code Block with language based highlighting.
```
`Inline Code Snippet`

```javascript
var message = "Code Block";
alert( message );
```

```
ma // Anchor
mimg // Image
ma // Anchor
mimg // Image
```
[Link Title](Link)

![Github Logo](https://wasin.io/wp-content/uploads/2015/05/showimage.png)

```
mol // Ordered List
mul // Unordered List
mtable // Table
mol // Ordered List
mul // Unordered List
mtable // Table
```

1. First Item
2. Second Item
3. Third Item

- I
- Love
- Markdown

- I
- Love
- Markdown

| Column 1 | Column 2 |
| ------------- | ------------- |
Expand Down
6 changes: 3 additions & 3 deletions mul.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<snippet>
<content><![CDATA[
- ${1: I}
- ${2: Love}
- ${3: Markdown}
- ${1:I}
- ${2:Love}
- ${3:Markdown}
${0}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
Expand Down

0 comments on commit 1aececb

Please sign in to comment.