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
Is it just me or does the code highlighting not work if curly braces are present in the code?
The text was updated successfully, but these errors were encountered:
If you want to use curly braces between the markdown-to-html tags you need to escape the opening curly brace.
markdown-to-html
{
{
<markdown-to-html> export class Example { foo: string; bar: string; } </markdown-to-html>
But if you put the code in a separate file and use src property on markdown-to-html component you don't need to escape the content of the file.
src
<markdown-to-html [src]="'path/to/example.ts'"></markdown-to-html>
export class Example { foo: string; bar: string; }
Sorry, something went wrong.
Thanks, that works.
No branches or pull requests
Is it just me or does the code highlighting not work if curly braces are present in the code?
The text was updated successfully, but these errors were encountered: