diff --git a/packages/flutter_html_audio/README.md b/packages/flutter_html_audio/README.md
index 81ac741006..16f4f6eeaa 100644
--- a/packages/flutter_html_audio/README.md
+++ b/packages/flutter_html_audio/README.md
@@ -6,12 +6,12 @@ This package renders audio elements using the [`chewie_audio`](https://pub.dev/p
The package considers the attributes `controls`, `loop`, `src`, `autoplay`, `width`, and `muted` when rendering the audio widget.
-#### Registering the `CustomRender`:
+#### Registering the `AudioHtmlExtension`:
```dart
Widget html = Html(
- customRenders: {
- audioMatcher(): audioRender(),
+ extensions: {
+ AudioHtmlExtension(),
}
);
-```
\ No newline at end of file
+```
diff --git a/packages/flutter_html_iframe/README.md b/packages/flutter_html_iframe/README.md
index 2c46edc0e7..facb70174e 100644
--- a/packages/flutter_html_iframe/README.md
+++ b/packages/flutter_html_iframe/README.md
@@ -8,23 +8,23 @@ When rendering iframes, the package considers the width, height, and sandbox att
Sandbox controls the JavaScript mode of the webview - a value of `null` or `allow-scripts` will set `javascriptMode: JavascriptMode.unrestricted`, otherwise it will set `javascriptMode: JavascriptMode.disabled`.
-#### Registering the `CustomRender`:
+#### Registering the `IframeHtmlExtension`:
```dart
Widget html = Html(
- customRenders: {
- iframeMatcher(): iframeRender(),
+ extensions: {
+ IframeHtmlExtension(),
}
);
```
-You can set the `navigationDelegate` of the webview with the `navigationDelegate` property on `iframeRender`. This allows you to block or allow the loading of certain URLs.
+You can set the `navigationDelegate` of the webview with the `navigationDelegate` property on `IframeHtmlExtension`. This allows you to block or allow the loading of certain URLs.
#### `NavigationDelegate` example:
```dart
Widget html = Html(
- customRenders: {
- iframeMatcher(): iframeRender(navigationDelegate: (NavigationRequest request) {
+ extensions: {
+ IframeHtmlExtension(navigationDelegate: (NavigationRequest request) {
if (request.url.contains("google.com/images")) {
return NavigationDecision.prevent;
} else {
diff --git a/packages/flutter_html_math/README.md b/packages/flutter_html_math/README.md
index 4dd30c1da1..5f4817a504 100644
--- a/packages/flutter_html_math/README.md
+++ b/packages/flutter_html_math/README.md
@@ -8,17 +8,17 @@ When rendering MathML, the package takes the MathML data within the `