what would be the best node parser to use in the case where I have markdown files with tables inside ? MarkdownElementNodeParser or MarkdownNodeParser ? Can anyone please explain the difference is using these two parsers?
Difference in terms of: Indexing strategies Influence on the retrieval part of the rag pipeline in terms of performance ?
I read it generates two types of nodes: Text Nodes and Index Nodes corresponding to embedded objects (e.g. tables) how does it handle tables in the markdown document? does it create a node with the "text" of the table and a summary of what it's about using the llm ?