require_relative 'processor' module SSMD::Processors class EmphasisProcessor < Processor def result text = match.captures.first "#{text}" end def regex /\*([^\*]+)\*/ end end end