mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
tex2lyx/text.cpp: add some further missing things from r36947
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36957 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cc1710e943
commit
3d75bdc035
@ -2551,7 +2551,8 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (t.cs() == "newline") {
|
else if (t.cs() == "newline"
|
||||||
|
|| t.cs() == "linebreak") {
|
||||||
context.check_layout(os);
|
context.check_layout(os);
|
||||||
os << "\n\\" << t.cs() << "\n";
|
os << "\n\\" << t.cs() << "\n";
|
||||||
skip_spaces_braces(p);
|
skip_spaces_braces(p);
|
||||||
@ -2694,6 +2695,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
|
|||||||
}
|
}
|
||||||
|
|
||||||
else if (t.cs() == "newpage" ||
|
else if (t.cs() == "newpage" ||
|
||||||
|
t.cs() == "pagebreak" ||
|
||||||
t.cs() == "clearpage" ||
|
t.cs() == "clearpage" ||
|
||||||
t.cs() == "cleardoublepage") {
|
t.cs() == "cleardoublepage") {
|
||||||
context.check_layout(os);
|
context.check_layout(os);
|
||||||
|
Loading…
Reference in New Issue
Block a user