File tree Expand file tree Collapse file tree
packages/create-docusaurus/templates/shared/docs/tutorial-basics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,15 +60,15 @@ You can reference images relative to the current file as well. This is particula
6060## Code Blocks
6161
6262Markdown 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"
7373function HelloDocusaurus() {
7474 return <h1>Hello, Docusaurus!</h1>;
@@ -78,7 +78,7 @@ function HelloDocusaurus() {
7878## Admonitions
7979
8080Docusaurus 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
9696Use this awesome feature option
You can’t perform that action at this time.
0 commit comments