File tree 4 files changed +23
-11
lines changed
4 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -65,13 +65,12 @@ <h1>{{ page.title }}</h1>
65
65
< li > < a href ="api.html "> API</ a > </ li >
66
66
</ ul >
67
67
</ nav >
68
- < section >
68
+ < article >
69
69
{{ content }}
70
70
{% if page.date %}
71
- < div class ="meta "> Last updated: < time datetime ="{{ page.date }} "> {{ page.date | date_to_string: "ordinal",
72
- "US" }}</ time > </ div >
71
+ < div class ="meta "> Last updated: < time datetime ="{{ page.date }} "> {{ page.date | date_to_string: "ordinal", "US" }}</ time > </ div >
73
72
{% endif %}
74
- </ section >
73
+ </ article >
75
74
</ main >
76
75
< footer >
77
76
< ul >
Original file line number Diff line number Diff line change 55
55
color : var (--link-color );
56
56
}
57
57
58
- section > p {
58
+ article > p {
59
59
padding-bottom : 1.5em ;
60
60
}
61
61
@@ -197,32 +197,41 @@ main {
197
197
padding : .3em 0 0 1em ;
198
198
}
199
199
200
- main > section {
200
+ article {
201
201
margin : 0 1em 0 1.5em ;
202
202
padding : 1em 0 ;
203
203
width : 100% ;
204
204
position : relative ;
205
205
min-width : 0 ; // needed for <pre> not to be too wide
206
206
}
207
207
208
- main .meta {
208
+ article .meta {
209
209
font-size : .8em ;
210
210
opacity : 0.7 ;
211
211
position : absolute ;
212
212
bottom : 1em ;
213
213
right : 0
214
214
}
215
215
216
- main > section ol ,
217
- main > section ul {
216
+ article ol ,
217
+ article ul {
218
218
padding-left : 2.5em ;
219
219
margin-bottom : 1em ;
220
220
}
221
221
222
- main > section li ::marker {
222
+ article li ::marker {
223
223
font-weight : bold ;
224
224
}
225
225
226
+ article a [href ^= " http" ]:after {
227
+ content : " 🡽" ;
228
+ text-decoration : none ;
229
+ font-size : .7em ;
230
+ position : relative ;
231
+ top : -5px ;
232
+ left : 2px ;
233
+ }
234
+
226
235
footer {
227
236
padding : 1em 0 ;
228
237
text-align : center ;
Original file line number Diff line number Diff line change @@ -54,3 +54,7 @@ protected override async Task InitializeAsync(CancellationToken cancellationToke
54
54
```
55
55
56
56
The command Guid and ID must match the guid/id pair from ` Button ` element in the .vsct file
57
+
58
+ ## Additional resources
59
+
60
+ * [ Visual Studio Command Table (.Vsct) Files] ( https://docs.microsoft.com/visualstudio/extensibility/internals/visual-studio-command-table-dot-vsct-files )
Original file line number Diff line number Diff line change 1
1
---
2
- title : Settings and options
2
+ title : Settings & options
3
3
description : A walkthrough of how to handle custom settings and options.
4
4
date : 2021-5-25
5
5
---
You can’t perform that action at this time.
0 commit comments