forked from freeCodeCamp/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmdn.rb
More file actions
24 lines (19 loc) · 709 Bytes
/
mdn.rb
File metadata and controls
24 lines (19 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Docs
class Mdn < UrlScraper
self.abstract = true
self.type = 'mdn'
html_filters.push 'mdn/clean_html', 'mdn/compat_tables'
options[:container] = '#content > .main-page-content'
options[:trailing_slash] = false
options[:skip_link] = ->(link) {
link['title'].try(:include?, 'not yet been written'.freeze) && !link['href'].try(:include?, 'transform-function'.freeze)
}
options[:attribution] = <<-HTML
© 2005–2023 MDN contributors.<br>
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
HTML
def get_latest_version(opts)
get_latest_github_commit_date('mdn', 'content', opts)
end
end
end