add more comment to explain this weirdness

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/3564/head
Michael Telatynski 2017-04-22 16:05:08 +01:00
parent 99923b7b8f
commit 0da6ca8aea
1 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,8 @@ export default class ElectronPlatform extends VectorBasePlatform {
// Electron Docs state all supported linux notification systems follow this markup spec
// https://github.com/electron/electron/blob/master/docs/tutorial/desktop-environment-integration.md#linux
// maybe we should pass basic styling (italics, bold, underline) through from MD
// we only have to strip out < and > as the spec doesn't include anything about things like &amp;
// so we shouldn't assume that all implementations will treat those properly. Very basic tag parsing is done.
if (window.process.platform === 'linux') {
msg = msg.replace(/</g, "&lt;").replace(/>/g, "&gt;");
}