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
Links in Word aren't displayed with the lnk indicator in braille #6780
Comments
Could be added to braille.getFormatFieldBraille(). But isAtStart is False if a link appears in the middle of some text. We should probably also work something out for comments/revisions. |
P2 because this is important info that isn't available to braille only users. @dkager commented on 23 Jan. 2017, 5:19 am AEST:
isAtStart isn't useful here, since that's to ensure we don't present info in the middle of the line that should only be presented at the start. However, we're probably going to need a cache of attributes we presented in the last chunk of the line so we don't present them again.
Indeed, though I don't consider that quite as high priority (though still important) and we should address it separately. |
It looks like this only applies if you have some text selected. Then you have three chunks: text before and after selection, and the selection itself. But that implies there can be multiple "link start" commands for the same text. Is that true? |
FormatFields contain all of the formatting relevant to the text they
immediately precede. So, if you have a link consisting of two characters
and you getTextWithFields just for the second character, the field will
contain link: True. That's why I say you'll need a cache.
|
I'm going with a full cache like is used for speech, because that looks the most extensible. |
STR:
Speech reads:
This is something to link click out of link on.
Braille shows:
This is something to click on.
Expected:
Braille somehow shows the link, e.g. with the "lnk" indicator.
The text was updated successfully, but these errors were encountered: