Skip to content

Commit

Permalink
Update package versions & add markdown page
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackySoul committed Mar 14, 2024
1 parent 996297b commit d5d9c21
Show file tree
Hide file tree
Showing 4 changed files with 4,711 additions and 139 deletions.
65 changes: 65 additions & 0 deletions docs-beta/docs/markdown.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
sidebar_position: 3
---

# Markdown

## Заголовок 2

### Заголовок 3

#### Заголовок 4

:::note[Your Title **with** some _Markdown_ `syntax`!]

Some **content** with _Markdown_ `syntax`. Check [this `api`](#).

:::

:::tip

Some **content** with _Markdown_ `syntax`. Check [this `api`](#).

:::

:::info

Some **content** with _Markdown_ `syntax`. Check [this `api`](#).

:::

:::warning

Some **content** with _Markdown_ `syntax`. Check [this `api`](#).

:::

:::danger

Some **content** with _Markdown_ `syntax`. Check [this `api`](#).

:::

- a
- list!

> Docusaurus has built-in support for MDX, which allows you to write JSX within your Markdown files and render them as React components.
---

- **This is bold text**
- *This text is italicized*
- ~~This was mistaken text~~
- **This text is _extremely_ important**
- ***All this text is important***
- This is a <sup>superscript</sup> text
- This is a <sub>subscript</sub> text

| First Header | Second Header | Third Header |
| ------------- | ------------- | ------------- |
| Content Cell | Content Cell | Empty |
| Content Cell | Content Cell | |
| Content Cell | Content Cell | |
| Content Cell | Content Cell | |
| Content Cell | Content Cell | |
| Content Cell | Content Cell | |
20 changes: 10 additions & 10 deletions docs-beta/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.0.1",
"@docusaurus/plugin-content-docs": "3.0.1",
"@docusaurus/plugin-content-pages": "3.0.1",
"@docusaurus/plugin-debug": "3.0.1",
"@docusaurus/plugin-sitemap": "3.0.1",
"@docusaurus/theme-classic": "3.0.1",
"@docusaurus/theme-common": "3.0.1",
"@docusaurus/core": "3.1.1",
"@docusaurus/plugin-content-docs": "3.1.1",
"@docusaurus/plugin-content-pages": "3.1.1",
"@docusaurus/plugin-debug": "3.1.1",
"@docusaurus/plugin-sitemap": "3.1.1",
"@docusaurus/theme-classic": "3.1.1",
"@docusaurus/theme-common": "3.1.1",
"@mdx-js/react": "^3.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.0.1",
"@docusaurus/tsconfig": "3.0.1",
"@docusaurus/types": "3.0.1",
"@docusaurus/module-type-aliases": "3.1.1",
"@docusaurus/tsconfig": "3.1.1",
"@docusaurus/types": "3.1.1",
"typescript": "^5.3.3"
},
"browserslist": {
Expand Down
1 change: 1 addition & 0 deletions docs-beta/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const sidebars: SidebarsConfig = {
docsSidebar: [
'intro',
'quick_start',
'markdown',
// { type: 'autogenerated', dirName: '.' },
{
type: 'category',
Expand Down
Loading

0 comments on commit d5d9c21

Please sign in to comment.