Sha256: 8fd7c722c0508a530ea342c1b8751361dd90a3a5697ca1533411fd45f7be477c
Contents?: true
Size: 1.3 KB
Versions: 52
Compression:
Stored size: 1.3 KB
Contents
#!/usr/bin/ruby # # = bluecloth # # Format one or more text files with the markdown formatter. # # = Synopsis # # bluecloth [OPTIONS] [FILES] # # # BEGIN { require 'bluecloth' require 'optparse' } DocumentWrapper = %{ <html> <head><title>%s</title></head> <body> %s </body> </html> } def main fragment = false destination = '.' ARGV.options do |oparser| oparser.banner = "Usage: #$0 [OPTIONS] FILES" # Debug mode oparser.on( "--debug", "-d", TrueClass, "Turn debugging output on" ) { $DEBUG = true } # 'Fragment' mode oparser.on( "--fragment", "-f", TrueClass, "Output HTML fragments instead of whole documents" ) { fragment = true } # Output destination #oparser.on( "--output=DESTINATION", "-o DESTINATION", String, # "Write output to DESTINATION instead of the current directory" ) {|arg| # destination = arg #} oparser.parse! end # Filter mode if no arguments ARGV.push( "-" ) if ARGV.empty? ARGV.each {|file| if file == '-' contents = $stdin.readlines(nil) else contents = File::readlines( file, nil ) end bc = BlueCloth::new( contents.join ) if fragment $stdout.puts bc.to_html else $stdout.puts DocumentWrapper % [ file, bc.to_html ] end } rescue => err $stderr.puts "Aborting: Fatal error: %s" % err.message exit 255 end main
Version data entries
52 entries across 52 versions & 5 rubygems