Add word-level parsing

This commit is contained in:
Juno Takano 2025-12-18 02:20:11 -03:00
commit 198bc12507
34 changed files with 743 additions and 446 deletions

View file

@ -5,18 +5,7 @@ use axum::{
Form,
};
use crate::{
formats::populate_graph,
handlers,
syntax::content::{
self,
parsers::{
line::elements::{paragraph::Paragraph, span::Span},
compound::elements::literal::Literal,
},
},
types::{Config, Node},
};
use crate::{formats::populate_graph, handlers, types::Node};
#[expect(clippy::unused_async)]
pub async fn page(template: &str) -> Response<Body> {