mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
457 B
20 lines
457 B
8 years ago
|
module Docs
|
||
|
class Liquid < UrlScraper
|
||
|
self.name = 'Liquid'
|
||
|
self.type = 'liquid'
|
||
|
self.base_url = "https://shopify.github.io/liquid/"
|
||
|
self.links = {
|
||
|
home: 'http://liquidmarkup.org/',
|
||
|
code: 'https://github.com/shopify/liquid'
|
||
|
}
|
||
|
|
||
|
html_filters.push 'liquid/entries', 'liquid/clean_html'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2005, 2006 Tobias Luetke<br>
|
||
|
Licensed under the MIT License.
|
||
|
HTML
|
||
|
|
||
|
end
|
||
|
end
|