class Parchment::TXT::TextRun

Public Class Methods

new(line, paragraph, document) click to toggle source
# File lib/parchment/formats/txt/text_run.rb, line 5
def initialize(line, paragraph, document)
  @content = @node = line # superclass expects @node, so we give it @node
  @style = paragraph.style
end