diff --git a/README.md b/README.md
index fae1a20..7102f8f 100644
--- a/README.md
+++ b/README.md
@@ -153,11 +153,25 @@ JS
HTML
-- **`contenteditable`**_(default: `true`)_: Make content be editable live on the screen. EG:
some text
-- **`editable-section`**_(default: `false`)_: Prevent editing when not set. EG: Will be excluded from protection of edits
-- **`protected`**_(default: `false`)_: Hide right click, download, exact url. EG:
+```markdown
+- **`contenteditable`** _(default: `true`)_: Make content editable live on the screen.
+ Example:
+ ```html
+ some text
+ ```
+
+- **`editable-section`** _(default: `false`)_: Prevent editing when not set.
+ Example:
+ ```html
+ Will be excluded from protection of edits
+ ```
+- **`protected`** _(default: `false`)_: Hide right-click, download, or access to the exact URL.
+ Example:
+ ```html
+
+ ```
--------------------------------------------------------------------------------
## 🔍 How It Works