-
Bug
-
Resolution: Fixed
-
Low
-
2.0
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;
}