diff -r a8300ef1876e -r 284e866f55c7 client/src/HtmlSerializer.js --- a/client/src/HtmlSerializer.js Wed Jun 07 18:18:44 2017 +0200 +++ b/client/src/HtmlSerializer.js Thu Jun 08 11:13:41 2017 +0200 @@ -13,12 +13,6 @@ annotation: 'span' } -const annotationStyle = { - textDecoration: 'underline', - textDecorationStyle: 'dotted', - backgroundColor: 'yellow' -} - const rules = [ // Block rules { @@ -57,7 +51,7 @@ case 'bold': return {children} case 'italic': return {children} case 'underline': return {children} - case 'annotation': return {children} + case 'annotation': return {children} default: return; } }