-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fix notification text #4
base: master
Are you sure you want to change the base?
Fix notification text #4
Conversation
We previously got html-escaped text and our added link/image HTML all in the notification, which didn't look very nice.
We can't allow HTML tags to get into the notification. What we can do though is remove them altogether. i.e. we escape them for webkit, and remove them for notify. |
Why exactly? |
@clefebvre Ah, Notify supports some HTML in the notifications but isn't happy with escaping...is there an option to forbid Notify to parse text as HTML? |
We previously got html-escaped text and our added link/image HTML all in the notification, which didn't look very nice.
Will fix: #7