Markdown as a spec may not be nailed down 100%, but as a practical thing to use it's very handy. There are implementation differences between StackOverflow and ReText, but those are details.
Why Markdown Is Not My Favourite Language (2012)
31–40 of 99 posts
Re: Why Markdown Is Not My Favourite Language (2012)
#32I don't like any of them. Markdown, ReST, various wiki/forum dialects of "simplified" text formatting. They are all as complicated if not more complicated than just writing HTML. They all have a bunch of rules and special cases. I'd rather just write in HTML which I already know. I don't understand the motivation for any of these "alternative" markup formats. Normal non-technical people want Word (or at least, some k…
You're free to argue that these markup languages all suck, but this idea that it's impossible to get "normal people" to learn even a little bit of syntax, is preposterous – what about twitter #hashtags and @replies?
Re: Why Markdown Is Not My Favourite Language (2012)
#33Re: Why Markdown Is Not My Favourite Language (2012)
#34Alternatives: asciidoc. Maps easily to docbook, and has a heap of extra features.
Re: Why Markdown Is Not My Favourite Language (2012)
#35I don't like any of them. Markdown, ReST, various wiki/forum dialects of "simplified" text formatting. They are all as complicated if not more complicated than just writing HTML. They all have a bunch of rules and special cases. I'd rather just write in HTML which I already know. I don't understand the motivation for any of these "alternative" markup formats. Normal non-technical people want Word (or at least, some k…
> They are all as complicated if not more complicated than just writing HTML. They all have a bunch of rules and special cases. I'd rather just write in HTML which I already know. I find that Markdown is significantly easier/faster to write than HTML and, more importantly, easier to read in its un-rendered form. To me (and presumably lots of other people, given Markdown's ubiquity) it's well worth learning the relati…
table
tr
th Col1 Header!
th Col2 Header!
tr
td Col1 Value...
td Col2 Value...
Renders to HTML.Re: Why Markdown Is Not My Favourite Language (2012)
#36Earlier quoted context omitted.
org-mode tables are great, but they're only easy to type because org-mode does the dynamic resizing and border drawing for you. Markdown is supposed to be simple to type in any plain text editor.
You can still have simpler table syntax that's nice to read but easier to maintain. For my own markup language ( http://breuleux.net/quaint_demo/ ) I implemented this syntax: + Name + Occupation | Alice | Accountant | Bob | Baker | Charles | Car salesman Headers are easier to make and the last column does not require a trailing marker. It's still some work to align columns other than the last, but that's not a requir…
Re: Why Markdown Is Not My Favourite Language (2012)
#37But looks like Creole as well, which i didn't know :)
Re: Why Markdown Is Not My Favourite Language (2012)
#38wikicreole.org don't work without www. Right link is http://www.wikicreole.org/
wikicreole webmaster, please do configure your DNS thoughtfully, and OP please check your links before posting.
Re: Why Markdown Is Not My Favourite Language (2012)
#39Part of the problem is that people don't really grok the point of Markdown. There's a reason it doesn't support tables, or a syntax for making the kind of language used in a code snippet. The point of Markdown is to mimic the conventions of ASCII-text email, both to make writing it as natural as possible, and to make Markdown pleasant to read in both ASCII and HTML. If you want something more featureful than Markdown…
To add to that, Markdown was created to scratch one person's itch with no real desire to support a wider community. It was put online and other people liked it and modified it, but the original site doesn't have any of this.
Re: Why Markdown Is Not My Favourite Language (2012)
#40Earlier quoted context omitted.
What happens when I add a new value that's "much longer"?
At first, |-----+-------| | Key | Value | |-----+-------| | 00 | foo | | 01 | bar | |-----+-------| becomes |-----+-------| | Key | Value | |-----+-------| | 00 | foo | | 01 | bar | | 02 | much longer | |-----+-------| but as soon as I hit TAB, it turns in to: |-----+-------------| | Key | Value | |-----+-------------| | 00 | foo | | 01 | bar | | 02 | much longer | |-----+-------------| There's probably a way to make…