Class: LiquidDiagrams::Renderers::SmcatRenderer

Inherits:
BasicRenderer show all
Defined in:
lib/liquid_diagrams/renderers/smcat_renderer.rb

Constant Summary collapse

OPTIONS =
%w[
  direction
  engine
  input-type
].freeze
XML_REGEX =
/^<\?xml(([^>]|\n)*>\n?){2}/.freeze

Constants inherited from BasicRenderer

BasicRenderer::FLAGS, BasicRenderer::FLAGS_PREFIX, BasicRenderer::OPTIONS_PREFIX, BasicRenderer::OPTIONS_SEPARATOR

Instance Method Summary collapse

Methods inherited from BasicRenderer

#arguments, #build_command, #executable, #initialize, render

Methods included from LiquidDiagrams::Rendering

render_with_command, render_with_stdin_stdout, render_with_tempfile

Constructor Details

This class inherits a constructor from LiquidDiagrams::BasicRenderer

Instance Method Details

#renderObject



14
15
16
17
18
# File 'lib/liquid_diagrams/renderers/smcat_renderer.rb', line 14

def render
  Rendering.render_with_tempfile(build_command, @content) do |input, output|
    "#{input} --output-to #{output}"
  end.sub(XML_REGEX, '')
end