various small usability improvements

This commit is contained in:
azivner
2017-08-13 21:42:10 -04:00
parent 191f70477c
commit 6fe81cd93a
7 changed files with 29 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ function html2notecase(contents, note) {
contents = contents.replace(/<br>/g, '\n');
contents = contents.replace(/<\/p>/g, '\n');
contents = contents.replace(/<p>/g, '');
contents = contents.replace(/&nbsp;/g, ' ');
let index = 0;