From e9b22e8ac39000b641d951608c30a265f3e7ece1 Mon Sep 17 00:00:00 2001 From: Gedion Date: Sat, 11 Aug 2012 15:44:42 -0500 Subject: [PATCH] fix indentation --- src/node/utils/ExportHtml.js | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/node/utils/ExportHtml.js b/src/node/utils/ExportHtml.js index c34627fe..35403013 100644 --- a/src/node/utils/ExportHtml.js +++ b/src/node/utils/ExportHtml.js @@ -403,19 +403,20 @@ function getHTMLFromAtext(pad, atext) lists.length--; } var lineContentFromHook = hooks.callAllStr("getLineHTMLForExport", - { - line: line, - apool: apool, - attribLine: attribLines[i], - text: textLines[i] - }, " ", " ", ""); - if (lineContentFromHook) - { - pieces.push(lineContentFromHook, ''); - } else - { - pieces.push(lineContent, '
'); - } + { + line: line, + apool: apool, + attribLine: attribLines[i], + text: textLines[i] + }, " ", " ", ""); + if (lineContentFromHook) + { + pieces.push(lineContentFromHook, ''); + } + else + { + pieces.push(lineContent, '
'); + } } }