I’d like to insert visible links for each section heading, like the Bootstrap docs, for example:
What would the general approach be to implement this with Middleman?
Tim
I’d like to insert visible links for each section heading, like the Bootstrap docs, for example:
What would the general approach be to implement this with Middleman?
Tim
Hi @tstatler1 that would be as simple as adding a id selector and then linking to that selector. Example:
<a href="#pagination">pagination</a>
<h4 id="pagination">Default Pagination</h4>