Skip to content

Instantly share code, notes, and snippets.

@ggarnier
Created January 13, 2015 16:00
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 ggarnier/2e0b3fa898050c072fe0 to your computer and use it in GitHub Desktop.
Save ggarnier/2e0b3fa898050c072fe0 to your computer and use it in GitHub Desktop.
textile_to_md.sed
# sed -f textile_to_md.sed original.textile > destination.md
s/"\([^"]*\)":\([^\. ]*\.html\)/[\1](\2)/g
s/^h3[^.]*\./###/
s/^h4\./####/
s/^h5\./#####/
s/^<js>$/~~~json/
s/^<\/js>$/~~~/
s/^<plain>$/~~~sh/
s/^<\/plain>$/~~~/
s/bq\./>/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment