├── .gitignore ├── README.md ├── main.py ├── requirements.txt └── wordpaste.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/word2md/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # word2md 2 | 3 | A FastHTML app that converts pasted MS Word into markdown. 4 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/word2md/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | html2text 2 | python-fasthtml>=0.1.1 3 | 4 | -------------------------------------------------------------------------------- /wordpaste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnswerDotAI/word2md/HEAD/wordpaste.js --------------------------------------------------------------------------------