Example #1
0
 protected override string Visit(BoldText boldText)
 => "**" + boldText.Text + "**";
Example #2
0
 protected override string Visit(BoldText boldText)
 => "<b>" + boldText.Text + "</b>";
Example #3
0
 protected abstract string Visit(BoldText boldText);
Example #4
0
 protected override string Visit(BoldText boldText)
 => "\\textbf{" + boldText.Text + "}";