0
On Github it is possible to display an Highlight code with Markdown syntax, as follows (consider the simple quotes being the grave accent `):
Este é meu arquivo README.md
'''dart
void main() {
// Este é meu código em highlight para a linguagem Dart
}
'''
That is, in Mardown we use three bass accents to indicate the beginning of the Highlight code, and three to indicate the end. But how do I do it without using this Markdown syntax and yes HTML syntax?
Este é meu arquivo README.md
<pre>
<code>
void main(){
// Meu código em highlight para linguagem Dart mas em sintaxe HTML dentro do markdown
}
</code>
</pre>