Update HTML documentation

Fixes #248.
pull/343/merge
Thibaut Courouble 9 years ago
parent e7d5a3bdbd
commit f681391ead

@ -121,7 +121,7 @@ credits = [
'https://raw.githubusercontent.com/apache/cordova-docs/master/LICENSE' 'https://raw.githubusercontent.com/apache/cordova-docs/master/LICENSE'
], [ ], [
'CSS<br>DOM<br>HTML<br>JavaScript<br>SVG<br>XPath', 'CSS<br>DOM<br>HTML<br>JavaScript<br>SVG<br>XPath',
'2005-2015 Mozilla Developer Network and individual contributors', '2005-2016 Mozilla Developer Network and individual contributors',
'CC BY-SA', 'CC BY-SA',
'https://creativecommons.org/licenses/by-sa/2.5/' 'https://creativecommons.org/licenses/by-sa/2.5/'
], [ ], [

@ -13,6 +13,17 @@ module Docs
end end
def other def other
css('span > .icon-thumbs-down-alt:first-child:last-child').each do |node|
node.parent.replace('deprecated')
end
css('span > .icon-trash:first-child:last-child').each do |node|
node.parent.replace('deleted')
end
css('span > .icon-warning-sign:first-child:last-child').each do |node|
node.parent.replace('non standard')
end
end end
end end
end end

Loading…
Cancel
Save