Skip to content

Commit 3feecc2

Browse files
authored
Fix missing triple``` characters in markdown-features.mdx
1 parent ac56420 commit 3feecc2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/create-docusaurus/templates/shared/docs/tutorial-basics/markdown-features.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ You can reference images relative to the current file as well. This is particula
6060
## Code Blocks
6161

6262
Markdown code blocks are supported with Syntax highlighting.
63-
63+
```
6464
```jsx title="src/components/HelloDocusaurus.js"
6565
function HelloDocusaurus() {
6666
return (
6767
<h1>Hello, Docusaurus!</h1>
6868
)
6969
}
7070
```
71-
71+
```
7272
```jsx title="src/components/HelloDocusaurus.js"
7373
function HelloDocusaurus() {
7474
return <h1>Hello, Docusaurus!</h1>;
@@ -78,7 +78,7 @@ function HelloDocusaurus() {
7878
## Admonitions
7979

8080
Docusaurus has a special syntax to create admonitions and callouts:
81-
81+
```
8282
:::tip My tip
8383
8484
Use this awesome feature option
@@ -90,7 +90,7 @@ Docusaurus has a special syntax to create admonitions and callouts:
9090
This action is dangerous
9191
9292
:::
93-
93+
```
9494
:::tip My tip
9595

9696
Use this awesome feature option

0 commit comments

Comments
 (0)