Skip to content

Instantly share code, notes, and snippets.

@sms420
Created September 14, 2009 05:37
Show Gist options
  • Select an option

  • Save sms420/186525 to your computer and use it in GitHub Desktop.

Select an option

Save sms420/186525 to your computer and use it in GitHub Desktop.
wiki to html
#!/bin/bash
#wiki_to_html.sh
#converts wiki formatted doc to html
find ./ -name '*.txt' -print | while read i
do
sed 's/\[\[/\<a href="/g' $i >$i.bak && mv $i.bak $i
sed 's/|/">/g' $i >$i.bak && mv $i.bak $i
sed 's/\]\]/\<\/a\>/g' $i >$i.bak && mv $i.bak $i
done
# input:
# [[www.google.com|goog]]
# output:
# <a href="www.google.com">goog</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment