# File lib/builder/xmlmarkup.rb, line 189
189:     def initialize(options={})
190:       indent = options[:indent] || 0
191:       margin = options[:margin] || 0
192:       @quote = (options[:quote] == :single) ? "'" : '"'
193:       @explicit_nil_handling = options[:explicit_nil_handling]
194:       super(indent, margin)
195:       @target = options[:target] || ""
196:     end