diff --git a/CHANGELOG.md b/CHANGELOG.md
index 37b5ced..6c6ec4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
## v1.1.1
- Bugs correction
+- Support for Atto editor
## v1.1.0
diff --git a/README.md b/README.md
index 876c58b..cc8039e 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Find the extension on the Chrome Webstore right [here](https://chrome.google.com
- [True or false](#true-or-false)
- [Number](#number)
- [Text](#text)
+ - [Atto](#atto)
- [What about if the question can't be autocompleted ?](#what-about-if-the-question-cant-be-autocompleted-)
- [Test](#test)
- [Beta version with advanced features](#beta-version-with-advanced-features)
@@ -145,6 +146,10 @@ Person 2 | Yann | 19/01/2000 | no

+### Atto
+
+
+
## What about if the question can't be autocompleted ?
To know if the answer has been copied to the clipboard, you can look at the title of the page which will become "Copied to clipboard" for 3 seconds if `Title indication` is on.
@@ -153,7 +158,7 @@ To know if the answer has been copied to the clipboard, you can look at the titl
## Test
-- Solution 1: Go on [this moodle test page](https://school.moodledemo.net/login/index.php) (username: `student`, password: `moodle`) and choose any quiz.
+- Solution 1: Go on this [moodle demo page](https://moodle.org/demo).
- Solution 2: Run the `index.html` file located in the `test/fake-moodle` folder.
## Beta version with advanced features
diff --git a/TODO.md b/TODO.md
index 4585999..4640904 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,3 +1 @@
# TODO
-
-- Fixe contenteditable not filled
diff --git a/assets/atto.gif b/assets/atto.gif
new file mode 100644
index 0000000..ed021b5
Binary files /dev/null and b/assets/atto.gif differ
diff --git a/package.json b/package.json
index 44867c2..5b287a2 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,8 @@
"version": "1.1.1",
"description": "This extension allows you to hide CHAT-GPT in a Moodle quiz.",
"scripts": {
- "build": "npm run prettier && npm run lint && rollup -c",
+ "build": "npm run prettier && npm run lint && npm run fastBuild",
+ "fastBuild": "rollup -c",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ."
},