Sha256: 86df6e1b9ad666616558d04572894ae92d2c1e2192dcd69e209bcbd8e227469f
Contents?: true
Size: 908 Bytes
Versions: 2
Compression:
Stored size: 908 Bytes
Contents
# encoding: UTF-8 module Asciidoctor # Public: Methods for managing inline elements in AsciiDoc block class Inline < AbstractNode # Public: Get the text of this inline element attr_reader :text # Public: Get the type (qualifier) of this inline element attr_reader :type # Public: Get/Set the target (e.g., uri) of this inline element attr_accessor :target def initialize(parent, context, text = nil, opts = {}) super(parent, context) @node_name = %(inline_#{context}) @text = text @id = opts[:id] @type = opts[:type] @target = opts[:target] unless (more_attributes = opts[:attributes]).nil_or_empty? update_attributes more_attributes end end def block? false end def inline? true end def convert converter.convert self end # Alias render to convert to maintain backwards compatibility alias :render :convert end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
asciidoctor-1.5.5 | lib/asciidoctor/inline.rb |
asciidoctor-1.5.4 | lib/asciidoctor/inline.rb |