1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 17:59:33 +02:00

break line on blackquote

This commit is contained in:
Nikolay Pultsin 2014-09-17 03:10:12 +01:00
parent 18523e6364
commit e37b4dca88

View file

@ -338,6 +338,8 @@ shared_ptr<HtmlTagAction> HtmlBookReader::createAction(const std::string &tag) {
return new HtmlBreakTagAction(*this, HtmlBreakTagAction::BREAK_AT_START_AND_AT_END); return new HtmlBreakTagAction(*this, HtmlBreakTagAction::BREAK_AT_START_AND_AT_END);
} else if (tag == "br") { } else if (tag == "br") {
return new HtmlBreakTagAction(*this, HtmlBreakTagAction::BREAK_AT_START_AND_AT_END); return new HtmlBreakTagAction(*this, HtmlBreakTagAction::BREAK_AT_START_AND_AT_END);
} else if (tag == "blockquote") {
return new HtmlBreakTagAction(*this, HtmlBreakTagAction::BREAK_AT_START_AND_AT_END);
} else if (tag == "img") { } else if (tag == "img") {
return new HtmlImageTagAction(*this); return new HtmlImageTagAction(*this);
} else if (tag == "ul") { } else if (tag == "ul") {
@ -374,8 +376,6 @@ shared_ptr<HtmlTagAction> HtmlBookReader::createAction(const std::string &tag) {
return 0; return 0;
} else if (tag == "acronym") { } else if (tag == "acronym") {
return 0; return 0;
} else if (tag == "blockquote") {
return 0;
} else if (tag == "q") { } else if (tag == "q") {
return 0; return 0;
} else if (tag == "ins") { } else if (tag == "ins") {