Update Docusaurus (#855)

This commit is contained in:
pollfly
2024-06-23 10:00:06 +03:00
committed by GitHub
parent f52a139c34
commit d166467a32
32 changed files with 8616 additions and 4726 deletions

View File

@@ -18,7 +18,7 @@ on completed/failed Tasks via Slack integration.
* Project - Monitor a specific project. You can select an option to also monitor the specified project's subprojects
* Entire workspace - Monitor all projects in your workspace
:::caution
:::warning
If your workspace or specified project contains a large number of experiments, the dashboard can take a while to update.
:::

View File

@@ -378,14 +378,21 @@ link to see the link's title.
The MarkDown code for a collapsible panel looks like this:
| MarkDown | Rendered Output |
|---|---|
| <code><details\><br/>&nbsp<summary\>Section title</summary\><br/>&nbsp;&nbsp;Collapsible Section Contents<br/></details\></code>|<details><summary>Section title</summary>Collapsible Section Contents</details>|
```
<details><summary>Section title</summary>Collapsible Section Contents</details>
```
The collapsible panel is surrounded by `<details>` tags. Within the `<details>` tag, add the section's title between
the `<summary>` tags. This title can be seen when the panel is collapsed. After the `</summary>` tag, add the panel
contents.
It is rendered like this:
<details><summary>Section title</summary>Collapsible Section Contents</details>
### Horizontal Rules
Create horizontal lines using three hyphens (`---`), underscores (`___`), or asterisks (`***`):