Skip to content

Commit

Permalink
fix(docx): speacial pg ann rm
Browse files Browse the repository at this point in the history
  • Loading branch information
kaldan007 committed Jan 20, 2022
1 parent c802ba4 commit ca1e696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pedurma/docx_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def creat_docx_footnotes_at_end_of_page(text_id, collated_text, path):
for page in pages:
page_md, note_walker = parse_page(page, note_walker)
collated_text_md_kuma += page_md
collated_text_md_kuma = collated_text_md_kuma.replace("1-10000", "")
collated_text_md_kuma = collated_text_md_kuma.replace("1-100000", "")
collated_text_md_nam = collated_text_md_kuma
collated_text_md_kuma += parse_note(collated_text, lang="en")
collated_text_md_nam += parse_note(collated_text, lang="bo")
Expand Down

0 comments on commit ca1e696

Please sign in to comment.