mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
14 lines
503 B
JavaScript
14 lines
503 B
JavaScript
$(document).ready(function() {
|
|
tableOfContents = $("<ul class='dev_nav_sidebar'>").appendTo(".sidebar #cont")
|
|
$("h1, h2, h3").each(function() {
|
|
indent_level = this.tagName.toLowerCase().substr(1);
|
|
if (this.id) { //only show headers with IDs. which should be all of them.
|
|
href = "#"+this.id;
|
|
$("<li class='level-"+indent_level+"'><a href='"+href+"'>"+
|
|
$(this).text()+"</a></li>").appendTo(tableOfContents);
|
|
}
|
|
|
|
});
|
|
});
|
|
|