htr_demo / helper /text /text_overview.py
Gabriel's picture
0.0.3 release with Trocr and compare support
c60ebd1
from helper.text.markdown_reader import read_markdown
class TextOverview:
# HTRFLOW
htrflow_col1 = read_markdown("helper/text/overview/htrflow/htrflow_col1.md")
htrflow_col2 = read_markdown("helper/text/overview/htrflow/htrflow_col2.md")
htrflow_row1 = read_markdown("helper/text/overview/htrflow/htrflow_row1.md")
htrflow_tab1 = read_markdown("helper/text/overview/htrflow/htrflow_tab1.md")
htrflow_tab2 = read_markdown("helper/text/overview/htrflow/htrflow_tab2.md")
htrflow_tab3 = read_markdown("helper/text/overview/htrflow/htrflow_tab3.md")
htrflow_tab4 = read_markdown("helper/text/overview/htrflow/htrflow_tab4.md")
# faq & discussion
text_faq = read_markdown("helper/text/overview/faq_discussion/faq.md")
text_discussion = read_markdown("helper/text/overview/faq_discussion/discussion.md")
# Contributions
contributions = read_markdown("helper/text/overview/contributions/contributions.md")
huminfra_image = read_markdown("helper/text/overview/contributions/huminfra_image.md")
# Changelog & Roadmap
changelog = read_markdown("helper/text/overview/changelog_roadmap/changelog.md")
old_changelog = read_markdown("helper/text/overview/changelog_roadmap/old_changelog.md")
roadmap = read_markdown("helper/text/overview/changelog_roadmap/roadmap.md")
# duplicate & api
duplicate = read_markdown("helper/text/overview/duplicate_api/duplicate.md")
api1 = read_markdown("helper/text/overview/duplicate_api/api1.md")
api_code1 = read_markdown("helper/text/overview/duplicate_api/api_code1.md")
api2 = read_markdown("helper/text/overview/duplicate_api/api2.md")
api_code2 = read_markdown("helper/text/overview/duplicate_api/api_code2.md")
if __name__ == "__main__":
pass