You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/utilities/render.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,18 @@ This will generate the following output:
84
84
</html>
85
85
```
86
86
87
+
<Danger>
88
+
When running on the browser, to properly support Safari and browsers running on iOS, you will
89
+
need to polyfill the [ReadableByteStreamController API](https://developer.mozilla.org/en-US/docs/Web/API/ReadableByteStreamController#browser_compatibility).
90
+
91
+
We recommend [npm i web-streams-polyfill](https://www.npmjs.com/package/web-streams-polyfill),
92
+
and it can be applied as follows in some sort of root file for your website:
93
+
94
+
```jsx
95
+
import"web-streams-polyfill/polyfill";
96
+
```
97
+
</Danger>
98
+
87
99
## 4. Convert to Plain Text
88
100
89
101
Plain text versions of emails are important because they ensure that the message can be read by the recipient even if they are unable to view the HTML version of the email.
0 commit comments