Currently, I am utilizing a Bootstrap frontend for the project at hand.
The task I am tackling involves a significant amount of automatically generated content and code, which greatly simplifies the work process. My goal is to explore the potential of creating a navigational framework based on tags such as the ones shown below:
<h2 id="_foo_bar">Foo Bar</h2>
<h2 id="_metrics_collection">Metrics Collection</h2>
Would it be feasible to populate a structure like the one demonstrated here:
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="#_foo_bar">Foo Bar</a>
</li>
<li>
<a href="#_metrics_collection">Metrics Collection</a>
</li>
</ul>
</div>
Is this concept technically achievable?