Просмотр исходного кода

Merge pull request #959 from fgallaire/master

txt2tags_reader: Add --no-headers option
Justin Mayer лет назад: 7
Родитель
Сommit
b7d91ea876
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      txt2tags_reader/txt2tags_reader.py

+ 1 - 1
txt2tags_reader/txt2tags_reader.py

@@ -21,7 +21,7 @@ class Txt2tagsReader(BaseReader):
                 content = "\n".join(text[i:])
                 content = "\n".join(text[i:])
                 break
                 break
 
 
-        t2t_cmd = [r"txt2tags", r"--encoding=utf-8", r"--target=html", r"--infile=-", r"--outfile=-"]
+        t2t_cmd = [r"txt2tags", r"--encoding=utf-8", r"--target=html", r"--infile=-", r"--outfile=-", r"--no-headers"]
 
 
         proc = subprocess.Popen(t2t_cmd,
         proc = subprocess.Popen(t2t_cmd,
                                 stdin = subprocess.PIPE,
                                 stdin = subprocess.PIPE,