diff options
Diffstat (limited to 'docs/src')
| -rwxr-xr-x | docs/src/gen-docs.js | 2 | ||||
| -rw-r--r-- | docs/src/templates/index.html | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/src/gen-docs.js b/docs/src/gen-docs.js index da39698f..4fd3d4f2 100755 --- a/docs/src/gen-docs.js +++ b/docs/src/gen-docs.js @@ -54,6 +54,8 @@ function writeTheRest(writesFuture) { writesFuture.push(writer.copyDir('components/components-font-awesome/font', 'components/font-awesome/font')); writesFuture.push(writer.copyDir('components/bootstrap', 'components/bootstrap')); + writesFuture.push(writer.copy('node_modules/showdown/src/showdown.js', 'components/showdown.js')); + writesFuture.push(writer.copy('node_modules/showdown/compressed/showdown.js', 'components/showdown.min.js')); writesFuture.push(writer.copy('components/lunr.js/lunr.js', 'components/lunr.js')); writesFuture.push(writer.copy('components/lunr.js/lunr.min.js', 'components/lunr.min.js')); writesFuture.push(writer.copy('components/jquery/jquery.js', 'components/jquery.js')); diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index 87b76bad..eec2e5a2 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -47,6 +47,7 @@ addTag('script', {src: 'components/angular-bootstrap-prettify.js' }, sync); addTag('script', {src: 'components/google-code-prettify.js' }, sync); addTag('script', {src: 'components/' + (debug ? 'lunr.js' : 'lunr.min.js') }, sync); + addTag('script', {src: 'components/' + (debug ? 'showdown.js' : 'showdown.min.js') }, sync); addTag('script', {src: 'js/docs.js'}, sync); addTag('script', {src: 'docs-keywords.js'}, sync); |
