-
-
Notifications
You must be signed in to change notification settings - Fork 251
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
List links at end of message (and/or in popup?) #618
Labels
Comments
12 tasks
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jun 28, 2020
The footlinks are shown below the message content with a style that is different from the rest of the message content but similar to msg_links. Test added. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jun 28, 2020
The footlinks are shown below the message content with a style that is different from the rest of the message content but similar to msg_links. Test added. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 8, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Note: link_index and message_links are added as instance attributes to track link indexes and to store link and its metadata respectively. Test added and amended. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 9, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Note: link_index and message_links are added as instance attributes to track link indexes and to store link and its metadata respectively. Test added and amended. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 12, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Note: link_index and message_links are added as instance attributes to track link indexes and to store link and its metadata respectively. Test added and amended. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 12, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Note: link_index and message_links are added as instance attributes to track link indexes and to store link and its metadata respectively. Test added and amended. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 14, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Note: message_links is added as an instance attribute to store links and their metadata. Test added and amended. Fixes zulip#618.
preetmishra
added a commit
to preetmishra/zulip-terminal
that referenced
this issue
Jul 15, 2020
This indexes in-line message links and adds footlinks to avoid disrupting the flow of [reading] a message. Additionally, message_links is added as an instance attribute to store links and their metadata. Test added and amended. Fixes zulip#618.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is already an existing older PR for listing the links in a message in a popup and handling them (and would benefit from being broken into smaller commits). Discussion in #zulip-terminal in the 'links' topic suggested the approach below as an alternative or additional route to take, and in any case extracting the links may be useful for both cases (check that discussion first in any case)
Currently links are shown pretty much as in raw markdown, which is workable but can be very verbose and disrupt the flow of a message, for such simple cases as the linkifiers, eg.
This might be solved with #T1, but maybe not
in chat.zulip.org expands toThis might be solved with [#T1](https://github.com/zulip/zulip-terminal/pull/1), but maybe not
, which disrupts the flow in the middle of the sentence.One idea to improve the rendering has been to use a more 'reference list' or 'footnote' based approach, so the above sentence might render as:
where the
#T1
,[1]
and second line has different styling somehow to indicate they fit together (and without requiring a blank line)The text was updated successfully, but these errors were encountered: