Core parser infrastructure for the Universal Markup-language Compiler.
This crate provides the foundational traits and types for implementing language-specific parsers. It defines a generic parser framework that can be used to parse different markup languages (HTML, XML, etc.).
Example
use umc_parser::{Parser, LanguageParser};
use oxc_allocator::Allocator;
// Assuming Html implements LanguageParser
let allocator = Allocator::default();
let parser = Parser::::new(&allocator, "");
let result = parser.parse();