We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e5f9e commit 5fdb914Copy full SHA for 5fdb914
README.md
@@ -17,13 +17,13 @@ dataframe_image has the ability to export both normal and styled DataFrames as i
17
>>> dfi.export(df_styled, 'df_styled.png')
18
```
19
20
-> [!NOTE]
21
-> If you run code in a Jupyter Notebook, you must use async api:
22
-
23
-```python
24
-import dataframe_image as dfi
25
-await dfi.export_async(df_styled, 'df_styled.png')
26
-```
+> [!IMPORTANT]
+> If you run code in a Jupyter Notebook or other async context, you must use async api:
+>
+> ```python
+> import dataframe_image as dfi
+> await dfi.export_async(df_styled, 'df_styled.png')
+> ```
27
28
You may also export directly from the DataFrame or styled DataFrame using the `dfi.export` and `export_png` methods, respectively.
29
0 commit comments