summaryrefslogtreecommitdiffstats
path: root/tasks/docsite.js
diff options
context:
space:
mode:
authorTomi Virkki <virkki@vaadin.com>2015-10-06 11:02:44 +0300
committerTomi Virkki <virkki@vaadin.com>2015-10-06 11:02:44 +0300
commit83bc858374d4eef2946779f854b795e01fbe4eaf (patch)
tree7ac78c4f58e8d71e35e96df807fc320f5b79268b /tasks/docsite.js
parent6374e028801bff91b738efb7252df02baf38e635 (diff)
downloadvaadin-core-83bc858374d4eef2946779f854b795e01fbe4eaf.tar.gz
vaadin-core-83bc858374d4eef2946779f854b795e01fbe4eaf.zip
Table of contents removed from common imports
Diffstat (limited to 'tasks/docsite.js')
-rw-r--r--tasks/docsite.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/tasks/docsite.js b/tasks/docsite.js
index fe5546f..f80f312 100644
--- a/tasks/docsite.js
+++ b/tasks/docsite.js
@@ -75,6 +75,8 @@ config.components.forEach(function (n) {
.pipe(replace(/(src|href)=("|')(.*?)\.\.\/\.\.\//mg, '$1=$2../bower_components/'))
// Remove references to demo.css file
.pipe(replace(/^.*demo.css.*\n/im, ''))
+ // Remove table of contents
+ .pipe(replace(/^.*table-of-contents.html.*\n/im, ''))
.pipe(gulp.dest(componentDocsite));
});