-
-
Save osama2kabdullah/7e2ffd4c159ed553489591548a679e92 to your computer and use it in GitHub Desktop.
Export Markdown file as HTML files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# for each md file in the directory | |
for file in *.md | |
do | |
# convert each file to html and place it in the html directory | |
# --gfm == use github flavoured markdown | |
marked -o pages/$file.html $file --gfm | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment