From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- web/fmt-as-table | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100755 web/fmt-as-table (limited to 'web/fmt-as-table') diff --git a/web/fmt-as-table b/web/fmt-as-table new file mode 100755 index 0000000..c7064b5 --- /dev/null +++ b/web/fmt-as-table @@ -0,0 +1,75 @@ +#!/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 + -- cgit v1.2.1