diff --git a/index.js b/index.js index 9f4570f..59842d8 100644 --- a/index.js +++ b/index.js @@ -4,8 +4,11 @@ var Changeset = require("ep_etherpad-lite/static/js/Changeset"); exports.getLineHTMLForExport = function (hook, context) { var author = _analyzeLine(context.attribLine, context.apool); if (author) { - return "" + context.text + "
"; + console.debug('EP_AUTORSHIP_EXPORT PRE', context.lineContent); + context.lineContent = "" + context.lineContent + "
"; + console.debug('EP_AUTORSHIP_EXPORT POST', context.lineContent); } + return true; } function _analyzeLine(alineAttrs, apool) {