Forráskód Böngészése

Merge pull request #959 from fgallaire/master

txt2tags_reader: Add --no-headers option
Justin Mayer 7 éve
szülő
commit
b7d91ea876
1 módosított fájl, 1 hozzáadás és 1 törlés
  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:])
                 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,
                                 stdin = subprocess.PIPE,