mirror of https://github.com/freeCodeCamp/devdocs
parent
7e571ee48c
commit
f19a61aa1b
@ -0,0 +1,22 @@
|
|||||||
|
module Docs
|
||||||
|
class Deno
|
||||||
|
class CleanHtmlFilter < Filter
|
||||||
|
def call
|
||||||
|
if root_page?
|
||||||
|
@doc = at_css('h2[id]').parent.parent
|
||||||
|
else
|
||||||
|
@doc = at_css('article')
|
||||||
|
end
|
||||||
|
|
||||||
|
css('*[aria-label="Anchor"]').remove
|
||||||
|
css('*[class]').remove_attribute('class')
|
||||||
|
css('pre').each do |node|
|
||||||
|
node['data-language'] = 'typescript'
|
||||||
|
end
|
||||||
|
xpath('//a[text()="[src]"]').remove
|
||||||
|
|
||||||
|
doc
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,15 @@
|
|||||||
|
module Docs
|
||||||
|
class Deno
|
||||||
|
class EntriesFilter < Docs::EntriesFilter
|
||||||
|
|
||||||
|
def get_name
|
||||||
|
at_css('h1').content
|
||||||
|
end
|
||||||
|
|
||||||
|
def get_type
|
||||||
|
'Deno CLI APIs'
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
After Width: | Height: | Size: 987 B |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1 @@
|
|||||||
|
https://doc.deno.land/static/apple-touch-icon.png
|
Loading…
Reference in new issue