Is there a way to get the Markdown wiki pages to allow < and > in code blocks designated with ```?
Summary
Is there a way to get the Markdown wiki pages to allow < and > in code blocks designated with ```?Content
When trying to create helpful wiki pages using Markdown it is nice to include sample code. Sometimes code includes < and >, but it seems that the markdown engine is parsing these characters even with in the code delimiters (```). Is there a way to get the code to render as is or a way to not have these assumed to be html? Other markdown engines seem to handle this correctly.
Example:
Here is java code with generics:
```
List<String> list = new ArrayList<>();
1