CSS admonition + small edits (#262)

This commit is contained in:
pollfly 2022-05-26 12:31:35 +03:00 committed by GitHub
parent 2e3c9862cb
commit bf80c10d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 5 deletions

View File

@ -707,7 +707,7 @@ For example:
Set a schedule for a worker using configuration file options. The options are:
:::warning
Only use one of these properties
Use only one of these properties
:::
* ``agent.uptime``

View File

@ -151,7 +151,7 @@ All console output during the execution of the migration script is saved to a lo
If the migration script does not complete successfully, the migration script prints the error.
:::important
For help in resolving migration issues, check the **allegro-clearml** [Slack Channel](https://join.slack.com/t/clearml/shared_invite/zt-c0t13pty-aVUZZW1TSSSg2vyIGVPBhg),
For help in resolving migration issues, check the **ClearML** [Slack Channel](https://join.slack.com/t/clearml/shared_invite/zt-c0t13pty-aVUZZW1TSSSg2vyIGVPBhg),
[GitHub Issues](https://github.com/allegroai/clearml-server/issues), and the **ClearML Server** sections of the [FAQ](../faq.md).
:::

View File

@ -36,7 +36,8 @@ In the example script, the controller defines the interactions between the pipel
1. The modified data is passed to the third step, `step_three`.
:::info Local Execution
In this example, the pipeline is set to run in local mode by using the [PipelineDecorator.run_locally](../../references/sdk/automation_controller_pipelinecontroller.md#pipelinedecoratorrun_locally)
In this example, the pipeline is set to run in local mode by using
the <span class="link-code"><a href="../../references/sdk/automation_controller_pipelinecontroller.md#pipelinedecoratorrun_locally"><code>PipelineDecorator.run_locally</code></a></span>
method before calling the pipeline function. See pipeline execution options [here](../../pipelines/pipelines_sdk_function_decorators.md#running-the-pipeline).
:::

View File

@ -97,9 +97,9 @@ and formats for specifying locations include:
:::note Set Output Destination for Artifacts
Also set the output destination for artifacts in code (see the `output_uri` parameter of the
[Task.init](../references/sdk/task.md#taskinit)
[`Task.init`](../references/sdk/task.md#taskinit)
method), and in the ClearML configuration file
for all experiments (see [default_output_uri](../configs/clearml_conf.md#config_default_output_uri)
for all experiments (see [`default_output_uri`](../configs/clearml_conf.md#config_default_output_uri)
on the ClearML Configuration Reference page).
:::

View File

@ -706,6 +706,14 @@ html[data-theme="dark"] .markdown hr {
.admonition-content code {
font-size: 0.75rem;
}
.admonition-content .link-code a {
color: var(--ifm-color-primary);
text-decoration: none;
}
.admonition-content .link-code a:hover {
text-decoration: underline;
}
/* danger (red) */
.alert--danger {
--ifm-alert-background-color: var(--ifm-color-danger-light);