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.
21 lines
561 B
21 lines
561 B
![]()
9 years ago
|
module Docs
|
||
|
class Twig < UrlScraper
|
||
|
self.type = 'twig'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2009–2016 by SensioLabs<br>
|
||
|
Licensed under the three clause BSD license.
|
||
|
HTML
|
||
|
|
||
|
self.release = '1.24.1'
|
||
|
self.base_url = 'http://twig.sensiolabs.org/'
|
||
|
self.root_path = 'documentation'
|
||
|
|
||
|
html_filters.push 'twig/clean_html', 'twig/entries'
|
||
|
|
||
|
options[:container] = 'div.bd > div.content'
|
||
|
options[:skip_patterns] = [/\Aapi/, /\Alicense/]
|
||
|
options[:skip] = %w(doc/deprecated.html doc/advanced_legacy.html)
|
||
|
end
|
||
|
end
|