From cd046c9f5d8dda998acbe1f6c3a110c0b80d0ded Mon Sep 17 00:00:00 2001 From: Eric David Smith Date: Sat, 8 Jul 2023 14:55:42 -0400 Subject: [PATCH] Create README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b2b9ca8 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# Wikipedia To Markdown + +This is a simple script to convert a Wikipedia article to Markdown. + +## Prerequisites + +- Python 3 + +## Installation + +```bash +git clone +cd wikipedia-markdown-generator +pip3 install -r requirements.txt +``` + +## Usage + +```bash +python3 wiki-to-md.py +``` + +## Output + +The output is a Markdown file with the same name as the topic name in your current directory. + +## Why? + +I wanted to convert some Wikipedia articles to Markdown for my personal notes. I couldn't find a simple script to do this, so I wrote one myself. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.