markdown syntax
<details>
<summary> <code> click here to see logs π </code> </summary>
```
[INFO] [launch]: Default logging verbosity is set to INFO
...
...
...
[INFO] [python.sh-1]: process has finished cleanly [pid xxxx]
[python.sh-1]
```
</details>
how it looks like in gfm (github flavored markdown)
click here to see logs π
[INFO] [launch]: Default logging verbosity is set to INFO
...
...
...
[INFO] [python.sh-1]: process has finished cleanly [pid xxxx]
[python.sh-1]
remove <code> and </code> to avoid rendering summary title with code syntax if you want to
- <summary> <code> click here to see logs π </code> </summary>
+ <summary> click here to see logs π </summary>
basically is using specific html elements inject on gfm:
<details><summary><code>