Browse Source

Update Deno documentation (2.1.1)

Simon Legner 1 year ago
parent
commit
de294da7ed
1 changed files with 8 additions and 0 deletions
  1. 8 0
      lib/docs/filters/deno/clean_html.rb

+ 8 - 0
lib/docs/filters/deno/clean_html.rb

@@ -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()