I want to use one/multiple Tab space in Markdown. I used, "  ", which is working. But if i want to use multiple Tab space, then MarkDown Document will not look good.
I wanted to use like this below,
Main Topic
*Tabspace* Subtopic1
*Tabspace**Tabspace* Some Points for subtopic1
*Tabspace* Subtopic2
*Tabspace**Tabspace* Some Points for subtopic2
Actual look should be
Main Topic
Subtopic1
Some Points for subtopic1
Subtopic2
Some Points for subtopic2
Any other alternative for  
Code Blocks To produce a code block in Markdown, simply indent every line of the block by at least 4 spaces or 1 tab. For example, given this input: This is a normal paragraph: This is a code block.
Another option, if your Markdown processor supports HTML, is to use the HTML entity for non-breaking space ( ).
In github markdown inline code blocks (possibly other places) you can use <code> </code> to preserve spaces, instead of using backticks.
In Markdown, as any markup languages, the tab space collapses to a single space. Also, several consecutive horizontal whitespace (e.g. spaces, tabs) collapse to a single space or they are removed from the beginning of a paragraph.
Instead of a tab space you must use several non-breaking spaces:
"a space character that prevents consecutive whitespace characters from collapsing into a single space, and also prevents an automatic line break at its position".
This line uses non-breaking spaces in many places; they are not collapsed.
This line uses many consecutive spaces in many places; they are all collapsed.
The beauty of this solution is that you don't need to use any code in your Markdown document (in HTML you must use
).
Main Topic
Subtopic1
Some Points for subtopic1
Some Points for subtopic1
Some Points for subtopic1
Subtopic2
Subtopic3
Some Points for subtopic3
Some Points for subtopic3
Some Points for subtopic3
Warning
Copy and paste the previous example could not work because sometimes the system change non-breaking spaces to normal spaces in a copy-paste operation :‑(.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With