removed useless import and whitespace

This commit is contained in:
Aleks Kissinger 2020-10-12 21:15:38 +01:00
parent f0c4473107
commit 38d1aac978

View file

@ -16,7 +16,6 @@ limitations under the License.
import commonmark from 'commonmark';
import {escape} from "lodash";
import SettingsStore from './settings/SettingsStore';
const ALLOWED_HTML_TAGS = ['sub', 'sup', 'del', 'u'];
@ -71,7 +70,6 @@ function is_allowed_html_tag(node) {
const tag = matches[1];
return ALLOWED_HTML_TAGS.indexOf(tag) > -1;
}
return false;
}