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
I'd love to have syntax highlighting inside markdown code blocks:
```elixir
IO.puts("some output")
```
There is an Example Repo I found in microsoft/vscode#34891, but I just started using VSCode and don't feel confident enough (yet) to open up a PR and give it a try on my own.
The text was updated successfully, but these errors were encountered:
Syntax highlighting inside markdown code blocks:
```elixir
Graph.match(
from person in "Person",
where: person.age < 32 and person.title == "Developer",
join: friend in "Person", on: "FRIEND",
join: fof, on: "FRIEND",
join: work, on: "WORKED_WITH",
select: {person.name, friend.name, fof.name, work.name}
)
```
Inspired by https://github.com/mjbvz/vscode-fenced-code-block-grammar-injection-example
sntran
pushed a commit
to sntran-contrib/vscode-elixir
that referenced
this issue
Feb 26, 2018
Syntax highlighting inside markdown code blocks:
```elixir
Graph.match(
from person in "Person",
where: person.age < 32 and person.title == "Developer",
join: friend in "Person", on: "FRIEND",
join: fof, on: "FRIEND",
join: work, on: "WORKED_WITH",
select: {person.name, friend.name, fof.name, work.name}
)
```
Inspired by https://github.com/mjbvz/vscode-fenced-code-block-grammar-injection-example
Has this been fixed? I still don't see syntax highlight in Elixir code blocks in Markdown files. I took a brief look at the commit and I'm not sure if the plantuml references are accidental.
I'd love to have syntax highlighting inside markdown code blocks:
There is an Example Repo I found in microsoft/vscode#34891, but I just started using VSCode and don't feel confident enough (yet) to open up a PR and give it a try on my own.
The text was updated successfully, but these errors were encountered: