Skip to content

Instantly share code, notes, and snippets.

@osama2kabdullah
Forked from janbiasi/export.sh
Created October 8, 2024 13:31
Show Gist options
  • Save osama2kabdullah/7e2ffd4c159ed553489591548a679e92 to your computer and use it in GitHub Desktop.
Save osama2kabdullah/7e2ffd4c159ed553489591548a679e92 to your computer and use it in GitHub Desktop.
Export Markdown file as HTML files
#!/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