class Sablon::HTMLConverter::Newline

Creates a blank line in the word document

Public Class Methods

new(*) click to toggle source
# File lib/sablon/html/ast.rb, line 510
def initialize(*)
  @properties = nil
  @attributes = {}
end

Public Instance Methods

inspect() click to toggle source
# File lib/sablon/html/ast.rb, line 515
def inspect
  "<Newline>"
end

Private Instance Methods

children_to_docx() click to toggle source
# File lib/sablon/html/ast.rb, line 521
def children_to_docx
  "<w:br/>"
end