Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ You can reference images relative to the current file as well. This is particula
## Code Blocks

Markdown code blocks are supported with Syntax highlighting.

```
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return (
<h1>Hello, Docusaurus!</h1>
)
}
```

```
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
Expand All @@ -78,7 +78,7 @@ function HelloDocusaurus() {
## Admonitions

Docusaurus has a special syntax to create admonitions and callouts:

```
:::tip My tip

Use this awesome feature option
Expand All @@ -90,7 +90,7 @@ Docusaurus has a special syntax to create admonitions and callouts:
This action is dangerous

:::

```
:::tip My tip

Use this awesome feature option
Expand Down