diff --git a/docs/convert.md b/docs/convert.md index 11ec83a5d..180d7d4c6 100644 --- a/docs/convert.md +++ b/docs/convert.md @@ -209,7 +209,7 @@ Should be converted to: import.meta.resolve("npm:regl") ``` -Since notebooks also support [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import), you might also see libraries being loaded from CDNs such as [jsDelivr](https://www.jsdelivr.com/esm) or [esm.sh](https://esm.sh/). While you can use dynamic imports in Framework, for security and performance, we recommend also converting these into static imports. So this: +Some notebooks use [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) to load libraries from npm-backed CDNs such as [jsDelivr](https://www.jsdelivr.com/esm) and [esm.sh](https://esm.sh/). While you can use dynamic imports in Framework, for security and performance, we recommend converting these into static imports. So this: ```js run=false isoformat = import("https://esm.sh/isoformat") @@ -253,7 +253,7 @@ const foo = (function* () {