Update Deno documentation (2.1.1)

pull/2372/head
Simon Legner 2 months ago
parent 719533928a
commit de294da7ed

@ -8,12 +8,20 @@ module Docs
@doc = at_css('main article .markdown-body')
end
if at_css('.text-2xl')
doc.prepend_child at_css('.text-2xl').remove
at_css('.text-2xl').name = 'h1'
end
css('code').each do |node|
if node['class']
lang = node['class'][/language-(\w+)/, 1]
end
node['data-language'] = lang || 'ts'
node.remove_attribute('class')
if node.parent.name == 'div'
node.content = node.content.strip
end
end
css('a.header-anchor').remove()

Loading…
Cancel
Save