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.
29 lines
714 B
29 lines
714 B
8 years ago
|
module Docs
|
||
|
class Pug < UrlScraper
|
||
|
self.type = 'pug'
|
||
|
self.base_url = 'https://pugjs.org/'
|
||
|
self.root_path = 'api/getting-started.html'
|
||
|
self.release = '2.0.0-rc.2'
|
||
|
self.links = {
|
||
|
home: 'https://pugjs.org/',
|
||
|
code: 'https://github.com/pugjs/pug'
|
||
|
}
|
||
|
|
||
|
html_filters.push 'pug/clean_html', 'pug/entries'
|
||
|
|
||
|
options[:container] = 'body > .container'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© Pug authors<br>
|
||
|
Licensed under the MIT license.
|
||
|
HTML
|
||
|
|
||
|
private
|
||
|
|
||
|
def parse(response) # Hook here because Nokogori removes whitespace from textareas
|
||
|
response.body.gsub! %r{<textarea\ [^>]*>([\W\w]+?)</textarea>}, '<pre>\1</pre>'
|
||
|
super
|
||
|
end
|
||
|
end
|
||
|
end
|