You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a possibility to use the command line plugin inside a markdown document.
markdown.md:
beautiful document, some commands
```bash
touch test-commmand.yml
```
more document, and some code
```csharp
Console.WriteLine("test");
```
I would like this to be rendered correctly with command line for the first code block and not the second code block.
Currently I'm using:
page.component.html:
<markdown[src]="'markdown.md'"></markdown>
If I add the commandLine switch to the main markdown element it puts the command line stuff on all code blocks, and just putting a nested markdown renderer inside will just print the html.
What is the best way to do this? (Same question applies for the lineNumbers plugin)
The text was updated successfully, but these errors were encountered:
Is there a possibility to use the command line plugin inside a markdown document.
markdown.md:
I would like this to be rendered correctly with command line for the first code block and not the second code block.
Currently I'm using:
page.component.html:
If I add the commandLine switch to the main markdown element it puts the command line stuff on all code blocks, and just putting a nested markdown renderer inside will just print the html.
What is the best way to do this? (Same question applies for the lineNumbers plugin)
The text was updated successfully, but these errors were encountered: