/** {@inheritDoc} */ protected Content codeTagOutput(Tag tag) { Content result = HtmlTree.CODE(new StringContent(Util.normalizeNewlines(tag.text()))); return result; }
/** {@inheritDoc} */ protected Content literalTagOutput(Tag tag) { Content result = new StringContent(Util.normalizeNewlines(tag.text())); return result; }