liquid.rb 566 B

12345678910111213141516171819202122
  1. module Docs
  2. class Liquid < UrlScraper
  3. self.name = 'Liquid'
  4. self.type = 'liquid'
  5. self.base_url = 'https://shopify.github.io/liquid/'
  6. self.release = '4.0.0'
  7. self.links = {
  8. home: 'https://shopify.github.io/liquid/',
  9. code: 'https://github.com/Shopify/liquid'
  10. }
  11. html_filters.push 'liquid/entries', 'liquid/clean_html', 'title'
  12. options[:title] = false
  13. options[:root_title] = 'Liquid'
  14. options[:attribution] = <<-HTML
  15. &copy; 2005, 2006 Tobias Luetke<br>
  16. Licensed under the MIT License.
  17. HTML
  18. end
  19. end