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

3
src/markdown.rs Normal file
View file

@ -0,0 +1,3 @@
pub fn render_markdown(input: &str) -> String {
tetratto_shared::markdown::render_markdown(input, false)
}