Inline Macro Processor Extension Example
- Purpose
 - 
Create an inline macro named
manthat links to a manpage. 
ManpageInlineMacro
require 'asciidoctor'
require 'asciidoctor/extensions'
class ManInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
  use_dsl
  named :man
  name_positional_attributes 'volnum'
  def process parent, target, attrs
    text = manname = target
    suffix = ''
    target = %(#{manname}.html)
    suffix = if (volnum = attrs['volnum'])
      "(#{volnum})"
    else
      nil
    end
    parent.document.register :links, target
    %(#{(create_anchor parent, text, type: :link, target: target).convert}#{suffix})
  end
end