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.
18 lines
448 B
18 lines
448 B
module Docs
|
|
class Dom < Mdn
|
|
# release = '2023-08-20'
|
|
self.name = 'Web APIs'
|
|
self.slug = 'dom'
|
|
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'
|
|
}
|
|
|
|
html_filters.push 'dom/clean_html', 'dom/entries'
|
|
|
|
options[:root_title] = 'Web APIs'
|
|
|
|
end
|
|
end
|