diff options
Diffstat (limited to 'bower_components/bootstrap/grunt')
-rw-r--r-- | bower_components/bootstrap/grunt/bs-lessdoc-parser.js | 4 | ||||
-rw-r--r-- | bower_components/bootstrap/grunt/configBridge.json | 1 | ||||
-rw-r--r-- | bower_components/bootstrap/grunt/sauce_browsers.yml | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/bower_components/bootstrap/grunt/bs-lessdoc-parser.js b/bower_components/bootstrap/grunt/bs-lessdoc-parser.js index 63ee65a0..d6be7745 100644 --- a/bower_components/bootstrap/grunt/bs-lessdoc-parser.js +++ b/bower_components/bootstrap/grunt/bs-lessdoc-parser.js @@ -6,10 +6,10 @@ */ 'use strict'; -var Remarkable = require('remarkable'); +var Markdown = require('markdown-it'); function markdown2html(markdownString) { - var md = new Remarkable(); + var md = new Markdown(); // the slice removes the <p>...</p> wrapper output by Markdown processor return md.render(markdownString.trim()).slice(3, -5); diff --git a/bower_components/bootstrap/grunt/configBridge.json b/bower_components/bootstrap/grunt/configBridge.json index 78e7aae5..b7080b0c 100644 --- a/bower_components/bootstrap/grunt/configBridge.json +++ b/bower_components/bootstrap/grunt/configBridge.json @@ -13,6 +13,7 @@ "docsJs": [ "../assets/js/vendor/holder.js", "../assets/js/vendor/ZeroClipboard.min.js", + "../assets/js/vendor/anchor.js", "../assets/js/src/application.js" ] }, diff --git a/bower_components/bootstrap/grunt/sauce_browsers.yml b/bower_components/bootstrap/grunt/sauce_browsers.yml index 04e90928..e48a6f5b 100644 --- a/bower_components/bootstrap/grunt/sauce_browsers.yml +++ b/bower_components/bootstrap/grunt/sauce_browsers.yml @@ -56,7 +56,7 @@ { browserName: "iphone", - platform: "OS X 10.9", + platform: "OS X 10.10", version: "8.1" }, |