|
|
@@ -0,0 +1,21 @@
|
|
|
+module Docs
|
|
|
+ class XsltXpath < Mdn
|
|
|
+ self.name = 'XSLT & XPath'
|
|
|
+ self.slug = 'xslt_xpath'
|
|
|
+ self.base_url = 'https://developer.mozilla.org/en-US/docs/Web'
|
|
|
+ self.root_path = '/XSLT'
|
|
|
+ self.initial_paths = %w(/XPath)
|
|
|
+
|
|
|
+ html_filters.push 'xslt_xpath/clean_html', 'xslt_xpath/entries', 'title'
|
|
|
+
|
|
|
+ options[:only_patterns] = [/\A\/XSLT/, /\A\/XPath/]
|
|
|
+
|
|
|
+ options[:fix_urls] = ->(url) do
|
|
|
+ url.sub! 'https://developer.mozilla.org/en/XPath', "#{XsltXpath.base_url}/XPath"
|
|
|
+ url.sub! 'https://developer.mozilla.org/en/XSLT', "#{XsltXpath.base_url}/XSLT"
|
|
|
+ url.sub! 'https://developer.mozilla.org/en-US/docs/XPath', "#{XsltXpath.base_url}/XPath"
|
|
|
+ url.sub! 'https://developer.mozilla.org/en-US/docs/XSLT', "#{XsltXpath.base_url}/XSLT"
|
|
|
+ url
|
|
|
+ end
|
|
|
+ end
|
|
|
+end
|