You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
Based on how the selector appears to be designed, you add multiple classes to a div and they will share the same content. It doesn't work when you get to the version level.
The following code should work to share common content:
<div class="clojure">
<div class="gpu">
<div class="master v1-3-0">
Install instructions for both master and v1.3.0...
...
</div></div></div>
<div class="1-2-1 1-1-0 1-0-0">
Then older versions see something else
</div>
It doesn't work. All of the versions get the top code block.
Then if you break it out and use:
<div class="1-2-1">
This older version sees one thing
</div>
<div class="1-1-0">
This older version sees a second thing
</div>
<div class="1-0-0">
This older version sees a third thing
</div>
You get the same output for every version all at once:
This older version sees one thing
This older version sees a second thing
This older version sees a third thing
The text was updated successfully, but these errors were encountered:
Description
Based on how the selector appears to be designed, you add multiple classes to a div and they will share the same content. It doesn't work when you get to the version level.
The following code should work to share common content:
It doesn't work. All of the versions get the top code block.
Then if you break it out and use:
You get the same output for every version all at once:
The text was updated successfully, but these errors were encountered: