166
167
168
169
170
171
172
173
174
175
176
177
|
catch (e) {
helpers.logerror(e);
return '# Error. Data: ' + oErr.toString();
}
}
exports.getParagraph = getParagraph;
exports.addHtmlEntities = addHtmlEntities;
exports.createHTMLBlock = createHTMLBlock;
exports.tagParagraph = tagParagraph;
exports.getReadableError = getReadableError;
|
>
|
|
|
|
|
>
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
catch (e) {
helpers.logerror(e);
return '# Error. Data: ' + oErr.toString();
}
}
if (typeof(exports) !== 'undefined') {
exports.getParagraph = getParagraph;
exports.addHtmlEntities = addHtmlEntities;
exports.createHTMLBlock = createHTMLBlock;
exports.tagParagraph = tagParagraph;
exports.getReadableError = getReadableError;
}
|