Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to perform "tabs" in Multimarkdown?

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.

like image 712
Aufwind Avatar asked Feb 21 '12 20:02

Aufwind


1 Answers

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".

like image 82
Fletcher T. Penney Avatar answered Sep 21 '22 20:09

Fletcher T. Penney