Provide serialization and de-serialization of different formats based on Google’s protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML.
The HTML format when printing the String should do something like Commons Text StringEscapeUtils.escapeHtml4(text); to escape ampersands and such inside the text.
On line : https://github.com/bivas/protobuf-java-format/blob/master/src/main/java/com/googlecode/protobuf/format/HtmlFormat.java#L197
The HTML format when printing the String should do something like Commons Text StringEscapeUtils.escapeHtml4(text); to escape ampersands and such inside the text.