Consider the following code block:
#include
It's only showing #include, but what I've typed in the code block is #include <yajl/yajl_parse.h>. So, the < is not being escaped properly.
Here's another code block:
for ( i=1; i
That should be for ( i=1; i < strlen(argv[a]); i++) .
According to the formatting help:
Like code blocks, code spans will be displayed in a monospaced font. Markdown and HTML will not work within them. Note that, unlike code blocks, code spans require you to manually escape any HTML within!
So it seems like the intent is to automatically escape all HTML -- or am I not understanding how code blocks should work?
, shortcut Ctrl+K) to indent it all at once.
<pre>and<code>shouldn't you just be indenting by 4 spaces? – shanethehat Aug 13 '11 at 14:58{}button in the editor that will indent selected text for you. – Anna Lear♦ Aug 13 '11 at 15:05<pre><code>yourself. It says that to create a similar effect, you should indent with 4 spaces. – The Establishment Aug 14 '11 at 9:13