Skip to content

Instantly share code, notes, and snippets.

@shujishigenobu
Created March 10, 2018 07:18
Show Gist options
  • Select an option

  • Save shujishigenobu/d695816df77206b59d221a2b994ffb21 to your computer and use it in GitHub Desktop.

Select an option

Save shujishigenobu/d695816df77206b59d221a2b994ffb21 to your computer and use it in GitHub Desktop.
##
# to_dokuwiki_table.rb
# convert tab-delimited text to dokuwiki table
file = ARGV[0]
File.open(file).each do |l|
a = l.chomp.split(/\t/)
puts "|" + a.map{|x| "#{x} "}.join("|") + "|"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment