-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
URLs in Artifact viewer do not display underscores right "_" #3424
Comments
/assign @numerology |
The culprit is that underscore is not properly escaped when TFX image writing the markdown string See [1] |
There may be other formatting conflicts later, I think instead of escaping, we should wrap data with `` |
if quick fix, we may put it to OSS 1.0 |
I'm leaning avoid escaping underscore in UI, adding hack on top of a proper markdown parser is fragile. e.g. how do we not escape underscores that are already escaped? how many other corner cases there are? |
I think the best fix is to render execution detail page as a tab and let tfx side remove the markdown. Execution detail page has all the information in the best accessible form. |
Sounds good. Anyway I'm quickly fix it by escaping underscore in the entrypoint. |
@numerology did you fix the issue? With #3457 we may also remove the markdown. (but we can keep it for a while before people can upgrade KFP installation). |
It should be fixed in tensorflow/tfx@3ea79f9 |
@numerology thanks! |
@Bobgy: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
In the artifact pane the URLs shown for Metadata artifacts do not display underscores and instead turn the text to italic. When the user copies the URL - it gets copied without the underscores and thus does not point to a valid file.
The text was updated successfully, but these errors were encountered: