-
I want to use content tabs to show commands specific to each OS: === ":material-apple: MacOS"
```bash
python runbenchmark.py randomforest
```
=== ":simple-linux: Linux"
```bash
python runbenchmark.py randomforest
```
=== ":simple-windows: Windows"
As noted above, we need to install the AutoML frameworks (and baselines) in
a container. Add `-m docker` to the command as shown:
```bash
python runbenchmark.py randomforest -m docker
```
Future example usages will only show the UNIX invocation, but will still require
Windows users to add `-m docker`. However, more often than not MacOS and linux tabs share the same content. I was hoping I could do something like === ":material-apple: MacOS"
=== ":simple-linux: Linux"
my unix content
=== ":simple-windows: Windows"
my windows content so I don't need to duplicate my documentation. However, I can't find it in the docs and I tried multiple variations, but nothing works. Is there a way to achieve this? |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Jul 11, 2023
Replies: 1 comment 2 replies
-
There's currently no immediate way of deduplication. What we do is either merge tabs, or duplicate the content. Merging: === ":material-apple: MacOS, :simple-linux: Linux"
my unix content
=== ":simple-windows: Windows"
my windows content |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
PGijsbers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's currently no immediate way of deduplication. What we do is either merge tabs, or duplicate the content. Merging:
=== ":material-apple: MacOS, :simple-linux: Linux" my unix content === ":simple-windows: Windows" my windows content