diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc
index 2df4b35..506b2eb 100644
--- a/plugins/FeedsNodeProcessor.inc
+++ b/plugins/FeedsNodeProcessor.inc
@@ -85,6 +85,15 @@ class FeedsNodeProcessor extends FeedsProcessor {
     if (!empty($entity->nid) && !node_load($entity->nid)) {
       $entity->is_new = TRUE;
     }
+    //Set the default text form for author id
+    $user = new stdClass();
+    $user->uid = $this->config['author'];
+
+    $formats = filter_formats($user);
+    if(!empty($formats)){
+	$default_format  = array_shift($formats);
+    	$entity->body[$entity->language][0]['format']  = $default_format->format;
+    }
     node_save($entity);
   }
 
