Skip to content

Instantly share code, notes, and snippets.

@fordnox
Created June 30, 2023 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fordnox/699a60931f4405bd09c0268e4915a0e3 to your computer and use it in GitHub Desktop.
Save fordnox/699a60931f4405bd09c0268e4915a0e3 to your computer and use it in GitHub Desktop.
Convert all folder markdown files to html
find ./content -name '*.md' | xargs -n 1 bash -c 'pandoc -f markdown -t html -o "${1/.md/.htm}" "${1}"' -
find ./content -name '*.md' -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment