diff -r 3b3999550508 -r e04714a1d4eb client/src/HtmlSerializer.js --- a/client/src/HtmlSerializer.js Thu Jun 08 17:57:57 2017 +0200 +++ b/client/src/HtmlSerializer.js Thu Jun 08 18:54:36 2017 +0200 @@ -10,7 +10,7 @@ em: 'italic', strong: 'bold', u: 'underline', - annotation: 'span' + category: 'span' } const rules = [ @@ -51,7 +51,7 @@ case 'bold': return {children} case 'italic': return {children} case 'underline': return {children} - case 'annotation': return {children} + case 'category': return {children} default: return; } }