With regards to x00's list. If you want to Have multiple paragraphs in your list then do the following:
1. item
kjlk
kjk
2. item
item
kjlk
kjk
item
The list has four spaces indenting the following items which is correct. You'll also notice that Markdown does not put <br /> tags in paragraphs which is a good thing. However, if you want to put breaks in a paragraph, list, whatever then end the line with two spaces before hitting return.
I didn't know there was that difference in github's markdown. I actually like the difficulty that markdown gives in adding br tags. We add br tags in our html parser because it is difficult to add proper paragraphs. Believe me, I've tried.
I don't want to go hastily changing things after people start typing weird test cases that don't reflect actual use.
Todd said:
We may add support for textile in the future. That's the final one of the big four.
There is one possibility to see that in the next release ov Vanilla or it's not a priority.
I'm leaving BBcode for XHTML but I'd switch to textile (that I use in my blog) if it will be released quite soon...
I really don't see the point at all going towards Markdown nor Textile. By all means have the option, but preferring the formatting when it is less versatile makes no sense.
If the button bar just put the html with the rel attribute, you are saving yourself a lot of hassle with better results. At the moment it is too temperamental and the newlines get a pretty tedious.
The BBCode parse shipped with vanllia is very crude, it isn't really something that should be used. What is wrong with just simply using xhtml, then if you like a little textile or markdown where it is actually useful.
I understand what you mean. I thinked about textile cause in my textpattern forum I Use that and 'cause the shift from XHTML (that was peculiar for Vanilla) to Markdown has surprised me a lot. I thought that if the official Vanilla forum change his mind was due to security issues.
Thanks for explanation: hope this may be useful to other people.
I'm always writing two things that are a pain in the butt in html: ordered lists and unordered lists. It drives me crazy writing those. The added ease of the simple bold and italics is just icing on the cake.
Our choice for Markdown on this forum is just that: our choice.
Answers
Good catch.
so this is emphasis ( * emphasis * ) - without the spaces
this is strong emphasis ( ** emphasis ** )
Orderer Lists
Example Link : example link done using
example link
- without the spacesOk I can live with this. Nice work guys.
There was an error rendering this rich post.
Lists need an extra newline
grep is your friend.
I couldnt get ordered list to work properly, putting spaces between each li rendered wrong, perhas because i re edited.
There was an error rendering this rich post.
item
kjlk
kjk
item
the reason it renders wrong is v is default br rather than p orientated
grep is your friend.
In markdown you need to also think of lists, blockquotes, pre blocks as paragraphs. That is, you need to put an empty line between them.
Code
Output
This will give me a list:
This will not give me a list:
1. Apples
2. Oranges.
With regards to x00's list. If you want to Have multiple paragraphs in your list then do the following:
item
kjlk
kjk
The list has four spaces indenting the following items which is correct. You'll also notice that Markdown does not put
<br />
tags in paragraphs which is a good thing. However, if you want to put breaks in a paragraph, list, whatever then end the line with two spaces before hitting return.kjlk
kjk
@Todd Thought about using GitHub-flavored Markdown? It makes a few things easier (like the line breaking).
I don't want to go hastily changing things after people start typing weird test cases that don't reflect actual use.
Here's their post on it: http://github.github.com/github-flavored-markdown/
Github markdown looks pretty neat, I'll have to admit. I think spoilers will be what I implement first though.
thing like spoilers, excerpt, etc, don't represent specific mark-up. I think wordpress method of short codes might come in handy.
that will allow you to apply short codes over a range of formatters.
grep is your friend.
was trying to quote.
older quoting was better - original commentor was tagged
There was an error rendering this rich post.
After a change most things are better, some things are worse, but in the end que sera, sera.
There is one possibility to see that in the next release ov Vanilla or it's not a priority.
I'm leaving BBcode for XHTML but I'd switch to textile (that I use in my blog) if it will be released quite soon...
I really don't see the point at all going towards Markdown nor Textile. By all means have the option, but preferring the formatting when it is less versatile makes no sense.
If the button bar just put the html with the rel attribute, you are saving yourself a lot of hassle with better results. At the moment it is too temperamental and the newlines get a pretty tedious.
The BBCode parse shipped with vanllia is very crude, it isn't really something that should be used. What is wrong with just simply using xhtml, then if you like a little textile or markdown where it is actually useful.
grep is your friend.
Anything that is a convenience/quicktag tag, not representing standard markup, should be implemented through a convenience tag method.
grep is your friend.
Like
< spoiler >
for the Spoiler plugin?
I understand what you mean. I thinked about textile cause in my textpattern forum I Use that and 'cause the shift from XHTML (that was peculiar for Vanilla) to Markdown has surprised me a lot. I thought that if the official Vanilla forum change his mind was due to security issues.
Thanks for explanation: hope this may be useful to other people.
I'm always writing two things that are a pain in the butt in html: ordered lists and unordered lists. It drives me crazy writing those. The added ease of the simple bold and italics is just icing on the cake.
Our choice for Markdown on this forum is just that: our choice.
Received.
BTW, interesting read: Textile Vs. Markdown