Skip to content

Commit 279811f

Browse files
Updates
1 parent 3d45038 commit 279811f

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

docs/_layouts/default.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,12 @@ <h1>{{ page.title }}</h1>
6565
<li><a href="api.html">API</a></li>
6666
</ul>
6767
</nav>
68-
<section>
68+
<article>
6969
{{ content }}
7070
{% 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>
7372
{% endif %}
74-
</section>
73+
</article>
7574
</main>
7675
<footer>
7776
<ul>

docs/assets/css/style.scss

+15-6
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ a {
5555
color: var(--link-color);
5656
}
5757

58-
section > p {
58+
article > p {
5959
padding-bottom: 1.5em;
6060
}
6161

@@ -197,32 +197,41 @@ main {
197197
padding: .3em 0 0 1em;
198198
}
199199

200-
main > section {
200+
article {
201201
margin: 0 1em 0 1.5em;
202202
padding: 1em 0;
203203
width: 100%;
204204
position: relative;
205205
min-width: 0; // needed for <pre> not to be too wide
206206
}
207207

208-
main .meta {
208+
article .meta {
209209
font-size: .8em;
210210
opacity: 0.7;
211211
position: absolute;
212212
bottom: 1em;
213213
right: 0
214214
}
215215

216-
main > section ol,
217-
main > section ul {
216+
article ol,
217+
article ul {
218218
padding-left: 2.5em;
219219
margin-bottom: 1em;
220220
}
221221

222-
main > section li::marker {
222+
article li::marker {
223223
font-weight: bold;
224224
}
225225

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+
226235
footer {
227236
padding: 1em 0;
228237
text-align: center;

docs/walkthroughs/menus-buttons-commands.md

+4
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@ protected override async Task InitializeAsync(CancellationToken cancellationToke
5454
```
5555

5656
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)

docs/walkthroughs/settings-and-options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Settings and options
2+
title: Settings & options
33
description: A walkthrough of how to handle custom settings and options.
44
date: 2021-5-25
55
---

0 commit comments

Comments
 (0)