Skip to content

Instantly share code, notes, and snippets.

@makerneo-com
Created November 30, 2013 13:01
Show Gist options
  • Select an option

  • Save makerneo-com/7718823 to your computer and use it in GitHub Desktop.

Select an option

Save makerneo-com/7718823 to your computer and use it in GitHub Desktop.
# markdown2org
find . | grep '\.md$' | xargs -i \
sed -i '
/```/,/```/ !{
#unorder list
s/^\s*\*/+/
#title
s/^####\s*\(.*\)\s*$/**** \1/
s/^###\s*\(.*\)\s*$/*** \1/
s/^##\s*\(.*\)\s*$/** \1/
s/^#\s*\(.*\)\s*$/* \1/
#url
/http:/ !{
/https:/ !{
s/\[\(.*\)\](\(.*\).md)/[[.\/\2.org][\1]]/
}
}
}
' {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment