diff --git a/README.txt b/README.txt
index 0242695..7088a87 100644
--- a/README.txt
+++ b/README.txt
@@ -1,70 +1,85 @@
-README - Body Style Image
------------------------------
-
 CONTENTS OF THIS FILE
 ---------------------
-   
+
  * Introduction
+ * Requirements
  * Installation
  * Configuration
- * Features
+ * Maintainers
+
 
 INTRODUCTION
 ------------
 
-Apply image style to node images which are uploaded through CKEditor, IMCE.
+The Body Style Image module helps you to apply image style to body content
+images which are already uploaded through CKEditor, IMCE. Image style will be
+applied based on the content type selected in back-end configuration.
 
-INSTALLTION
------------
 
-1) Copy body_style_image directory to your modules directory.
+ * For a full description of the module visit:
+   https://www.drupal.org/project/body_style_image
+
+ * To submit bug reports and feature suggestions, or to track changes visit:
+   https://www.drupal.org/project/issues/body_style_image
+
+
+REQUIREMENTS
+------------
+
+This module requires no modules outside of Drupal core.
+
+
+INSTALLATION
+------------
+
+ * Install the Body Style Image module as you would normally install a
+   contributed Drupal module. Visit https://www.drupal.org/node/1897420 for
+   further information.
 
-2) Enable the module at module configuration page.
 
 CONFIGURATION
 -------------
-How to Configure Body Style Image?
- 
- - Use the administration configuration page and help (Body Style Image module)
- 
- - Select content type and Image Style which you want to apply.
- 
- - Configuration URL
-   admin/config/development/body-style-image page.
-   
-How to Use Body Style Image?
-   
-   7.x Example: 
-   
+
+    1. Navigate to Administration > Extend and enable the module.
+    2. Navigate to admin/config/development/body-style-image to configure.
+    3. Select the node type to edit and use the dropdown to select the image
+       style for that particular node.
+
+Please note that this module will not apply image style for individual images.
+
+
+**For Drupal 8.x:**
+
+```
+   {% if newbody_content %}
+     {{ newbody_content|raw }}
+   {% else %}
+     {{ content }}
+   {% endif %}
+```
+Then check whether its empty or not then print 'newbody_content' variable to
+'node.html.twig' or 'node--[type].html.twig' file.
+
+
+**For Drupal 7.x:**
+```
    if (!empty($newbody_content)) {
      print render($newbody_content);
    }
    else {
      print render($content);
    }
-   
-   8.x Example:
-   
-   {% if newbody_content %}
-    {{ newbody_content|raw }}
-   {% else %}
-	{{ content }}
-   {% endif %}
-   
-   Override template :
-   7.x:
-   
-   Check whether its empty or not then Print '$newbody_content' variable to
-   'node.tpl.php' or 'node--[CONTENT_TYPE].tpl.php' file.
-   
-   8.x:
-   
-   Check whether its empty or not then Print '$newbody_content' variable to
-   'node.html.twig' or 'node--[type].html.twig' file.
-  
-Features
---------
-
-- Apply Image style to node body content.
-- Image Style will be applied for Images which are uploaded through CKEditor,
-  IMCE.
+```
+
+Then check whether its empty or not then print '$newbody_content' variable to
+'node.tpl.php' or 'node--[CONTENT_TYPE].tpl.php' file.
+
+
+MAINTAINERS
+-----------
+
+ * Govindaraju Venkatesan (govindpvg) - https://www.drupal.org/u/govindpvg
+
+Supporting organization:
+ * Cognizant Technology Solutions -
+   https://www.drupal.org/cognizant-technology-solutions
