Just reporting a bug that affects the various quote tags. Namely, if the text being quoted consists of multiple paragraphs, separated in the editor with line breaks, then the quoting function fails to work properly.
A workaround is to keep a copy offline (e.g., in Notepad or something homologous on operating systems other than MS Windows), keep the line breaks in the offline copy, but remove them and insert HTML break tags in their place. However, this does make for the dreaded “wall of text” syndrome in the forum editor, and requires some diligence to navigate properly.
I couldn’t figure out how to easily do what you wanted with [quote] tag.
I think when the parser sees new line characters, it auto-creates the terminating tag (like [/code] or [/quote]) to close out the current block. Which is ruinous to what you are trying to do (if I understand you). Again, I recommend blockquote instead.
There are reasons I don’t want to use the blockquote from the editor, the first of which being that I have to indent every quoted line manually, which for some of my posts involving excerpts from scientific papers, will be achingly tedious.
The second reason is that the BBCode quote tag allows me to supply author details for the quoted text, in accordance with the proper rules of citation applicable to many of my sources. Viz:
The BBCode quote tag makes writing such passages FAR easier. Needless to say, I’ll be pressing this feature into service a LOT in future posts!
What word processor (software) are you using? You could use a find/replace system (either the dialog in a word processor, or maybe a script or macro) to replace all new lines (\n) characters with html (<br><br>).
Another trap to watch out for is that:
Windows operating systems use \r\n to mark new lines.
Older Apples use \r.
Serious operating systems use \n.
That is a “fun” gotcha. Might be best to change:
1.\r\n to \n.
2. Then \r to \n.
3. Finally \n to <br><br>.
One of the good things about Notepad in Windows, is that if you use DEL or Backspace to merge lines, it removes the line feeds altogether. I can then simply insert the <br> tags where I want, which is how I compiled the above posts.