protected final List<Node> getModifiedChildren(
final Arguments arguments, final Element element, final String attributeName) {
final String text = getText(arguments, element, attributeName);
final Macro node = new Macro(text);
// Setting this allows avoiding text inliners processing already generated text,
// which in turn avoids code injection.
node.setProcessable(false);
return Collections.singletonList((Node) node);
}