1 override of GetMarkdown
Microsoft.Extensions.DataIngestion.Abstractions (1)
IngestionDocumentElement.cs (1)
95
public override string
GetMarkdown
()
9 references to GetMarkdown
Microsoft.Extensions.DataIngestion.Abstractions (2)
IngestionDocumentElement.cs (2)
96
=> string.Join(Environment.NewLine, Elements.Select(e => e.
GetMarkdown
()));
174
/// <para>Null represents an empty cell (<see cref="IngestionDocumentElement.
GetMarkdown
()"/> can't return an empty string).</para>
Microsoft.Extensions.DataIngestion.Tests (7)
IngestionDocumentTests.cs (7)
52
Assert.Equal("header", flatElements[0].
GetMarkdown
());
54
Assert.Equal("paragraph", flatElements[1].
GetMarkdown
());
56
Assert.Equal("table", flatElements[2].
GetMarkdown
());
58
Assert.Equal("nested header", flatElements[3].
GetMarkdown
());
60
Assert.Equal("nested paragraph", flatElements[4].
GetMarkdown
());
62
Assert.Equal("header 2", flatElements[5].
GetMarkdown
());
64
Assert.Equal("paragraph 2", flatElements[6].
GetMarkdown
());