www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Forum: Reply: re-indentation broken with quotes?

reply kdevel <kdevel vogtner.de> writes:
Don't know since when but when I click at reply on the post

https://forum.dlang.org/post/tlt15t$tov$1 digitalmars.com

the quotes look like

 I would like to know if there is a representation of that
ominous
 "invalid state" in terms of bits and bytes. Well, it doesn't
have to.
instead of
 I would like to know if there is a representation of that 
 ominous "invalid state" in terms of bits and bytes. Well, it 
 doesn't have to.
or
 I would like to know if there is a representation of that 
 ominous
 "invalid state" in terms of bits and bytes. Well, it doesn't 
 have to.
It seems that the reply function cannot correctly group lines of quotes into paragraphs. Reminds me of the famous format=flowed issues [1] (trailing space on a line means: join the line with the next one.) [1] https://joeclark.org/ffaq.html
Nov 27 2022
next sibling parent reply ryuukk_ <ryuukk.dev gmail.com> writes:
That should be relatively easy to fix

Is the forum open source?

I also wish quotes were better displayed, it is easy to miss a 
non-quote message in between quotes..
Nov 27 2022
next sibling parent reply rikki cattermole <rikki cattermole.co.nz> writes:
On 28/11/2022 10:23 AM, ryuukk_ wrote:
 Is the forum open source?
Not a forum, but yes. https://github.com/CyberShadow/DFeed
Nov 27 2022
parent ryuukk_ <ryuukk.dev gmail.com> writes:
On Sunday, 27 November 2022 at 21:33:05 UTC, rikki cattermole 
wrote:
 On 28/11/2022 10:23 AM, ryuukk_ wrote:
 Is the forum open source?
Not a forum, but yes. https://github.com/CyberShadow/DFeed
Thanks, time to undust my old web skills
Nov 28 2022
prev sibling parent Mike Parker <aldacron gmail.com> writes:
On Sunday, 27 November 2022 at 21:23:09 UTC, ryuukk_ wrote:
 That should be relatively easy to fix

 Is the forum open source?
For future reference, there's a link at the bottom of every forum page, 'About this forum'.
Nov 27 2022
prev sibling next sibling parent reply cc <cc nevernet.com> writes:
On Sunday, 27 November 2022 at 20:25:59 UTC, kdevel wrote:
 Don't know since when but when I click at reply on the post
 https://forum.dlang.org/post/tlt15t$tov$1 digitalmars.com
 the quotes look like
Had a similar but different problem with quotes, this doesn't look correct: ``` a said
 b said
 hello
no, goodbye
``` a said
 b said
 hello
no, goodbye
![image](https://i.vgy.me/qqj6YA.png)
Nov 28 2022
next sibling parent Tejas <notrealemail gmail.com> writes:
On Monday, 28 November 2022 at 14:11:12 UTC, cc wrote:
 On Sunday, 27 November 2022 at 20:25:59 UTC, kdevel wrote:
 Don't know since when but when I click at reply on the post
 https://forum.dlang.org/post/tlt15t$tov$1 digitalmars.com
 the quotes look like
Had a similar but different problem with quotes, this doesn't look correct: ``` a said
 b said
 hello
no, goodbye
``` a said
 b said
 hello
no, goodbye
![image](https://i.vgy.me/qqj6YA.png)
``` a said
 b said
 hello
 no, goodbye
``` a said
 b said
 hello
 no, goodbye
Newlines help eliminate the error so I suggest using them as a stopgap
Nov 28 2022
prev sibling parent Vladimir Panteleev <thecybershadow.lists gmail.com> writes:
On Monday, 28 November 2022 at 14:11:12 UTC, cc wrote:
 Had a similar but different problem with quotes, this doesn't 
 look correct:

 ```
 a said
 b said
 hello
no, goodbye
``` a said
 b said
 hello
no, goodbye
![image](https://i.vgy.me/qqj6YA.png)
Yes, this is just CommonMark being weird. GitHub does the same thing: https://github.com/CyberShadow/Test2/issues/2
Nov 28 2022
prev sibling parent Vladimir Panteleev <thecybershadow.lists gmail.com> writes:
On Sunday, 27 November 2022 at 20:25:59 UTC, kdevel wrote:
 It seems that the reply function cannot correctly group lines 
 of quotes into paragraphs. Reminds me of the famous 
 format=flowed issues [1] (trailing space on a line means: join 
 the line with the next one.)

 [1] https://joeclark.org/ffaq.html
The forum is behaving correctly, Ali's post is just weird. Click "View source" and notice that the quoted lines are space-stuffed. This syntax tells user-agents that the > character should be handled verbatim, and not as a quote indicator. I think Thunderbird makes it easy to do this accidentally by copying and pasting text. It has a separate "Paste as quotation" action to paste proper quoted text.
Nov 28 2022