Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
CallMeGodsent committed Jan 18, 2025
1 parent 6f9ffa7 commit 82dbe53
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,25 @@ JS


HTML
- **`contenteditable`**_(default: `true`)_: Make content be editable live on the screen. EG: <div id="" class="" contenteditable="true">some text</div>
- **`editable-section`**_(default: `false`)_: Prevent editing when not set. EG: <div id="editable-section" class="">Will be excluded from protection of edits</div>
- **`protected`**_(default: `false`)_: Hide right click, download, exact url. EG: <img src="example.jpg" protected>

```markdown
- **`contenteditable`** _(default: `true`)_: Make content editable live on the screen.
Example:
```html
<div id="" class="" contenteditable="true">some text</div>
```

- **`editable-section`** _(default: `false`)_: Prevent editing when not set.
Example:
```html
<div id="editable-section" class="">Will be excluded from protection of edits</div>
```

- **`protected`** _(default: `false`)_: Hide right-click, download, or access to the exact URL.
Example:
```html
<img src="example.jpg" protected>
```
--------------------------------------------------------------------------------

## 🔍 How It Works
Expand Down

0 comments on commit 82dbe53

Please sign in to comment.