diff --git a/platform/analysis-impl/src/com/intellij/codeInspection/export/HTMLExporter.java b/platform/analysis-impl/src/com/intellij/codeInspection/export/HTMLExporter.java index f136632d0f76..896d22588afe 100644 --- a/platform/analysis-impl/src/com/intellij/codeInspection/export/HTMLExporter.java +++ b/platform/analysis-impl/src/com/intellij/codeInspection/export/HTMLExporter.java @@ -59,9 +59,10 @@ public class HTMLExporter { public void createPage(RefEntity element) throws IOException { final String currentFileName = fileNameForElement(element); - StringBuffer buf = new StringBuffer(); + StringBuffer buf = new StringBuffer(""); appendNavBar(buf, element); myComposer.composeWithExporter(buf, element, this); + buf.append(""); writeFileImpl(myRootFolder, currentFileName, buf); myGeneratedPages.add(element); }