Is there a way to realize tabs in Multimarkdown syntax?
My Goal is something like:
- Item:———–tab——->Value
- An other item:—tab—>Value
- And one item more:—>Value
I could realize that by a table, but this would be an overhead. I’d love it to stay a list.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can type “tab” characters wherever you like. But there is no concept of alignment outside of a table since there is no way to know whether the resulting output will be displayed in a monospace or variable-width font. And since Markdown/MultiMarkdown eat unnecessary whitespace, the extra spaces would be stripped from the resulting output.
A list is designed to display sequential data. A table is designed to show tabular data. It seems that you want to show tabular data, but are trying to force it into a format that wasn’t designed for that purpose.
So the concise answer to your question is “No”.