I am enjoying using Docusaurus, it is a nice change for me. I am using Docusaurus v2.18. I would like to be able to build two different sets of docs from one set of source files. There will be some differences in some of the content depending on the environment where the code is being deployed, and I would like to put those differences in if/endif blocks. This is what I think a simple use case would look like:
ifeval::["{buildTarget}"=="environmentA"]
```
code block A content here
```
endif::[]
and
ifeval::["{buildTarget}"=="environmentB"]
```
code block B content here
```
endif::[]
almost all of my content is standard Markdown, but I am happy to use mdx/jsx to include / exclude content. Thanks for your help!