E eroxx macrumors 6502a Original poster Jul 27, 2010 801 1 Jul 22, 2012 #1 How do you show a space in markdown, like if I want to indent paragraphs? Thanks!
DJAKO macrumors 6502a Sep 8, 2006 601 21 Michigan Jul 22, 2012 #2 eroxx said: How do you show a space in markdown, like if I want to indent paragraphs? Thanks! Click to expand... A common character entity used in HTML is the non-breaking space ( ). You can also use CSS to indent a paragraph with something like this, text-indent: 1.5em;
eroxx said: How do you show a space in markdown, like if I want to indent paragraphs? Thanks! Click to expand... A common character entity used in HTML is the non-breaking space ( ). You can also use CSS to indent a paragraph with something like this, text-indent: 1.5em;
E eroxx macrumors 6502a Original poster Jul 27, 2010 801 1 Jul 22, 2012 #3 Thanks much. W/ regard to the HTML code, are the parenthesis part of it?