Update FAQ, pipeline, and report logo images (#1069)
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
pollfly
2025-03-03 15:20:52 +02:00
committed by GitHub
parent 2ef60eb575
commit b73c74296a
21 changed files with 46 additions and 12 deletions

View File

@@ -429,7 +429,11 @@ image enclosed in parentheses:
The rendered output should look like this:
![Logo](https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg)
<img class="light-mode-only" src="https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg" alt="Logo"/>
<img class="dark-mode-only" src="https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo-dark.svg" alt="Logo"/>
<br/>
To add a title to the image, which you can see in a tooltip when hovering over the image, add the title after the image's
link:
@@ -439,7 +443,9 @@ link:
```
The rendered output should look like this:
<img src="https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg" alt="Logo with Title" title="ClearML logo"/>
<img class="light-mode-only" src="https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo.svg" title="ClearML logo"/>
<img class="dark-mode-only" src="https://raw.githubusercontent.com/clearml/clearml/master/docs/clearml-logo-dark.svg" title="ClearML logo"/>
Hover over the image to see its title.