Is there a native way or widget on jupyter notebooks to set a markdown cell to create something like html tabs
so I can add documentation on each language I want instead of creating 3 different notebooks that will add complexity in the maintainability of my experiments?
Being able to add something like this will suffice
<!-- Tab links -->
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Spanish')">Spanish</button>
<button class="tablinks" onclick="openCity(event, 'English')">English</button>
<button class="tablinks" onclick="openCity(event, 'Japanese')">Japanese</button>
</div>
<!-- Tab content -->
<div id="Spanish" class="tabcontent">
<h3>Spanish Explanation</h3>
<p>This is an explanation in Spanish</p>
</div>
<div id="English" class="tabcontent">
<h3>English Explanation</h3>
<p>This is an explanation in English</p>
</div>
<div id="Japanese" class="tabcontent">
<h3>Japanese Explanation</h3>
<p>This is an explanation in Japanese</p>
</div>