This weekend I'd like to implement a big feature. So far I'm thinking it'll be full-text search functionality. [quote=@BBeast] No, that's not what I was looking for. While you have made it so we can have multiple lines per dot point, you have not allowed for any separation between dot points. This: [noparse][list] [*]Line 1 [*]Line 2 [*]Line 3 [/list][/noparse] Still renders as: [list] [*]Line 1 [*]Line 2 [*]Line 3 [/list] That is, lacking any spacing. [/quote] I see. I'll experiment with full whitespace preservation to see how it impacts how most people expect BBCode lists to work. For example, people often use newlines to organize/space-out their BBCode markup and don't intend for them to create extraneous newlines in the resulting post. Worst case scenario, if I don't think it's a good default setting, I'll make it an opt-in/advanced feature: [code][list=preserve][/code] or something like that where prefix/suffix newlines are not trimmed off. [quote=@Ellri] We rather like lists that default without unnecessary extra spacing. But if you really want an extra line between points, the simplest solution is to add this: [color=00746b][noparse][color=#2e2c2c].[/color][/noparse][/color] on your blank lines. [/quote] More robust (less likely to break in the future) work-arounds would be: - Use a new list for every bullet point. - Use [code][indent][/code] + your own bullet character. :btw Ellri, instead of using noparse + color, you can use [code][code][/code]. :sun