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.
17 lines
450 B
17 lines
450 B
10 years ago
|
module Docs
|
||
|
class Xpath < Mdn
|
||
|
self.name = 'XPath'
|
||
|
self.base_url = 'https://developer.mozilla.org/en-US/docs/Web/XPath'
|
||
|
|
||
|
html_filters.push 'xpath/clean_html', 'xpath/entries', 'title'
|
||
|
|
||
|
options[:root_title] = 'XPath'
|
||
|
|
||
|
options[:fix_urls] = ->(url) do
|
||
|
url.sub! 'https://developer.mozilla.org/en/XPath', Xpath.base_url
|
||
|
url.sub! 'https://developer.mozilla.org/en-US/docs/XPath', Xpath.base_url
|
||
|
url
|
||
|
end
|
||
|
end
|
||
|
end
|