Explorar el Código

Merge pull request #2085 from thewheat/cpp-prevent-extra-dot

Fix CPP clean_html to remove adding an extra dot
Simon Legner hace 1 año
padre
commit
8502d8f58f
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      lib/docs/filters/cppref/clean_html.rb

+ 0 - 1
lib/docs/filters/cppref/clean_html.rb

@@ -83,7 +83,6 @@ module Docs
             node << node.next
           end
           node.inner_html = node.inner_html.strip
-          node << '.' if node.content =~ /[a-zA-Z0-9\)]\z/
           node.remove if node.content.blank? && !node.at_css('img')
         end