-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
corelib is missing htmlescape #1657
Comments
This comment was originally written by @seaneagan To me it would make more sense in "dart:html", no ? |
At least right now, dart:html isn't available on the standalone VM and HTML escaping would definitely be useful there too. Ideally, I would be able to use dart:html on the server too, but that's a much bigger feature request. :) |
It definitely belongs in some HTML-or-related library. Set owner to @lrhn. |
This comment was originally written by jjinux...@google.com What's the story with this, and how does it relate to: I noticed that that library is still using pre-M1 syntax. |
This comment was originally written by jjinux...@google.com Can we up the priority of this? It seems like a critical function. I have several projects that need this functionality, and I've had to copy the same code into each of them. Removed Priority-Medium label. |
htmlescape went away as a separate library, because a single-function library doesn't make sense. I agree with Lasse that what we really need is an agnostic library that can be used in all environments, rather than just dropping this into corelib. |
This comment was originally written by jjinux...@google.com I remember when this was added to Dojo. Some guy came along and added escape functions for HTML, JavaScript, etc. |
This comment was originally written by jjinux...@google.com Can we please fix this? Properly escaping HTML is really, really important, and not everyone uses Web UI. I don't see any packages for this on pub. |
This isn't going to go into corelib. There's nothing stopping you from pushing this onto pub ;) |
This comment was originally written by jjinux...@google.com This seems like a really critical piece of functionality. For some reason, I just have the feeling that someone more important than me should push the package ;) |
Removed Type-Defect label. |
There are 3 copies of this in pub packages (and I just copied one for my own project). Would be good to DRY these up. pkg/unittest/lib/html_enhanced_config.dart |
This feels like it should be part of dart:convert (or similar) together with all the other converters. Added this to the M6 milestone. |
Sure. Just somewhere shareable between client and server code. |
Removed Priority-High label. |
Removed the owner. |
CL started https://codereview.chromium.org/23492002/ |
r27211 Removed Ready-to-implement label. |
This issue was originally filed by mattsh@google.com
Need a function to escape html somewhere in dart corelib.
Something like the following:
String htmlEscape(String text) {
return text.replaceAll('&', '&').replaceAll(
'>', '>').replaceAll('<', '<');
}
The text was updated successfully, but these errors were encountered: