-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 2.0
-
Component/s: Editor - Page / Comment Editor
When inserting the following code inside a code macro, all leading white spaces are removed till for character. It should be till the first newline:
{code:java}
if (dirName == null)
{
log.warn("No directory specified for export - not exporting");
return;
}
{code}
results in:
if (dirName == null)
{
log.warn("No directory specified for export - not exporting");
return;
}