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.
devdocs/lib/docs/scrapers/mdn/dom.rb

18 lines
448 B

11 years ago
module Docs
class Dom < Mdn
# release = '2023-10-24'
self.name = 'Web APIs'
self.slug = 'dom'
11 years ago
self.base_url = 'https://developer.mozilla.org/en-US/docs/Web/API'
self.links = {
home: 'https://developer.mozilla.org/en-US/docs/Web/API',
code: 'https://github.com/mdn/content/tree/main/files/en-us/web/api'
}
11 years ago
html_filters.push 'dom/clean_html', 'dom/entries'
11 years ago
options[:root_title] = 'Web APIs'
11 years ago
end
end