This is a CLI tool designed to convert Markdown Files to HTML files and vice versa
- Clone the repository to your local machine:
git clone https://github.com/MananNigam/HTML_Markdown_Converter.git
- Navigate to the project directory.
- Install the required (
markdown
andmarkdown2
) libraries:
pip install markdown markdown2
To use the tool, run this statement in the terminal:
python md_html_converter.py {input_file_path} {output_file_path}
Replace {input_file_path}
with the file path for the input file (.md
or .html
file), and {output_file_path}
with the file path for the output file where the converted content is to be stored.