-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
#2457 - Fix the broken blockquotes in the chat markdown #2458
Conversation
group-income Run #3572
Run Properties:
|
Project |
group-income
|
Branch Review |
sebin/task/#2457-blockquote-not-working
|
Run status |
Passed #3572
|
Run duration | 11m 26s |
Commit |
60fd471d78 ℹ️: Merge dc68f199d1d74caccd4cf47b3e404ffb8e2d41de into e4e1f9b8bca3105bb6490dfabdce...
|
Committer | Sebin Song |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
10
|
Skipped |
0
|
Passing |
111
|
View all changes introduced in this branch ↗︎ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work @SebinSong!
Found one issue related to empty paragraph breaks in blockquotes.
Markdown:
> Test
And
> `another () => test` of the
>
> ```
> emergency () => system
> ```
>
> But what about
> Paragraph breaks
> That are empty
>
> Like this one
() => test
Group Income:
Github:
Test
And
another () => test
of theemergency () => system
But what about
Paragraph breaks
That are emptyLike this one
() => test
@taoeffect Improved the PR with additional fix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EDIT: I can also save this for a separate issue to fix if you'd prefer!
Interesting... it seems the logic for @mentions and channel name mentions is a bit wonky too, as sometimes it works, and sometimes it doesn't:
Markdown:
> @u1 Test #general
And
> `another () => test` of the
>
> ```
> emergency () => system
> and
>
> break
> ```
>
> But what about
> Paragraph breaks
> That are empty
>
> Like this one @u1 #general
() => test
Result:
Github (checking to see if it handles @U1...):
@U1 Test #general
And
another () => test
of theemergency () => system and break
But what about
Paragraph breaks
That are emptyLike this one @U1 #general
() => test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm actually going to merge this now and open a separate issue for that separate bug I found, since this PR does close the original issue. Great work! 👍
closes #2457
[ Fix screenshot ]
Made sure this fix does not revert the fix for #2130 too.