Class: Asciidoctor::Standoc::FormInputMacro

Inherits:
Extensions::InlineMacroProcessor
  • Object
show all
Defined in:
lib/asciidoctor/standoc/macros_form.rb

Instance Method Summary collapse

Instance Method Details

#process(_parent, target, attr) ⇒ Object



7
8
9
10
11
# File 'lib/asciidoctor/standoc/macros_form.rb', line 7

def process(_parent, target, attr)
  m = %w(id name value disabled readonly checked maxlength minlength)
    .map { |a| attr[a] ? " #{a}='#{attr[a]}'" : nil }.compact
  %{<input type='#{target}' #{m.join}/>}
end