visitTag method
Implementation
@override
dynamic visitTag(Tag node) {
// First try environment-scoped tags, then fall back to global registry
final tagCreator = context.getTag(node.name);
final tag = tagCreator != null
? tagCreator(node.content, node.filters)
: TagRegistry.createTag(node.name, node.content, node.filters);
tag?.preprocess(this);
tag?.body = node.body;
tag?.evaluate(this, buffer);
}