diff --git a/README.md b/README.md
index 209f39e..06abc93 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,26 @@
+### Notes about this fork
-
SAMPLE APP :point_right:
+- This is a merge of [@timkellypa](https://github.com/timkellypa/cordova-plugin-local-notifications), [@bhandaribhumin](https://github.com/bhandaribhumin/cordova-plugin-local-notification-12), [@powowbox](https://github.com/powowbox/cordova-plugin-local-notification-12) and my own fixes.
+- If the app's in background and the 'triggerInApp' option is set to 'true', there is no way to show to users a new notification since the notification is not displayed in the notification center and the app is not visible.
+ - Fix: if the app's running in background, display the notification in the notification center.
+- If the notification is scheduled / canceled / scheduled with the same id, the notification triggers twice.
+ - Fix: Due to the random reqCode. Now use the notification id for the reqCode.
-
+#### Important notice
+If the app is in background, it must not be launched but put in foreground.
+To avoid launching the app in this case, add the following in your config.xml file:
+``
+
+#### To install
+Run `cordova plugin add https://github.com/fquirin/cordova-plugin-local-notifications.git --save --noregistery`
+***
+
+SAMPLE APP :point_right:
+
-
@@ -18,31 +32,13 @@
-
> A notification is a message you display to the user outside of your app's normal UI. When you tell the system to issue a notification, it first appears as an icon in the notification area. To see the details of the notification, the user opens the notification drawer. Both the notification area and the notification drawer are system-controlled areas that the user can view at any time.
-
-
-
-### Notes about this fork
-
-- This is a merge of [@timkellypa](https://github.com/timkellypa/cordova-plugin-local-notifications), [@bhandaribhumin](https://github.com/bhandaribhumin/cordova-plugin-local-notification-12), [@powowbox](https://github.com/powowbox/cordova-plugin-local-notification-12) and my own fixes.
-- If the app's in background and the 'triggerInApp' option is set to 'true', there is no way to show to users a new notification since the notification is not displayed in the notification center and the app is not visible.
- - Fix: if the app's running in background, display the notification in the notification center.
-- If the notification is scheduled / canceled / scheduled with the same id, the notification triggers twice.
- - Fix: Due to the random reqCode. Now use the notification id for the reqCode.
-
-#### Important notice
-If the app is in background, it must not be launched but put in foreground.
-To avoid launching the app in this case, add the following in your config.xml file:
-``
-
-#### To install
-Run `cordova plugin add https://github.com/fquirin/cordova-plugin-local-notifications.git --save --noregistery`
+
### Notification components