summaryrefslogtreecommitdiff
path: root/deps/npm/html/docfoot.html
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/html/docfoot.html')
-rw-r--r--deps/npm/html/docfoot.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/deps/npm/html/docfoot.html b/deps/npm/html/docfoot.html
new file mode 100644
index 0000000000..3e35341cc3
--- /dev/null
+++ b/deps/npm/html/docfoot.html
@@ -0,0 +1,34 @@
+</div>
+<p id="footer">@NAME@ &mdash; npm@@VERSION@</p>
+<script>
+;(function () {
+var wrapper = document.getElementById("wrapper")
+var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
+ .filter(function (el) {
+ return el.parentNode === wrapper
+ && el.tagName.match(/H[1-6]/)
+ && el.id
+ })
+var l = 2
+ , toc = document.createElement("ul")
+toc.innerHTML = els.map(function (el) {
+ var i = el.tagName.charAt(1)
+ , out = ""
+ while (i > l) {
+ out += "<ul>"
+ l ++
+ }
+ while (i < l) {
+ out += "</ul>"
+ l --
+ }
+ out += "<li><a href='#" + el.id + "'>" +
+ ( el.innerText || el.text || el.innerHTML)
+ + "</a>"
+ return out
+}).join("\n")
+toc.id = "toc"
+document.body.appendChild(toc)
+})()
+</script>
+</body></html>