7 instantiations of IngestionDocumentTable
Microsoft.Extensions.DataIngestion.Markdig (1)
MarkdownParser.cs (1)
86Table table => new IngestionDocumentTable(elementMarkdown, GetCells(table, documentMarkdown)),
Microsoft.Extensions.DataIngestion.MarkItDown (1)
src\Libraries\Microsoft.Extensions.DataIngestion.Markdig\MarkdownParser.cs (1)
86Table table => new IngestionDocumentTable(elementMarkdown, GetCells(table, documentMarkdown)),
Microsoft.Extensions.DataIngestion.Tests (5)
Chunkers\HeaderChunkerTests.cs (1)
222IngestionDocumentTable table = new("""
Chunkers\SemanticSimilarityChunkerTests.cs (2)
146new IngestionDocumentTable(dotNetTableMarkdown, 151new IngestionDocumentTable(godsTableMarkdown,
IngestionDocumentTests.cs (1)
29new IngestionDocumentTable("table", _rows),
Processors\AlternativeTextEnricherTests.cs (1)
104new IngestionDocumentTable("nvm", new[,] { { tableCell } })
14 references to IngestionDocumentTable
Microsoft.Extensions.DataIngestion (3)
Chunkers\ElementsChunker.cs (2)
76else if (element is IngestionDocumentTable table) 236private static void AddMarkdownTableRow(IngestionDocumentTable table, int rowIndex, ref ValueStringBuilder vsb)
Processors\ImageAlternativeTextEnricher.cs (1)
58else if (element is IngestionDocumentTable table)
Microsoft.Extensions.DataIngestion.Abstractions (1)
IngestionDocumentElement.cs (1)
169/// Initializes a new instance of the <see cref="IngestionDocumentTable"/> class.
Microsoft.Extensions.DataIngestion.Tests (10)
Chunkers\HeaderChunkerTests.cs (1)
222IngestionDocumentTable table = new("""
IngestionDocumentTests.cs (1)
55Assert.IsType<IngestionDocumentTable>(flatElements[2]);
Readers\DocumentReaderConformanceTests.cs (3)
146IngestionDocumentTable documentTable = Assert.Single(document.EnumerateContent().OfType<IngestionDocumentTable>()); 208Assert.Contains(elements, element => element is IngestionDocumentTable);
Readers\MarkdownReaderTests.cs (4)
46IngestionDocumentTable documentTable = Assert.Single(document.EnumerateContent().OfType<IngestionDocumentTable>()); 118var table = Assert.Single(document.EnumerateContent().OfType<IngestionDocumentTable>());
Readers\MarkItDownReaderTests.cs (1)
33Assert.Contains(elements, element => element is IngestionDocumentTable);