Skip to content

Commit

Permalink
handle <subtitle> inside <cite> in FictionBook documents
Browse files Browse the repository at this point in the history
(cherry picked from commit 2e3faa0)
  • Loading branch information
slonopotamus authored and tsdgeos committed Nov 28, 2020
1 parent 9f7b452 commit 29ed5d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions generators/fictionbook/converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,9 @@ bool Converter::convertCite(const QDomElement &element)
} else if (child.tagName() == QLatin1String("empty-line")) {
if (!convertEmptyLine(child))
return false;
} else if (child.tagName() == QLatin1String("subtitle")) {
if (!convertSubTitle(child))
return false;
}

child = child.nextSiblingElement();
Expand Down

0 comments on commit 29ed5d1

Please sign in to comment.