Skip to content

Instantly share code, notes, and snippets.

@makerneo-com
Created September 25, 2013 06:35
Show Gist options
  • Select an option

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

Select an option

Save makerneo-com/6695864 to your computer and use it in GitHub Desktop.
# markdown2mediawiki
# http://www.mediawiki.org/wiki/Help:Formatting
cat 1.md | sed -e "
# # list
# s/^\(\s*\)#/\1\*/
# s/^*/1\./
#title
s/^#\s\(.*\)$/= \1 =/
s/^##\s\(.*\)$/== \1 ==/
s/^###\s\(.*\)$/=== \1 ===/
s/^####\s\(.*\)$/==== \1 ====/
s/^#####\s\(.*\)$/==== \1 =====/
#blockquote
s/^>\(.*\)$/<blockquote>\1<\/blockquote>/
#list
s/[0-9]\+\./#/
#bold
s/\*\(.*\)\*/'''\1'''/
/^\s*$/d
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment