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, '
');
+ }
}
}