-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors showing no markdown #274
Comments
Makrdown: ### My Table:
| **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 | | \u0060\u0060\u0060python |
| | Row 4, Col 2 | def greet(name): |
| Row 5, Col 1 | | return name |
| | | \u0060\u0060\u0060 | |
@Ryan-Current private string markdownNotWorking =
@"
### My Table:
| **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 | | \u0060\u0060\u0060python |
| | Row 4, Col 2 | def greet(name): |
| Row 5, Col 1 | | return name |
| | | \u0060\u0060\u0060 |
"; But I understand that you want to be able to see the original markdown if something fails, so after this branch is merged this is what will be rendered: |
@MihailsKuzmins Thank you for looking into this, and so quickly! Since this is completed, does that mean a release will be created soon? |
@Ryan-Current yes, I'm planning to release a new version (including this fix) as soon as a new MudBlazor version is released (probably v7.9.0) |
I ran into an issue with this library where no display will be made at all, without an error.
The issue I ran into included opening a code block in one cell of a table and closing it in another. This made the table disappear completely, without any errors.
Here's an example, the changed cell between the tables is the bottom right cell.
I would prefer to either get an error, or turn off the formatting if an error occurs but still show the original string, rather than a silent fail with no text displayed.
The text was updated successfully, but these errors were encountered: