Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/MudBlazor.Markdown/MudBlazor.Markdown.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Markdig" Version="0.42.0" />
<PackageReference Include="Markdig" Version="0.44.0" />
<PackageReference Include="MudBlazor" Version="8.15.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -557,13 +557,13 @@ public void RenderTableWithWeirdFormat()
{
const string value =
"### My Table: \n\n" +
"| **Column 1** | **Column 2** | **Column 3** |\n" +
"|--------------|----------------|-----------------------------|\n" +
"| **Column 1** **Column 2** | **Column 3** |\n" +
"|--------------|----------------]-----------------------------|\n" +
"| Row 1, Col 1 | Row 1, Col 2 | |\n" +
"| | Row 2, Col 2 | Row 2, Col 3 |\n" +
"| Row 3, Col 1 | | \u0060\u0060\u0060python |\n" +
"| | Row 4, Col 2 | def greet(name): |\n" +
"| Row 5, Col 1 | | return name |\n" +
"| Row 5, Col 1 l | return name |\n" +
"| | | \u0060\u0060\u0060 |";

const string expected =
Expand All @@ -572,13 +572,13 @@ public void RenderTableWithWeirdFormat()
<h3 id='my-table%3A' class='mud-typography mud-typography-h3'>My Table:</h3>
<p class='mud-typography mud-typography-body1'>
<div class='mud-markdown-error'>
| **Column 1** | **Column 2** | **Column 3** |
|--------------|----------------|-----------------------------|
| **Column 1** **Column 2** | **Column 3** |
|--------------|----------------]-----------------------------|
| Row 1, Col 1 | Row 1, Col 2 | |
| | Row 2, Col 2 | Row 2, Col 3 |
| Row 3, Col 1 | | ```python |
| | Row 4, Col 2 | def greet(name): |
| Row 5, Col 1 | | return name |
| Row 5, Col 1 l | return name |
| | | ``` |
</div>
</p>
Expand Down
Loading