You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From what I can see, in GitHub, GitLab and Slack comment/note editors, that a blockquote being started is supposed to include, as part of the quote, subsequent content that follows, until an empty line is encountered.
However, slackify-markdown seems to be translating each subsequent line into double-newline then content, which causes those subsequent lines of content to not be included in the blockquote.
When this converted output is then used to create messages composed via Slack's API, it appears to break the output. ie: the additional lines of content are not appearing within the blockquote.
Here is an example of what I'm talking about. The following two blockquotes each show two 'continuation' lines of text as being part of their respective blockquote:
quote 1
quote 1b
quote 1c
quote 2
quote 2b
quote 2c
Within each blockquote section, the initial line indicates the initiation of a blockquote, the end of the blockquote being an empty newline. Until the blank line, other lines not having a blockquote indication are considered part of the same blockquote.
Here is an example of what the text looks like when editing and creating two separate blockquote sections, the first being a single-deep, the second being double-deep:
It seems that one too many newline characters are being emitted per subsequent line of text, leading to failure to include those additional lines within the blockquote.
ie, like this:
> quote 1
quote 1b
quote 1c
Would be really nice to have this fixed!
Thank you
Peter
The text was updated successfully, but these errors were encountered:
From what I can see, in GitHub, GitLab and Slack comment/note editors, that a blockquote being started is supposed to include, as part of the quote, subsequent content that follows, until an empty line is encountered.
However,
slackify-markdown
seems to be translating each subsequent line into double-newline then content, which causes those subsequent lines of content to not be included in the blockquote.When this converted output is then used to create messages composed via Slack's API, it appears to break the output. ie: the additional lines of content are not appearing within the blockquote.
Here is an example of what I'm talking about. The following two blockquotes each show two 'continuation' lines of text as being part of their respective blockquote:
Within each blockquote section, the initial line indicates the initiation of a blockquote, the end of the blockquote being an empty newline. Until the blank line, other lines not having a blockquote indication are considered part of the same blockquote.
Here is an example of what the text looks like when editing and creating two separate blockquote sections, the first being a single-deep, the second being double-deep:
It seems that one too many newline characters are being emitted per subsequent line of text, leading to failure to include those additional lines within the blockquote.
ie, like this:
Would be really nice to have this fixed!
Thank you
Peter
The text was updated successfully, but these errors were encountered: