diff --git a/docs/client/full-api/tableOfContents.html b/docs/client/full-api/tableOfContents.html
index ac19579a7a..b27df1f9ba 100644
--- a/docs/client/full-api/tableOfContents.html
+++ b/docs/client/full-api/tableOfContents.html
@@ -12,7 +12,7 @@
{{/if}}
{{#if type "section"}}
{{#nav_section}}
-
+
{{#if prefix}}{{prefix}}.{{/if}}{{#if instance}}{{instance}}.{{/if}}{{name}}
{{/nav_section}}
diff --git a/docs/client/full-api/tableOfContents.js b/docs/client/full-api/tableOfContents.js
index 01d286ab1f..70b2a67e13 100644
--- a/docs/client/full-api/tableOfContents.js
+++ b/docs/client/full-api/tableOfContents.js
@@ -317,6 +317,7 @@ var toc = [
"random",
"stylus",
"showdown",
+ {name: "spiderable", link: "https://atmospherejs.com/meteor/spiderable"},
"stylus",
"underscore",
"webapp"
@@ -364,9 +365,12 @@ Template.nav.helpers({
else {
if (typeof(item) === "string")
item = {name: item};
+
+ var id = item.name && name_to_id(item.name) || undefined;
+
ret.push(_.extend({
type: "section",
- id: item.name && name_to_id(item.name) || undefined,
+ link: "#/full/" + id,
depth: depth,
style: ''
}, item));