cogs_mirror/crates/parser/src/main.rs
2024-11-15 21:34:49 +01:00

9 lines
No EOL
186 B
Rust

use cogs_parser::parse_cog;
fn main() {
println!("{:#?}", parse_cog("
<body>
<h1>Yo.</h1>
<a src=\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\">Click this</a>
</body>"));
}