fix: editor tab key

This commit is contained in:
trisua 2025-07-20 18:29:43 -04:00
parent 59b8c8cac6
commit a33ee961fe
5 changed files with 24 additions and 11 deletions

View file

@ -175,7 +175,7 @@ struct RenderMarkdown {
}
async fn render_request(Json(req): Json<RenderMarkdown>) -> impl IntoResponse {
tetratto_shared::markdown::render_markdown(&req.content, false)
crate::markdown::render_markdown(&req.content)
}
#[derive(Deserialize)]