-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reply quotation format bug. #114
Comments
I don't think this is a bug. New lines always go into the blockquote unless there's two new lines - I believe this is in the CommonMark spec, and GitHub also behaves this way. For example:
will have that second line still inside the blockquote. Whereas:
Putting two new lines will make the line not inside the blockquote. In your case, you only have one new line after the first inner blockquote, so all of the lines are inside it. |
@krixano : So do you mean that if someone think it's ridiculous he has to ask CommonMark staff? Any room for ZeroMe developer has something to do with this matter? |
@leftside2 I was merely saying it's not a bug but that it's intended as per the standard. Nofish will be able to fix this, but chances are he's using a library for this - so he'll have to change that library. Also, I disagree that this should be changed based on consistency reasons. Exception: If this were to be changed, then I propose that the rule where two new lines must be after ">" to break off from the blockquote be changed to just one new line (which would mean every line part of the blockquote must have ">"), also for consistency reasons. However, I don't think this should be changed because ever zite that uses markdown probably acts in the same way as I described. It's better to keep everything consistent, imo. |
@krixano : I see. :) One question. Plz answer. In ZeroMe, In the new post box, by pressing SHIFT-ENTER you can feed new line without submitting the post. But in the comment box under the post this key combination doesn't work. In my case, I click [reply] button on the other comments to feed the new line and erase the ID part to make use of the new line. How do u do to do this? |
tab, enter should work. (maybe we should remove the comment sending by enter to make it consistent) |
@HelloZeroNet : Thanks! Why don't u put a [?] icon beneath the test editing box? |
@HelloZeroNet : tab, enter doesn't work. :( |
I just tried and it's works, to posting on ZeroMe |
@HelloZeroNet : I mean the reply edit box, not new post. :) |
Original text:
> hello
>> hi
> where are u from?
>> I'm from Mars.
Converted result: (after hit Enter)
To bypass the bug:
> hello
>> hi
.
> where are u from?
>> I'm from Mars.
The text was updated successfully, but these errors were encountered: