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.
19 lines
466 B
19 lines
466 B
module Docs
|
|
class WebExtensions < Mdn
|
|
self.name = 'Web Extensions'
|
|
self.slug = 'web_extensions'
|
|
self.links = {
|
|
home: 'https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions'
|
|
}
|
|
|
|
self.base_url = 'https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions'
|
|
|
|
html_filters.push 'web_extensions/entries', 'web_extensions/clean_html'
|
|
|
|
options[:skip_patterns] = [
|
|
/\/contributors\.txt$/
|
|
]
|
|
|
|
end
|
|
end
|