module Kramdown::Converter::MathEngine::MathjaxNode

def self.call(converter, el, opts)

def self.call(converter, el, opts)
  type = el.options[:category]
  cmd = [T2MPATH]
  cmd << "--inline" unless type == :block
  cmd << "--semantics" if converter.options[:math_engine_opts][:semantics] == true
  cmd << "--notexhints" if converter.options[:math_engine_opts][:texhints] == false
  result = IO.popen(cmd << el.value).read.strip
  attr = el.attr.dup
  attr.delete('xmlns')
  attr.delete('display')
  result.insert("<math".length, converter.html_attributes(attr))
  (type == :block ? "#{' '*opts[:indent]}#{result}\n" : result)
end