* @param node The AST node.
*/
@Override
public void visit(VerbatimNode node) {
if ( options.isHighlightEnabled() && !options.isAutoHighlightEnabled() && node.getType().isEmpty() ) {
VerbatimNode noHighlightNode = new VerbatimNode(node.getText(), "no-highlight");
noHighlightNode.setStartIndex(node.getStartIndex());
noHighlightNode.setEndIndex(node.getEndIndex());
super.visit(noHighlightNode);
}
else {
super.visit(node);
}