소스 검색

Fix linebreaks in Elixir code blocks

Jasper van Merle 7 년 전
부모
커밋
93dfb6a6ae
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lib/docs/filters/elixir/clean_html.rb

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

@@ -59,6 +59,7 @@ module Docs
 
         css('pre').each do |node|
           node['data-language'] = 'elixir'
+          node.content = node.content
         end
       end
     end