Fix #87, copy html to clipboard didn't work due to outdated pandoc args

webkit2png
Manuel Genovés 2018-11-23 21:20:06 +01:00
parent d3767c5957
commit 8b3252d68e
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ class UberwriterWindow(Gtk.ApplicationWindow):
"""Copies only html without headers etc. to Clipboard
"""
args = ['pandoc', '--from=markdown', '-smart', '-thtml']
args = ['pandoc', '--from=markdown', '--to=html5']
proc = subprocess.Popen(args, stdin=subprocess.PIPE,
stdout=subprocess.PIPE)