wedrifid comments on Official Less Wrong Redesign: Call for Suggestions - Less Wrong

20 Post author: Louie 20 April 2011 05:56PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (565)

You are viewing a single comment's thread. Show more comments above.

Comment author: wedrifid 21 April 2011 11:13:21PM *  1 point [-]

Links don't work if the URL contains parentheses. This can be worked around if you use tinyurl, but it's annoying. A quick (but not perfect) fix would be to allow nested parentheses within a markdown link.

Refer to markown syntax for how to escape markdown syntax operators. It is handled the same way as handling, for example, literal_underscores_insteadofitalics.

Comment author: AlephNeil 21 April 2011 11:18:39PM 2 points [-]

Yes, that's as good a solution as one could hope for.

My first point is clearly a 'bug' though: writing "2. something" shouldn't create output that looks like "1. something".

Comment author: wedrifid 21 April 2011 11:57:05PM *  2 points [-]

My first point is clearly a 'bug' though: writing "2. something" shouldn't create output that looks like "1. something".

Or, at least, it is a feature which someone could legitimately not desire. The numbered list feature is just a way to specify html - so like in html the formatting is up to CSS. If you don't want a vanilla html numbered list generated then you just have to do the numbering manually and once again escape the character for the unwanted syntax. In this case that means the period.

2. One
1. Two

Yes, this is somewhat annoying to do. It is also annoying that you don't have control of the CSS used from inside the markdown. Which gets frustrating for nested lists when the default formatting sucks. Come to think of it that's another feature request. Change one line in the CSS to improve nested lists.