Skip to content
Snippets Groups Projects
Unverified Commit 660a2b34 authored by Philipp Serrer's avatar Philipp Serrer Committed by GitHub
Browse files

fix: text before heading in markdown reader (#864)

parent 6d210928
No related branches found
No related tags found
No related merge requests found
---
"llamaindex": minor
---
Fix text before heading in markdown reader
......@@ -43,6 +43,8 @@ export class MarkdownReader implements FileReader {
continue;
}
markdownTups.push([currentHeader, currentText]);
} else if (currentText) {
markdownTups.push([null, currentText]);
}
currentHeader = line;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment