try {
mTransformResultWithoutError = true;
final boolean create_image = StringUtils.equals(getProperty("create_html_linked_image"), "true");
final String areaCode = getAreaCode(create_image);
final String xsltFileName = getProperty("xslt_file");
final Mode mode = Mode.valueOf(getProperty("mode", Mode.EXPORT.name()));
String[] parameters = getProperty("set_properties", "").split(",\\s*");
boolean success = transformMapWithXslt(xsltFileName, saveFile, areaCode, mode, parameters);
if (!success) {
JOptionPane.showMessageDialog(UITools.getFrame(), getProperty("error_applying_template"), "Freeplane",
JOptionPane.ERROR_MESSAGE);