Skip to content

Commit 12e8f59

Browse files
committed
update: html snippets
1 parent 1354e94 commit 12e8f59

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

html/README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Structure
44

5-
### [htmldoc] html document
5+
### [h-doc] html document
66

77
```html
88
<!DOCTYPE html>
@@ -24,7 +24,7 @@
2424
</html>
2525
```
2626

27-
### [htmlhead] head tags
27+
### [h-head-tags] head tags
2828

2929
```html
3030
<meta name="format-detection" content="telephone=no">
@@ -61,3 +61,13 @@
6161
<!-- canonical -->
6262
<link rel="canonical" href="${4:Url}">
6363
```
64+
65+
### [hs-sne] http://www.schema.org/SiteNavigationElement
66+
67+
```html
68+
<ul itemscope="itemscope" itemtype="http://www.schema.org/SiteNavigationElement">
69+
<li itemprop="name">
70+
<a itemprop="url" href="${1:#}">$2</a>
71+
</li>
72+
</ul>
73+
```

html/html-document.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
</body>
1919
</html>
2020
]]></content>
21-
<tabTrigger>htmldoc</tabTrigger>
21+
<tabTrigger>h-doc</tabTrigger>
2222
<description>Basic HTML document</description>
2323
</snippet>

html/html-head.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
<!-- canonical -->
3535
<link rel="canonical" href="${4:Url}">
3636
]]></content>
37-
<tabTrigger>htmlhead</tabTrigger>
37+
<tabTrigger>h-head-tags</tabTrigger>
3838
<description>Head tags</description>
3939
</snippet>

0 commit comments

Comments
 (0)