From fa92049616da12d682347fa7558073346772159a Mon Sep 17 00:00:00 2001 From: asukhodko <24243464+asukhodko@users.noreply.github.com> Date: Mon, 12 Jan 2026 11:23:18 +0300 Subject: [PATCH] Fix Quick Start code block rendering --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a02d1c5..8b5b714 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A semantic Markdown chunker that preserves document structure for RAG and LLM pi pip install chunkana ``` -```python +````python from chunkana import chunk_markdown text = """ @@ -36,7 +36,7 @@ chunks = chunk_markdown(text) for chunk in chunks: print(f"Lines {chunk.start_line}-{chunk.end_line}: {chunk.metadata['header_path']}") print(f"Content: {chunk.content[:100]}...") -``` +```` ## What You Get