From 82dbe5342d36cc9af260f26bb24c376d5b6299a2 Mon Sep 17 00:00:00 2001 From: callmegodsent Date: Sat, 18 Jan 2025 15:58:52 +0100 Subject: [PATCH] ... --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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