Replies: 1 comment 5 replies
-
|
I notice that the bullet list ends up being empty after processing (client side I suppose): <ol hidden="">
<li></li>
</ol>I also notice that removing it restores the expected behavior of the next result div. So maybe additionally/instead to emptying the unordered list and hiding it with |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to concatenate a result div after a code block with an annotation, within a tab. The issue is that the annotation is in between the code block and the result div, so the result div is not styled accordingly: it doesn't have borders and it is not concatenated to the block above.
Example:
=== ":simple-pipx: pipx" ```bash pipx install griffe # (1)! ``` 1. You can also directly run Griffe with `pipx run griffe <args>`. Tool-only installation (no library use). <div class="result" markdown> [pipx](https://pipx.pypa.io/stable/) allows to install and run Python applications in isolated environments. </div> === ":simple-pdm: pdm" ```bash pdm add griffe ``` <div class="result" markdown> [PDM](https://pdm-project.org/en/latest/) is an all-in-one solution for Python project and dependency management. </div>The PDM tab shows up like this:
While the pipx tab shows up like this:
I have tried many alternative sequences of markup, but none of them worked.
=== ":simple-pipx: pipx" ```bash pipx install griffe # (1)! ``` <div class="result" markdown> 1. You can also directly run Griffe with `pipx run griffe <args>`. Tool-only installation (no library use). [pipx](https://pipx.pypa.io/stable/) allows to install and run Python applications in isolated environments. </div>=== ":simple-pipx: pipx" <div markdown> ```bash pipx install griffe # (1)! ``` 1. You can also directly run Griffe with `pipx run griffe <args>`. Tool-only installation (no library use). </div> <div class="result" markdown> [pipx](https://pipx.pypa.io/stable/) allows to install and run Python applications in isolated environments. </div>=== ":simple-pipx: pipx" <div class="result" markdown> ```bash pipx install griffe # (1)! ``` 1. You can also directly run Griffe with `pipx run griffe <args>`. Tool-only installation (no library use). [pipx](https://pipx.pypa.io/stable/) allows to install and run Python applications in isolated environments. </div>I know the
resultCSS class is not really public API, but can you think of a way to make this work 🤔?Beta Was this translation helpful? Give feedback.
All reactions