commit 51939801f5ef305fc38d15b4ac86d85f4dd5aab4
Author: Thibaut Cuvelier <[email protected]>
Date: Mon Jul 20 02:47:40 2020 +0200
DocBook: better handling of paragraphs containing notes in the abstract.
---
src/output_docbook.cpp | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/src/output_docbook.cpp b/src/output_docbook.cpp
index d29362e..e1df2cc 100644
--- a/src/output_docbook.cpp
+++ b/src/output_docbook.cpp
@@ -669,7 +669,15 @@ DocBookInfoTag getParagraphsWithInfo(ParagraphList const
¶graphs, pit_type c
pit_type cpit = bpit;
while (cpit < epit) {
- Layout const &style = paragraphs[cpit].layout();
+ // Skip paragraphs only containing one note.
+ Paragraph const &par = paragraphs[cpit];
+ if (par.size() == 1 &&
dynamic_cast<InsetNote*>(paragraphs[cpit].insetList().get(0))) {
+ cpit += 1;
+ continue;
+ }
+
+ // Based on layout information, store this paragraph in one
set: should be in <info>, must be.
+ Layout const &style = par.layout();
if (style.docbookininfo() == "always") {
mustBeInInfo.emplace(cpit);
} else if (style.docbookininfo() == "maybe") {
@@ -680,7 +688,8 @@ DocBookInfoTag getParagraphsWithInfo(ParagraphList const
¶graphs, pit_type c
}
cpit += 1;
}
- // Now, bpit points to the last paragraph that has things that could go
in <info>.
+ // Now, cpit points to the last paragraph that has things that could go
in <info>.
+ // bpit is still the beginning of the <info> part.
return make_tuple(shouldBeInInfo, mustBeInInfo, bpit, cpit);
}
--
lyx-cvs mailing list
[email protected]
http://lists.lyx.org/mailman/listinfo/lyx-cvs