08a27fea2151 — Sean Russell 2.0 13 years ago
Fixes docs
1 files changed, 10 insertions(+), 10 deletions(-)

M pdf.rb
M pdf.rb +10 -10
@@ 19,39 19,39 @@ module RML
 			proc {|v,opts| opts[:orientation] = :landscape}
 		]
 		OPTIONS << [
-			["","--header FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
+			["--header FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:header] = [] unless opts[:header] ; opts[:header] << v}
 		]
 		OPTIONS << [
-			["","--header-left FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
+			["--header-left FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:header_left] = [] unless opts[:header_left] ; opts[:header_left] << v}
 		]
 		OPTIONS << [
-			["","--header-right FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
+			["--header-right FORMAT", "Use FORMAT as header (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:header_right] = [] unless opts[:header_right] ; opts[:header_right] << v}
 		]
 		OPTIONS << [
-			["","--header-margin", "Draw a margin below the header"],
+			["--header-margin", "Draw a margin below the header"],
 			proc { opts[:header_margin] = true}
 		]
 		OPTIONS << [
-			["","--footer FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
+			["--footer FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:footer] = [] unless opts[:footer] ; opts[:footer] << v}
 		]
 		OPTIONS << [
-			["","--footer-left FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
+			["--footer-left FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:footer_left] = [] unless opts[:footer_left] ; opts[:footer_left] << v}
 		]
 		OPTIONS << [
-			["","--footer-right FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
+			["--footer-right FORMAT", "Use FORMAT as footer (may appear multiple times, see --list-formatting)"],
 			proc {|v,opts| opts[:footer_right] = [] unless opts[:footer_right] ; opts[:footer_right] << v}
 		]
 		OPTIONS << [
-			["","--footer-margin", "Draw a margin below the footer"],
+			["--footer-margin", "Draw a margin below the footer"],
 			proc {opts[:footer_margin] = true}
 		]
 		OPTIONS << [
-			['', "--list-formatting", "List all of the supported header/footer formatting options"],
+			["--list-formatting", "List all of the supported header/footer formatting options"],
 			proc {
 				puts "<page>  = page number"
 				puts "<total> = total # of pages"

          
@@ 67,7 67,7 @@ module RML
 			proc {|v,opts| opts[:title] = true}
 		]
 		OPTIONS << [
-			["","--dual-column", "Attempt 2-column output"],
+			["--dual-column", "Attempt 2-column output"],
 			proc {|v,opts| opts[:dual_column] = true}
 		]