diff --git a/advanced/composing_routers.html b/advanced/composing_routers.html
index f2b3da13..891e7602 100644
--- a/advanced/composing_routers.html
+++ b/advanced/composing_routers.html
@@ -1189,7 +1189,7 @@
diff --git a/advanced/configuring_routers.html b/advanced/configuring_routers.html
index 51e85548..9bee9112 100644
--- a/advanced/configuring_routers.html
+++ b/advanced/configuring_routers.html
@@ -903,7 +903,7 @@
diff --git a/advanced/dev_workflow.html b/advanced/dev_workflow.html
index 0d9aa47a..08aa8799 100644
--- a/advanced/dev_workflow.html
+++ b/advanced/dev_workflow.html
@@ -954,7 +954,7 @@
diff --git a/advanced/different_routers.html b/advanced/different_routers.html
index 661f3de4..f3e2728e 100644
--- a/advanced/different_routers.html
+++ b/advanced/different_routers.html
@@ -902,7 +902,7 @@
diff --git a/advanced/route_validation.html b/advanced/route_validation.html
index a9615875..df20fb3d 100644
--- a/advanced/route_validation.html
+++ b/advanced/route_validation.html
@@ -990,7 +990,7 @@
diff --git a/advanced/shared_routes.html b/advanced/shared_routes.html
index 9f661df7..124d7321 100644
--- a/advanced/shared_routes.html
+++ b/advanced/shared_routes.html
@@ -911,7 +911,7 @@
diff --git a/basics/error_messages.html b/basics/error_messages.html
index b1cb380f..32472444 100644
--- a/basics/error_messages.html
+++ b/basics/error_messages.html
@@ -878,7 +878,7 @@
diff --git a/basics/name_based_routing.html b/basics/name_based_routing.html
index 5e262abf..0ee1a953 100644
--- a/basics/name_based_routing.html
+++ b/basics/name_based_routing.html
@@ -913,7 +913,7 @@
diff --git a/basics/path_based_routing.html b/basics/path_based_routing.html
index 01b972f6..ec8a9dff 100644
--- a/basics/path_based_routing.html
+++ b/basics/path_based_routing.html
@@ -871,7 +871,7 @@
diff --git a/basics/route_conflicts.html b/basics/route_conflicts.html
index d8237d18..a7673d71 100644
--- a/basics/route_conflicts.html
+++ b/basics/route_conflicts.html
@@ -927,7 +927,7 @@
diff --git a/basics/route_data.html b/basics/route_data.html
index 2d90077d..03f157ea 100644
--- a/basics/route_data.html
+++ b/basics/route_data.html
@@ -965,7 +965,7 @@
diff --git a/basics/route_data_validation.html b/basics/route_data_validation.html
index 86131a52..83238638 100644
--- a/basics/route_data_validation.html
+++ b/basics/route_data_validation.html
@@ -942,7 +942,7 @@
diff --git a/basics/route_syntax.html b/basics/route_syntax.html
index 5e473e63..a05332fc 100644
--- a/basics/route_syntax.html
+++ b/basics/route_syntax.html
@@ -949,7 +949,7 @@
diff --git a/basics/router.html b/basics/router.html
index e687503d..30741ef3 100644
--- a/basics/router.html
+++ b/basics/router.html
@@ -925,7 +925,7 @@
diff --git a/coercion/clojure_spec_coercion.html b/coercion/clojure_spec_coercion.html
index d2e360b6..9dc6a7de 100644
--- a/coercion/clojure_spec_coercion.html
+++ b/coercion/clojure_spec_coercion.html
@@ -990,7 +990,7 @@ The s/keys accepts :opt-un to support optional keys.
diff --git a/coercion/coercion.html b/coercion/coercion.html
index 358e2985..3a1bb61c 100644
--- a/coercion/coercion.html
+++ b/coercion/coercion.html
@@ -979,7 +979,7 @@
diff --git a/coercion/data_spec_coercion.html b/coercion/data_spec_coercion.html
index b49e50f5..837fa3de 100644
--- a/coercion/data_spec_coercion.html
+++ b/coercion/data_spec_coercion.html
@@ -877,7 +877,7 @@
diff --git a/coercion/malli_coercion.md b/coercion/malli_coercion.md
index b9627215..7c041d98 100644
--- a/coercion/malli_coercion.md
+++ b/coercion/malli_coercion.md
@@ -43,3 +43,29 @@ Failing coercion:
(match-by-path-and-coerce! "/metosin/users/ikitommi")
; => ExceptionInfo Request coercion failed...
```
+
+## Configuring coercion
+
+Using `create` with options to create the coercion instead of `coercion`:
+
+```clj
+(reitit.coercion.malli/create
+ {:transformers {:body {:default default-transformer-provider
+ :formats {"application/json" json-transformer-provider}}
+ :string {:default string-transformer-provider}
+ :response {:default default-transformer-provider}}
+ ;; set of keys to include in error messages
+ :error-keys #{:type :coercion :in :schema :value :errors :humanized #_:transformed}
+ ;; schema identity function (default: close all map schemas)
+ :compile mu/closed-schema
+ ;; validate request & response
+ :validate true
+ ;; top-level short-circuit to disable request & response coercion
+ :enabled true
+ ;; strip-extra-keys (effects only predefined transformers)
+ :strip-extra-keys true
+ ;; add/set default values
+ :default-values true
+ ;; malli options
+ :options nil})
+```
diff --git a/coercion/schema_coercion.html b/coercion/schema_coercion.html
index 3732c6c0..16d327f3 100644
--- a/coercion/schema_coercion.html
+++ b/coercion/schema_coercion.html
@@ -878,7 +878,7 @@
diff --git a/development.html b/development.html
index cbc31ac5..013b5819 100644
--- a/development.html
+++ b/development.html
@@ -869,7 +869,7 @@ lein test
diff --git a/faq.html b/faq.html
index dc9810f6..cdd73739 100644
--- a/faq.html
+++ b/faq.html
@@ -949,7 +949,7 @@
diff --git a/frontend/basics.html b/frontend/basics.html
index b576d6a2..6d1e937f 100644
--- a/frontend/basics.html
+++ b/frontend/basics.html
@@ -866,7 +866,7 @@ React breaking due to errors.