SynEdit: Fix exporting missing CodeStart tags when heoFragmentOnly in Options of TSynEditExporterHtml. Issue #0028733.

git-svn-id: trunk@49874 -
This commit is contained in:
bart 2015-09-27 09:38:12 +00:00
parent df23bf086e
commit bce3f75f66

View File

@ -400,7 +400,9 @@ begin
else
begin
if (heoWinClipHeader in fOptions) then
DocHeader := DocHeader + StartFragmentComment + CodeStart;
DocHeader := DocHeader + StartFragmentComment + CodeStart
else
DocHeader := DocHeader + CodeStart;
end;
if fFontSize <> fsDefault then
sFontSize := Format(' size=%d', [1 + Ord(fFontSize)])