diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2015-11-23 22:57:47 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2015-11-23 22:57:47 +0100 |
commit | 6b37966de51c01e6a55dd0188d9d2ac953559c14 (patch) | |
tree | babe6cfe8bfe7770d63d99ca50a0d2cc7375f2e8 | |
parent | 978d1b1f535889596d68280ede192a9f9de24d06 (diff) | |
download | watchnews-6b37966de51c01e6a55dd0188d9d2ac953559c14.tar.gz watchnews-6b37966de51c01e6a55dd0188d9d2ac953559c14.zip |
replace <i> with <em> since the latter is not filtered in owncloud news
-rw-r--r-- | watchnews/web.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/watchnews/web.py b/watchnews/web.py index d129b0d..b38f354 100644 --- a/watchnews/web.py +++ b/watchnews/web.py @@ -36,8 +36,8 @@ class DiffSupport: '-': 'diff_sub', '^': 'diff_chg'} actionname = { - '+': 'i', - '-': 'i', + '+': 'em', + '-': 'em', '^': 'strong'} elems = [] nextpos = line.find("\x00") |