mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 13:16:44 +02:00
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
/* global Awesomplete, $:true, $$:true */
|
|
$ = Awesomplete.$;
|
|
$$ = Awesomplete.$$;
|
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
var nav = $("nav")
|
|
$$("section > h1").forEach(function (h1) {
|
|
if (h1.parentNode.id) {
|
|
$.create("a", {
|
|
href: "#" + h1.parentNode.id,
|
|
textContent: h1.textContent.replace(/\(.+?\)/g, ""),
|
|
inside: nav
|
|
});
|
|
}
|
|
});
|
|
}); |