This is a console application that converts Markdown subsets to HTML. It can read markdown subsets, convert subsets to HTML type and than write to an HTML file or create HTMl output file with converted text
Functions:
- Bold text:
**test**changes to<strong>test</strong> - Italic text:
_test_changes to<em>test</em> - Monospaced text: `test` changes to
<code>test</code> - Newlines: Newlines are changed to
<br> - Preformatted text: ```test``` changes to
<pre>test</pre>
Revert:My revert commit is in commit history with df887d8 id
-
Cloning: Clone the repository to your local machine
-
How to Use:
- Open your terminal
- Navigate to the derictory with your project
- Adjust and then run a command:
node file.js file.md file.htmlYou need to replace
file.jswith your js file,file.mdwith name of your Markdown file or proper Path to your Markdown file,file.htmlwith name of your HTML file or Path to your HTML file