From efba00e4698ee8e0380c712ae68c384eb748de25 Mon Sep 17 00:00:00 2001 From: patx Date: Sun, 19 Jan 2025 19:14:13 -0500 Subject: [PATCH] update readme.md to be more consistent --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4402c76..022a099 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ class MyApp(Server): MicroPie supports handling form data submitted via HTTP POST requests. Form data is automatically mapped to method arguments. -#### **Example 1: Handling Form Submission with Default Values** +#### **Handling Form Submission with Default Values** ```python class MyApp(Server): @@ -119,7 +119,7 @@ class MyApp(Server): return f"Form submitted by: {username}" ``` -#### **Example 2: Accessing Raw POST Data** +#### **Accessing Raw POST Data** ```python class MyApp(Server): @@ -128,7 +128,7 @@ class MyApp(Server): return f"Submitted by: {username}" ``` -#### **Example 3: Handling Multiple POST Parameters** +#### **Handling Multiple POST Parameters** ```python class MyApp(Server):