Skip to content

Commit

Permalink
chore: fix Crowdin again (#5825)
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Oct 29, 2021
1 parent d1fa1b5 commit a210e93
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
Binary file added website/docs/assets/docusaurus-asset-example.docx
Binary file not shown.
Binary file removed website/docs/assets/docusaurus-asset-example.xlsx
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Let's imagine the following file structure:
# Some assets you want to use
/website/docs/assets/docusaurus-asset-example-banner.png
/website/docs/assets/docusaurus-asset-example.xlsx
/website/docs/assets/docusaurus-asset-example.docx
```

## Images {#images}
Expand Down Expand Up @@ -66,22 +66,22 @@ In the same way, you can link to existing assets by requiring them and using the

<a
target="_blank"
href={require('./assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('./assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

or

[Download this xlsx using Markdown](./assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](./assets/docusaurus-asset-example.docx)
```

<a
target="_blank"
href={require('../../assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('../../assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

[Download this xlsx using Markdown](../../assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](../../assets/docusaurus-asset-example.docx)

## Inline SVGs {#inline-svgs}

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Let's imagine the following file structure:
# Some assets you want to use
/website/docs/assets/docusaurus-asset-example-banner.png
/website/docs/assets/docusaurus-asset-example.xlsx
/website/docs/assets/docusaurus-asset-example.docx
```

## Images {#images}
Expand Down Expand Up @@ -66,22 +66,22 @@ In the same way, you can link to existing assets by requiring them and using the

<a
target="_blank"
href={require('./assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('./assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

or

[Download this xlsx using Markdown](./assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](./assets/docusaurus-asset-example.docx)
```

<a
target="_blank"
href={require('../../assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('../../assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

[Download this xlsx using Markdown](../../assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](../../assets/docusaurus-asset-example.docx)

## Inline SVGs {#inline-svgs}

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Let's imagine the following file structure:
# Some assets you want to use
/website/docs/assets/docusaurus-asset-example-banner.png
/website/docs/assets/docusaurus-asset-example.xlsx
/website/docs/assets/docusaurus-asset-example.docx
```

## Images {#images}
Expand Down Expand Up @@ -66,22 +66,22 @@ In the same way, you can link to existing assets by requiring them and using the

<a
target="_blank"
href={require('./assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('./assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

or

[Download this xlsx using Markdown](./assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](./assets/docusaurus-asset-example.docx)
```

<a
target="_blank"
href={require('../../assets/docusaurus-asset-example.xlsx').default}>
Download this xlsx
href={require('../../assets/docusaurus-asset-example.docx').default}>
Download this docx
</a>

[Download this xlsx using Markdown](../../assets/docusaurus-asset-example.xlsx)
[Download this docx using Markdown](../../assets/docusaurus-asset-example.docx)

## Inline SVGs {#inline-svgs}

Expand Down

0 comments on commit a210e93

Please sign in to comment.