diff --git a/web_date_warning/README.md b/web_date_warning/README.md
index 14d7a2f3..f8878434 100644
--- a/web_date_warning/README.md
+++ b/web_date_warning/README.md
@@ -1,9 +1,11 @@
-**Web Date Warning**
+#Web Date Warning
Provides warnings for date field entries that fall outside of a user-specified range, with the goal of reducing data entry errors.
-- For any date or date/time picker, set the threshold that should trigger the warning
-- Allows you to set a threshold for past, future or both
-- In addition to displaying warning text, will also display how many days in the past or future the selected date is
+
+* For any date or date/time picker, set the threshold that should trigger the warning
+* Allows you to set a threshold for past, future or both
+* In addition to displaying warning text, will also display how many days in the past or future the selected date is
+
On a record with the date or date/time picket you wish to add the warning to, edit the form view and create an inherited view. Target the field name and include the following details:
@@ -16,6 +18,6 @@ On a record with the date or date/time picket you wish to add the warning to, ed
And/or `options="{'warn_past': 30}"` to set a threshold for past dates where 30 is the number of days
-Example:
+**Example:**
``
\ No newline at end of file
diff --git a/web_date_warning/__manifest__.py b/web_date_warning/__manifest__.py
index 009c04e3..fc16dbd1 100644
--- a/web_date_warning/__manifest__.py
+++ b/web_date_warning/__manifest__.py
@@ -7,12 +7,14 @@
'category': 'Tools',
'complexity': 'expert',
'description': """
-**Web Date Warning**
+#Web Date Warning
Provides warnings for date field entries that fall outside of a user-specified range, with the goal of reducing data entry errors.
-- For any date or date/time picker, set the threshold that should trigger the warning
-- Allows you to set a threshold for past, future or both
-- In addition to displaying warning text, will also display how many days in the past or future the selected date is
+
+* For any date or date/time picker, set the threshold that should trigger the warning
+* Allows you to set a threshold for past, future or both
+* In addition to displaying warning text, will also display how many days in the past or future the selected date is
+
On a record with the date or date/time picket you wish to add the warning to, edit the form view and create an inherited view. Target the field name and include the following details:
@@ -25,7 +27,7 @@ On a record with the date or date/time picket you wish to add the warning to, ed
And/or `options="{'warn_past': 30}"` to set a threshold for past dates where 30 is the number of days
-Example:
+**Example:**
``
""",