Skip to content

Instantly share code, notes, and snippets.

@makerneo-com
Created September 11, 2013 15:29
Show Gist options
  • Select an option

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

Select an option

Save makerneo-com/6525274 to your computer and use it in GitHub Desktop.
# vimwiki2markdown
find . | grep '\.wiki$' | xargs -i \
sed -i '
/{{{class="brush:\S\+;"/,/}}}/ !{
# list
s/^\(\s*\)#/\1\*/
s/^*/1\./
# title
s/^====\s*\(.*\)\s*====\s*$/#### \1/
s/^===\s*\(.*\)\s*===\s*$/### \1/
s/^==\s*\(.*\)\s*==\s*$/## \1/
s/^=\s*\(.*\)\s*=\s*$/# \1/
s/%title\s*\(.*\)/# \1/
}
#link
/\[\[http:/{
s/\[\[\(.*\)\]\]/[\1](\1)/
}
/\[\[http:/ !{
s/\[\[\(.*\)\]\]/[\1](\1.md)/
}
{
# code
s/{{{class="brush:\(\S\+\);"/``` \1/
s/}}}/```/
}
' {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment