Skip to content

Instantly share code, notes, and snippets.

@alexisduque
Last active February 7, 2017 09:38
Show Gist options
  • Save alexisduque/6e06d7bd92f51defa5fdf01efb85e5ff to your computer and use it in GitHub Desktop.
Save alexisduque/6e06d7bd92f51defa5fdf01efb85e5ff to your computer and use it in GitHub Desktop.
markdown to asciidoc
find . -name "*.md*" | while read i; do pandoc -f markdown -t asciidoc "$i" -o "${i%.*}.adoc"; done
for file in *.png; do convert $file -resize 500x500 -quality 90 "${file%.*}.jpg" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment