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.
24 lines
642 B
24 lines
642 B
![]()
9 years ago
|
module Docs
|
||
|
class CraftCms < UrlScraper
|
||
|
self.type = 'craftcms'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2012–2016 by Pixel & Tonic, Inc<br>
|
||
|
Licensed under Craft License Agreement version 2.0.1.
|
||
|
HTML
|
||
|
|
||
|
options[:skip_patterns] = [/features/, /support/, /pricing/, /introduction/, /community/, /search/, /news/, /changelog/, /index/]
|
||
|
options[:container] = 'div[id=content]'
|
||
|
|
||
|
|
||
|
version '2.6' do
|
||
|
self.release = '2.6.2930'
|
||
|
self.base_url = 'https://craftcms.com/'
|
||
|
self.root_path = 'docs'
|
||
|
|
||
|
html_filters.push 'craft_cms/clean_html_v2', 'craft_cms/entries_v2'
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|