lib/jekyll-toc.rb in jekyll-toc-0.12.1 vs lib/jekyll-toc.rb in jekyll-toc-0.12.2

- old
+ new

@@ -18,11 +18,9 @@ # Jekyll Table of Contents filter plugin module TableOfContentsFilter # Deprecated method. Removed in v1.0. def toc_only(html) - Jekyll.logger.warn 'Deprecation: toc_only filter is deprecated and will be remove in jekyll-toc v1.0.', - 'Use `{% toc %}` instead of `{{ content | toc_only }}`.' return '' unless toc_enabled? TableOfContents::Parser.new(html, toc_config).build_toc end