Skip to content

Commit 0f25a8d

Browse files
chore: remove spaces between triple backticks and the language (#1019)
1 parent 4c7c1e5 commit 0f25a8d

File tree

3 files changed

+90
-90
lines changed

3 files changed

+90
-90
lines changed

src/guide/a11y-basics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You should add a link at the top of each page that goes directly to the main con
1212

1313
Typically this is done on the top of `App.vue` as it will be the first focusable element on all your pages:
1414

15-
``` html
15+
```html
1616
<ul class="skip-links">
1717
<li>
1818
<a href="#main" ref="skipLink">Skip to main content</a>
@@ -22,7 +22,7 @@ Typically this is done on the top of `App.vue` as it will be the first focusable
2222

2323
To hide the link unless it is focused, you can add the following style:
2424

25-
``` css
25+
```css
2626
.skipLink {
2727
white-space: nowrap;
2828
margin: 1em auto;
@@ -42,7 +42,7 @@ To hide the link unless it is focused, you can add the following style:
4242

4343
Once a user changes route, bring focus back to the skip link. This can be achieved by calling focus to the `ref` provided below:
4444

45-
``` vue
45+
```vue
4646
<script>
4747
export default {
4848
watch: {

src/guide/component-edge-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ However, if you've ruled out the above and find yourself in this extremely rare
2020

2121
Rendering plain HTML elements is very fast in Vue, but sometimes you might have a component that contains **a lot** of static content. In these cases, you can ensure that it's only evaluated once and then cached by adding the `v-once` directive to the root element, like this:
2222

23-
``` js
23+
```js
2424
app.component('terms-of-service', {
2525
template: `
2626
<div v-once>

0 commit comments

Comments
 (0)