aboutsummaryrefslogtreecommitdiff
path: root/docs/_plugins/callout.rb
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-10-29 00:34:52 -0700
committerChris Rebert <[email protected]>2015-10-29 00:34:52 -0700
commit53dddc6ed468eaf76d985d5c9886cde181eb43e9 (patch)
tree927eebe37ed20ced5f00f3063b30e6d6b58ad9bf /docs/_plugins/callout.rb
parent7d766e4a94299f811e8eab522bfb128a350cca4a (diff)
parent608dead1fe60bbd974435fad079c5347b00371fb (diff)
downloadbootstrap-53dddc6ed468eaf76d985d5c9886cde181eb43e9.tar.xz
bootstrap-53dddc6ed468eaf76d985d5c9886cde181eb43e9.zip
Merge pull request #18086 from twbs/v4-dev-jekyll3
Update to Jekyll v3.0.0.
Diffstat (limited to 'docs/_plugins/callout.rb')
-rw-r--r--docs/_plugins/callout.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_plugins/callout.rb b/docs/_plugins/callout.rb
index 0ed6687db..58453ecb4 100644
--- a/docs/_plugins/callout.rb
+++ b/docs/_plugins/callout.rb
@@ -17,7 +17,7 @@ module Jekyll
def render(context)
site = context.registers[:site]
- converter = site.getConverterImpl(::Jekyll::Converters::Markdown)
+ converter = site.find_converter_instance(::Jekyll::Converters::Markdown)
output = converter.convert(super(context))
"<div class=\"bd-callout bd-callout-#{@type}\">#{output}</div>"
end