#!/usr/bin/env ruby # fmt-as-table ORIGIN HEADER OPTION # ORIGIN: the file to format as a table. Each row must be newline-delimited, # and each column tab-delimited. Anything following a # is treated as # a comment and ignored. # HEADER: the headers. This must be passed as a single string with each column # tab-delimited. # OPTION: a string specifying output format options, comma-delimited. Currently # supported are: # collapsible(summary) Create a
tag surrounding it, to make # the table collapsible. `summary` must be a string # which contains the text to place in the # tag of the
. if ARGV[0] == nil or ARGV[1] == nil then puts "No argument passed! Exitting early.\n" exit end ## Handle options is_collapsible = false collapsible_summary = "" option="" if ARGV[2] != nil then option=ARGV[2] end options=option.split "," options.each do |opt| if opt[0..10] == "collapsible" then is_collapsible = true collapsible_summary = opt.split("(")[1].split(")")[0] end end table="" if is_collapsible then table << "
\n" table << "" << collapsible_summary << "\n" end # Sort out the header. table << "\n" table << "\t\n" ARGV[1].split("\t").each do |entry| table << ("\t\t\n") end table << "\t\n\n" # Now sort out the actual file. File.foreach(ARGV[0]).with_index do |line, line_num| next if line[0] == '#' next if line == "\n" or line == "\t" or line == "" table << "\t\n" line.split("\t").each do |entry| table << ("\t\t\n") end table << "\t\n" end table << "
" + entry + "
" + entry.delete("\n") + "
\n" if is_collapsible then table << "
" end # Echo the file. puts table