We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
C#
Using C# as the syntax highlight language will lead to wrong render result.
markdown = """ ```C# var optional = Some(123); ``` """ Earmark.as_html!(markdown)
Will produce inline code with C# in content: <p><code class="inline">C# var optional = Some(123);</code></p>
<p><code class="inline">C# var optional = Some(123);</code></p>
In GitHub it renders correctly:
var optional = Some(123);
The text was updated successfully, but these errors were encountered:
Well you should not use C#...
just kidding. Thank you for this I will try to fix this soon, hopefully low hanging fruit.
Sorry, something went wrong.
4bfda79
Merge pull request #284 from pragdave/i279-csharp-code-blocks
518ded0
Fixes: #279;
RobertDober
No branches or pull requests
Using
C#
as the syntax highlight language will lead to wrong render result.Will produce inline code with C# in content:
<p><code class="inline">C# var optional = Some(123);</code></p>
In GitHub it renders correctly:
The text was updated successfully, but these errors were encountered: