You are viewing a single comment's thread from:RE: Introducing a Programming QnA Community on Steemit. #steemdevqnaView the full contextwhd (63)in #steemdevqna • 8 years ago (edited)you can display code with markdown even with syntax highlight (but idk if highlight works here) :)
<pre></pre>
and<code></code>
work for all code except for html. Backticks `` work for html, but only if there are no breaks in the html.what about tripple ` ?
<!DOCTYPE html> <html> <body> ```html <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>
Thanks man this was what I was looking for!
<!DOCTYPE html> <html> <body> ```html <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>
Awesome! :)
Followed!