Skip to content

Commit a21e0aa

Browse files
committed
update: readme with new snippets
1 parent a81bd9e commit a21e0aa

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ You can see all installed snippets in `Tools > Snippets...`, in the sublime text
4343
* (jQuery) [https://api.jquery.com/](https://api.jquery.com/)
4444
* (jQuery Boilerplate)[https://jqueryboilerplate.com/](https://jqueryboilerplate.com/)
4545
* (JSDuck) [https://github.com/senchalabs/jsduck](https://github.com/senchalabs/jsduck)
46+
* (idiomatic CSS) [https://github.com/necolas/idiomatic-css](https://github.com/necolas/idiomatic-css)
4647

4748
## Contributing
4849

snippets/comment/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Comment Snippets
22

33
- [HTML](html/)
4+
- Basic
5+
- Block
6+
- Conditional
47
- End Tag
58
- [CSS](css/)
69
- Basic

snippets/comment/html/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
Prefix `xh*`
44

5+
### [xhbasic] basic
6+
7+
```html
8+
<!-- ${1:div} -->
9+
```
10+
11+
### [xhblock] block
12+
13+
```html
14+
<!-- ${1:title}
15+
${2:description}
16+
-->
17+
```
18+
19+
### [xhcond] conditional
20+
21+
```html
22+
<!--[if ${1:IE} ${2:8}]>
23+
${3}
24+
<![endif]-->
25+
```
26+
527
### [xhend] end tag
628

729
```html

0 commit comments

Comments
 (0)