Ver Fonte

Merge pull request #1117 from waldyrious/patch-1

Remove unused code in Sequelize's clean_html filter
Jed Fox há 6 anos atrás
pai
commit
3515bc7002
1 ficheiros alterados com 2 adições e 7 exclusões
  1. 2 7
      lib/docs/filters/sequelize/clean_html.rb

+ 2 - 7
lib/docs/filters/sequelize/clean_html.rb

@@ -18,11 +18,11 @@ module Docs
           # Remove image cards pointing to entries of the manual
           css('.manual-cards').remove
 
-          # Pull the header out of it's container
+          # Pull the header out of its container
           header = at_css('h1')
           header.parent.parent.parent.add_previous_sibling header
         else
-          # Pull the header out of it's container
+          # Pull the header out of its container
           header = at_css('h1')
           header.parent.add_previous_sibling header
         end
@@ -46,11 +46,6 @@ module Docs
           pre['data-language'] = 'typescript' if node['class'] == 'lang-ts'
         end
 
-        # Add syntax highlighting to source files
-        css('pre.raw-source-code').each do |node|
-          node['data-language'] = 'javascript'
-        end
-
         # Return the cleaned-up document
         doc
       end