File size: 1,779 Bytes
69d1982
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e3ef86c
69d1982
 
 
c60ebd1
 
69d1982
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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