Небольшая поправка

This commit is contained in:
Book Pauk
2020-12-24 21:35:31 +07:00
parent f0b0c39328
commit dc48700e9e

View File

@@ -393,6 +393,7 @@ export default class BookParser {
if (tag == 'text-author') { if (tag == 'text-author') {
newParagraph(); newParagraph();
bold = true;
space += 1; space += 1;
} }
} }
@@ -443,7 +444,9 @@ export default class BookParser {
} }
if (tag == 'text-author') { if (tag == 'text-author') {
bold = false;
space -= 1; space -= 1;
newParagraph();
} }
} }