Sha256: 513417371bc3711bbe9829e24e3eae867899771ac2651f08c6658f54b6cbec66
Contents?: true
Size: 564 Bytes
Versions: 8
Compression:
Stored size: 564 Bytes
Contents
module Stepmod module Utils module Converters class ExtDescription < Stepmod::Utils::Converters::Base def convert(node, state = {}) state = state.merge(schema_name: node["linkend"], non_flanking_whitesapce: true) child_text = treat_children(node, state).strip <<~TEMPLATE (*"#{node['linkend']}" #{child_text} *) TEMPLATE end end ReverseAdoc::Converters.register :ext_description, ExtDescription.new end end end
Version data entries
8 entries across 8 versions & 1 rubygems