diff options
| author | Alexandr Kondrashov <[email protected]> | 2015-09-11 16:43:00 +0300 |
|---|---|---|
| committer | Alexandr Kondrashov <[email protected]> | 2015-09-11 16:43:00 +0300 |
| commit | c9725926b2f30bed4e37f57c20ef8ffeb2fd233b (patch) | |
| tree | 2964ad7556549dd3e0712bdfdbc5fc4ae7a9b45f /docs/_plugins | |
| parent | 353e0a49a97c24d89f6cdb95014419d4137dee6e (diff) | |
| parent | b811f8cf9628dbcbfe994f71588c5a0c921a092d (diff) | |
| download | bootstrap-c9725926b2f30bed4e37f57c20ef8ffeb2fd233b.tar.xz bootstrap-c9725926b2f30bed4e37f57c20ef8ffeb2fd233b.zip | |
Merge remote-tracking branch 'twbs/v4-dev' into patch-1
Conflicts:
scss/_custom-forms.scss
scss/_variables.scss
Diffstat (limited to 'docs/_plugins')
| -rw-r--r-- | docs/_plugins/bridge.rb | 5 | ||||
| -rw-r--r-- | docs/_plugins/bugify.rb | 2 | ||||
| -rw-r--r-- | docs/_plugins/callout.rb | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/docs/_plugins/bridge.rb b/docs/_plugins/bridge.rb index 450a6cce3..69a13fbbb 100644 --- a/docs/_plugins/bridge.rb +++ b/docs/_plugins/bridge.rb @@ -3,7 +3,8 @@ require 'yaml' module Bridge class Generator < Jekyll::Generator def generate(site) - site.data["configBridge"] = YAML.load_file("./grunt/configBridge.json") + path = File.join(site.source, "../grunt/configBridge.json") + site.data["configBridge"] = YAML.load_file(path) end end -end
\ No newline at end of file +end diff --git a/docs/_plugins/bugify.rb b/docs/_plugins/bugify.rb index 3cee9e43f..e085b5a38 100644 --- a/docs/_plugins/bugify.rb +++ b/docs/_plugins/bugify.rb @@ -22,4 +22,4 @@ module Jekyll end end -Liquid::Template.register_filter(Jekyll::BugFilter)
\ No newline at end of file +Liquid::Template.register_filter(Jekyll::BugFilter) diff --git a/docs/_plugins/callout.rb b/docs/_plugins/callout.rb index 536ca588e..0ed6687db 100644 --- a/docs/_plugins/callout.rb +++ b/docs/_plugins/callout.rb @@ -1,4 +1,4 @@ -# Source: http://stackoverflow.com/questions/19169849/how-to-get-markdown-processed-content-in-jekyll-tag-plugin +# Source: https://stackoverflow.com/questions/19169849/how-to-get-markdown-processed-content-in-jekyll-tag-plugin module Jekyll module Tags |
