├── .gitignore ├── LICENSE ├── README.md ├── favicon.ico ├── main.py ├── requirements.txt └── samp.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/web2md/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/web2md/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # web2md 2 | Convert a web page to markdown 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/web2md/HEAD/favicon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/web2md/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | html2text 2 | trafilatura 3 | lxml 4 | python-fasthtml>=0.2 5 | 6 | -------------------------------------------------------------------------------- /samp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/web2md/HEAD/samp.html --------------------------------------------------------------------------------