umc_parser 0.0.0

The Universal Markup-language Compiler, Rust-based.
Documentation

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::<Html>::new(&allocator, "<html></html>");
let result = parser.parse();