├── .gitignore ├── README.md ├── dataset ├── gt │ ├── financial_report_1.md │ ├── financial_report_2.md │ ├── financial_report_3.md │ ├── financial_report_4.md │ ├── financial_report_5.md │ ├── paper_1.md │ ├── paper_2.md │ ├── paper_3.md │ ├── paper_4.md │ ├── paper_5.md │ ├── paper_6.md │ ├── paper_7.md │ ├── research_report_1.md │ ├── research_report_10.md │ ├── research_report_11.md │ ├── research_report_2.md │ ├── research_report_3.md │ ├── research_report_4.md │ ├── research_report_6.md │ ├── research_report_7.md │ ├── research_report_8.md │ └── research_report_9.md ├── pred │ ├── gpt-4o │ │ ├── financial_report_1.md │ │ ├── financial_report_2.md │ │ ├── financial_report_3.md │ │ ├── financial_report_4.md │ │ ├── financial_report_5.md │ │ ├── paper_1.md │ │ ├── paper_2.md │ │ ├── paper_3.md │ │ ├── paper_4.md │ │ ├── paper_5.md │ │ ├── paper_6.md │ │ ├── paper_7.md │ │ ├── research_report_1.md │ │ ├── research_report_10.md │ │ ├── research_report_11.md │ │ ├── research_report_2.md │ │ ├── research_report_3.md │ │ ├── research_report_4.md │ │ ├── research_report_6.md │ │ ├── research_report_7.md │ │ ├── research_report_8.md │ │ └── research_report_9.md │ ├── intsig │ │ ├── financial_report_1.md │ │ ├── financial_report_2.md │ │ ├── financial_report_3.md │ │ ├── financial_report_4.md │ │ ├── financial_report_5.md │ │ ├── paper_1.md │ │ ├── paper_2.md │ │ ├── paper_3.md │ │ ├── paper_4.md │ │ ├── paper_5.md │ │ ├── paper_6.md │ │ ├── paper_7.md │ │ ├── research_report_1.md │ │ ├── research_report_10.md │ │ ├── research_report_11.md │ │ ├── research_report_2.md │ │ ├── research_report_3.md │ │ ├── research_report_4.md │ │ ├── research_report_6.md │ │ ├── research_report_7.md │ │ ├── research_report_8.md │ │ └── research_report_9.md │ ├── vendor_A │ │ ├── financial_report_1.md │ │ ├── financial_report_2.md │ │ ├── financial_report_3.md │ │ ├── financial_report_4.md │ │ ├── financial_report_5.md │ │ ├── paper_1.md │ │ ├── paper_2.md │ │ ├── paper_3.md │ │ ├── paper_4.md │ │ ├── paper_5.md │ │ ├── paper_6.md │ │ ├── paper_7.md │ │ ├── research_report_1.md │ │ ├── research_report_10.md │ │ ├── research_report_11.md │ │ ├── research_report_2.md │ │ ├── research_report_3.md │ │ ├── research_report_4.md │ │ ├── research_report_6.md │ │ ├── research_report_7.md │ │ ├── research_report_8.md │ │ └── research_report_9.md │ └── vendor_B │ │ ├── financial_report_1.md │ │ ├── financial_report_2.md │ │ ├── financial_report_3.md │ │ ├── financial_report_4.md │ │ ├── financial_report_5.md │ │ ├── paper_1.md │ │ ├── paper_2.md │ │ ├── paper_3.md │ │ ├── paper_4.md │ │ ├── paper_5.md │ │ ├── paper_6.md │ │ ├── paper_7.md │ │ ├── research_report_1.md │ │ ├── research_report_10.md │ │ ├── research_report_11.md │ │ ├── research_report_2.md │ │ ├── research_report_3.md │ │ ├── research_report_4.md │ │ ├── research_report_6.md │ │ ├── research_report_7.md │ │ ├── research_report_8.md │ │ └── research_report_9.md └── sample │ ├── financial_report_1.pdf │ ├── financial_report_2.pdf │ ├── financial_report_3.pdf │ ├── financial_report_4.pdf │ ├── financial_report_5.pdf │ ├── paper_1.pdf │ ├── paper_2.pdf │ ├── paper_3.pdf │ ├── paper_4.pdf │ ├── paper_5.pdf │ ├── paper_6.pdf │ ├── paper_7.pdf │ ├── research_report_1.pdf │ ├── research_report_10.pdf │ ├── research_report_11.pdf │ ├── research_report_2.pdf │ ├── research_report_3.pdf │ ├── research_report_4.pdf │ ├── research_report_6.pdf │ ├── research_report_7.pdf │ ├── research_report_8.pdf │ └── research_report_9.pdf ├── doc ├── chart.png └── table.png ├── font ├── SimHei.ttf └── __init__.py ├── install.sh ├── requirements.txt ├── run_test.py ├── tester ├── __init__.py ├── order_evaluation │ ├── __init__.py │ └── order_evaluation.py ├── table_converter │ ├── __init__.py │ └── converter.py ├── table_evaluation │ ├── __init__.py │ ├── html_to_metric │ │ ├── __init__.py │ │ └── metric.py │ └── md_to_metric │ │ ├── __init__.py │ │ └── md_metric.py ├── test_function.py └── text_evaluation │ ├── __init__.py │ └── text_evaluation.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/README.md -------------------------------------------------------------------------------- /dataset/gt/financial_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/financial_report_1.md -------------------------------------------------------------------------------- /dataset/gt/financial_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/financial_report_2.md -------------------------------------------------------------------------------- /dataset/gt/financial_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/financial_report_3.md -------------------------------------------------------------------------------- /dataset/gt/financial_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/financial_report_4.md -------------------------------------------------------------------------------- /dataset/gt/financial_report_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/financial_report_5.md -------------------------------------------------------------------------------- /dataset/gt/paper_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_1.md -------------------------------------------------------------------------------- /dataset/gt/paper_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_2.md -------------------------------------------------------------------------------- /dataset/gt/paper_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_3.md -------------------------------------------------------------------------------- /dataset/gt/paper_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_4.md -------------------------------------------------------------------------------- /dataset/gt/paper_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_5.md -------------------------------------------------------------------------------- /dataset/gt/paper_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_6.md -------------------------------------------------------------------------------- /dataset/gt/paper_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/paper_7.md -------------------------------------------------------------------------------- /dataset/gt/research_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_1.md -------------------------------------------------------------------------------- /dataset/gt/research_report_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_10.md -------------------------------------------------------------------------------- /dataset/gt/research_report_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_11.md -------------------------------------------------------------------------------- /dataset/gt/research_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_2.md -------------------------------------------------------------------------------- /dataset/gt/research_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_3.md -------------------------------------------------------------------------------- /dataset/gt/research_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_4.md -------------------------------------------------------------------------------- /dataset/gt/research_report_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_6.md -------------------------------------------------------------------------------- /dataset/gt/research_report_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_7.md -------------------------------------------------------------------------------- /dataset/gt/research_report_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_8.md -------------------------------------------------------------------------------- /dataset/gt/research_report_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/gt/research_report_9.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/financial_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/financial_report_1.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/financial_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/financial_report_2.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/financial_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/financial_report_3.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/financial_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/financial_report_4.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/financial_report_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/financial_report_5.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_1.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_2.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_3.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_4.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_5.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_6.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/paper_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/paper_7.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_1.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_10.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_11.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_2.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_3.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_4.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_6.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_7.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_8.md -------------------------------------------------------------------------------- /dataset/pred/gpt-4o/research_report_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/gpt-4o/research_report_9.md -------------------------------------------------------------------------------- /dataset/pred/intsig/financial_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/financial_report_1.md -------------------------------------------------------------------------------- /dataset/pred/intsig/financial_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/financial_report_2.md -------------------------------------------------------------------------------- /dataset/pred/intsig/financial_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/financial_report_3.md -------------------------------------------------------------------------------- /dataset/pred/intsig/financial_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/financial_report_4.md -------------------------------------------------------------------------------- /dataset/pred/intsig/financial_report_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/financial_report_5.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_1.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_2.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_3.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_4.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_5.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_6.md -------------------------------------------------------------------------------- /dataset/pred/intsig/paper_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/paper_7.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_1.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_10.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_11.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_2.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_3.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_4.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_6.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_7.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_8.md -------------------------------------------------------------------------------- /dataset/pred/intsig/research_report_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/intsig/research_report_9.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/financial_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/financial_report_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/financial_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/financial_report_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/financial_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/financial_report_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/financial_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/financial_report_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/financial_report_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/financial_report_5.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_5.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_6.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/paper_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/paper_7.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_10.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_11.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_6.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_7.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_8.md -------------------------------------------------------------------------------- /dataset/pred/vendor_A/research_report_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_A/research_report_9.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/financial_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/financial_report_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/financial_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/financial_report_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/financial_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/financial_report_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/financial_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/financial_report_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/financial_report_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/financial_report_5.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_5.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_6.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/paper_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/paper_7.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_1.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_10.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_11.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_2.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_3.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_4.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_6.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_7.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_8.md -------------------------------------------------------------------------------- /dataset/pred/vendor_B/research_report_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/pred/vendor_B/research_report_9.md -------------------------------------------------------------------------------- /dataset/sample/financial_report_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/financial_report_1.pdf -------------------------------------------------------------------------------- /dataset/sample/financial_report_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/financial_report_2.pdf -------------------------------------------------------------------------------- /dataset/sample/financial_report_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/financial_report_3.pdf -------------------------------------------------------------------------------- /dataset/sample/financial_report_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/financial_report_4.pdf -------------------------------------------------------------------------------- /dataset/sample/financial_report_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/financial_report_5.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_1.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_2.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_3.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_4.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_5.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_6.pdf -------------------------------------------------------------------------------- /dataset/sample/paper_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/paper_7.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_1.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_10.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_11.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_2.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_3.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_4.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_6.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_7.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_8.pdf -------------------------------------------------------------------------------- /dataset/sample/research_report_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/dataset/sample/research_report_9.pdf -------------------------------------------------------------------------------- /doc/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/doc/chart.png -------------------------------------------------------------------------------- /doc/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/doc/table.png -------------------------------------------------------------------------------- /font/SimHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/font/SimHei.ttf -------------------------------------------------------------------------------- /font/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/run_test.py -------------------------------------------------------------------------------- /tester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/order_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/order_evaluation/order_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/order_evaluation/order_evaluation.py -------------------------------------------------------------------------------- /tester/table_converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/table_converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/table_converter/converter.py -------------------------------------------------------------------------------- /tester/table_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/table_evaluation/html_to_metric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/table_evaluation/html_to_metric/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/table_evaluation/html_to_metric/metric.py -------------------------------------------------------------------------------- /tester/table_evaluation/md_to_metric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/table_evaluation/md_to_metric/md_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/table_evaluation/md_to_metric/md_metric.py -------------------------------------------------------------------------------- /tester/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/test_function.py -------------------------------------------------------------------------------- /tester/text_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tester/text_evaluation/text_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/tester/text_evaluation/text_evaluation.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intsig-textin/markdown_tester/HEAD/utils.py --------------------------------------------------------------------------------