lyx2lyx/lyx2lyx_tools.py: add support for parsing newline in lyx2latex

This commit is contained in:
Uwe Stöhr 2015-05-23 23:58:19 +02:00
parent 92e289a514
commit 24b0ea7c95

View File

@ -204,6 +204,8 @@ def lyx2latex(document, lines):
line = "''"
else:
line = "'"
elif line.startswith("\\begin_inset Newline newline"):
line = "\\\\ "
elif line.startswith("\\begin_inset space"):
line = line[18:].strip()
if line.startswith("\\hspace"):