lib/downloader.rb in narou-1.2.7 vs lib/downloader.rb in narou-1.2.8

- old
+ new

@@ -598,10 +598,10 @@ # 本文を解析して前書き・本文・後書きの要素に分解する # # 本文に含まれるタイトルは消す # def extract_elements_in_section(section, subtitle) - lines = section.lines.map(&:rstrip) + lines = section.lstrip.lines.map(&:rstrip) introduction = slice_introduction(lines) postscript = slice_postscript(lines) if lines[0] == subtitle if lines[1] == "" lines.slice!(0, 2)