chore: remove old md files
diff --git a/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.md b/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.md
deleted file mode 100644
index c674ab6..0000000
--- a/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.md
+++ /dev/null
@@ -1,3 +0,0 @@
-<h3>{{_("Fiscal Year")}}</h3>
-
-<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>
\ No newline at end of file
diff --git a/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.md b/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.md
deleted file mode 100644
index e6feee9..0000000
--- a/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.md
+++ /dev/null
@@ -1,19 +0,0 @@
-<b>Material Request Type</b>: {{ doc.material_request_type }}<br>
-<b>Company</b>: {{ doc.company }}
-
-<h3>Order Summary</h3>
-
-<table border=2 >
- <tr align="center">
- <th>Item Name</th>
- <th>Received Quantity</th>
- </tr>
- {% for item in doc.items %}
- {% if frappe.utils.flt(item.received_qty, 2) > 0.0 %}
- <tr align="center">
- <td>{{ item.item_code }}</td>
- <td>{{ frappe.utils.flt(item.received_qty, 2) }}</td>
- </tr>
- {% endif %}
- {% endfor %}
-</table>
\ No newline at end of file