Skip to content

Commit c114f88

Browse files
authored
a bit of normalization (#894)
1 parent d33ec3b commit c114f88

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/config.md

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export interface Page {
122122
path: string;
123123
}
124124
```
125+
125126
```ts run=false
126127
export interface Section {
127128
name: string;

docs/markdown.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ Cell 1-2 | Cell 2-2 | Cell 3-2
9090

9191
You can write HTML directly into Markdown. HTML is useful for greater control over layout, say to use CSS grid for a responsive bento box layout in a dashboard, or adding an external stylesheet via a link element. For example, here is an HTML details element:
9292

93-
````html run=false
93+
```html run=false
9494
<details>
9595
<summary>Click me</summary>
9696
This text is not visible by default.
9797
</details>
98-
````
98+
```
9999

100100
This produces:
101101

0 commit comments

Comments
 (0)