浏览代码

Update Deno documentation (2.1.1)

Simon Legner 1 年之前
父节点
当前提交
de294da7ed
共有 1 个文件被更改,包括 8 次插入0 次删除
  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()