Class: Haml::Exec::HTML2Haml

Inherits:
Generic show all
Defined in:
lib/haml/exec.rb

Overview

The html2haml executable.

Instance Method Summary collapse

Methods inherited from Generic

#get_line, #parse!, #to_s

Constructor Details

#initialize(args) ⇒ HTML2Haml

Returns a new instance of HTML2Haml.

Parameters:

  • args (Array<String>)

    The command-line arguments



466
467
468
469
# File 'lib/haml/exec.rb', line 466

def initialize(args)
  super
  @module_opts = {}
end

Instance Method Details

#process_result

Processes the options set by the command-line arguments, and runs the HTML compiler appropriately.



508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# File 'lib/haml/exec.rb', line 508

def process_result
  super

  require 'haml/html'

  input = @options[:input]
  output = @options[:output]

  @module_opts[:erb] ||= input.respond_to?(:path) && input.path =~ /\.(rhtml|erb)$/
  @module_opts[:erb] &&= @options[:no_erb] != false

  output.write(::Haml::HTML.new(input, @module_opts).render)
rescue ::Haml::Error => e
  raise "#{e.is_a?(::Haml::SyntaxError) ? "Syntax error" : "Error"} on line " +
    "#{get_line e}: #{e.message}"
rescue LoadError => err
  dep = err.message.scan(/^no such file to load -- (.*)/)[0]
  raise err if @options[:trace] || dep.nil? || dep.empty?
  $stderr.puts "Required dependency #{dep} not found!\n  Use --trace for backtrace."
  exit 1
end

#set_opts(opts)

Tells optparse how to parse the arguments.

Parameters:

  • opts (OptionParser)


474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# File 'lib/haml/exec.rb', line 474

def set_opts(opts)
  opts.banner = <<END
Usage: html2haml [options] [INPUT] [OUTPUT]

Description: Transforms an HTML file into corresponding Haml code.

Options:
END

  opts.on('-e', '--erb', 'Parse ERb tags.') do
    @module_opts[:erb] = true
  end

  opts.on('--no-erb', "Don't parse ERb tags.") do
    @options[:no_erb] = true
  end

  opts.on('-r', '--rhtml', 'Deprecated; same as --erb.') do
    @module_opts[:erb] = true
  end

  opts.on('--no-rhtml', "Deprecated; same as --no-erb.") do
    @options[:no_erb] = true
  end

  opts.on('-x', '--xhtml', 'Parse the input using the more strict XHTML parser.') do
    @module_opts[:xhtml] = true
  end

  super
end