├── .gitignore ├── LICENSE ├── README.md ├── doc ├── README.de.md ├── README.en.md ├── README.es.md ├── README.fr.md ├── README.hi.md ├── README.ja.md ├── README.ko.md ├── README.pt.md ├── README.ru.md └── README.zh-tw.md ├── requirements.txt └── src ├── MarkdownTranslator.py ├── Nodes.py ├── Translator.py ├── Utils.py ├── config.py └── config.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.de.md -------------------------------------------------------------------------------- /doc/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.en.md -------------------------------------------------------------------------------- /doc/README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.es.md -------------------------------------------------------------------------------- /doc/README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.fr.md -------------------------------------------------------------------------------- /doc/README.hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.hi.md -------------------------------------------------------------------------------- /doc/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.ja.md -------------------------------------------------------------------------------- /doc/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.ko.md -------------------------------------------------------------------------------- /doc/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.pt.md -------------------------------------------------------------------------------- /doc/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.ru.md -------------------------------------------------------------------------------- /doc/README.zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/doc/README.zh-tw.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/MarkdownTranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/MarkdownTranslator.py -------------------------------------------------------------------------------- /src/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/Nodes.py -------------------------------------------------------------------------------- /src/Translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/Translator.py -------------------------------------------------------------------------------- /src/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/Utils.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/config.py -------------------------------------------------------------------------------- /src/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyMayfly/Free-Markdown-Translator/HEAD/src/config.yaml --------------------------------------------------------------------------------