// // Nav bar // var content = [ { url: "../home/index.html", title: "Home" }, { url: "../documentation/index.html", title: "Documentation" }, { url: "../plug-ins/index.html", title: "Plug-ins" }, { url: "../write-plug-in-10mn/index.html", title: "A plug-in in 10mn" }, { url: "../write-plug-in/index.html", title: "Plug-in development" } ]; var before = '
' + ' ' + ' ' + '
' + '' ; function generateNavBar(index) { var result = before; for (var i = 0; i < content.length; i++) { var cls = ""; if (index == i) { cls = 'class="active"'; } var c = content[i]; result += '
  • ' + c.title + '
  • '; } result += after; var navBarElement = document.getElementById("kobalt-navbar"); navBarElement.innerHTML = result; } // // Table of contents // function generateToc() { var sections = document.getElementsByClassName("section"); var toc = '';//