Skip to content

Commit

Permalink
Merge pull request #46 from saadulkh/</p>-fix
Browse files Browse the repository at this point in the history
Fix paragraph ending
  • Loading branch information
synesthesiam authored Jul 3, 2024
2 parents 5de53d2 + 6866dad commit c2c949e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gruut/text_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,9 @@ def in_inline_lexicon(
# End of sentence
last_sentence = None
elif end_tag == "p":
# End of paragraph
# End of paragraph and sentence
last_paragraph = None
last_sentence = None
elif end_tag == "speak":
# End of speak
last_speak = root
Expand Down

0 comments on commit c2c949e

Please sign in to comment.