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: docs/configuration/cell-level.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Cell level options gives users the flexibility to modify the behavior of each ex
36
36
| excludeFromRunAll | Prevent executing this cell during the "Run All" operation | false |
37
37
| interactive | Indicates if run should allow interactive input | false |
38
38
| interpreter | The program or command line inserted into shebang (aka #!) line |[inferred from languageId]|
39
-
|mimetype| If set skips auto-detection and uses specific media (MIME) type |[empty]|
39
+
|mimeType| If set skips auto-detection and uses specific media (MIME) type |[empty]|
40
40
| name | Cell’s canonical name useful for referencing the cell via CLI |[auto-generated]|
41
41
| ignore | Ingore code block from CLI and notebook transformation into a runnable cell | false |
42
42
| transform | Transform code block into a runnable cell (notebook) and include as task in CLI (inverse of ignore; most relevant for `mermaid`) | true |
@@ -77,7 +77,7 @@ The above example uses the `echo` command to display the text **_hello world_**
Not all cells’ output is plain text. For example, you can have JSON, text, images, etc, all in your Markdown file.
249
249
250
250
You can configure to any of your choice in the cell configuration setting.
251
251
252
-

252
+

253
253
254
-
Using the optional **mimetype** specifier, you can specify the expected output type. Runme Notebooks have a variety of renderers that will display them as human-friendly. The MIME type defaults to *text/plain*.
254
+
Using the optional **mimeType** specifier, you can specify the expected output type. Runme Notebooks have a variety of renderers that will display them as human-friendly. The MIME type defaults to *text/plain*.
255
255
256
-
When the **interactive** setting is turned off, and the **mimetype** value is empty, Runme attempt to auto-detect the MIME Type. This is useful for automatically displaying a cell's output according to the renderers available in your VS Code installation. If you specify a specific MIME Type, it will be used instead of auto-detection.
256
+
When the **interactive** setting is turned off, and the **mimeType** value is empty, Runme attempt to auto-detect the MIME Type. This is useful for automatically displaying a cell's output according to the renderers available in your VS Code installation. If you specify a specific MIME Type, it will be used instead of auto-detection.
257
257
258
-
Runme has a `mimetype` feature that enables you to render images, CSV-based tables, and other supported content type right inside your Markdown file. Runme supports a wide range of mimetypes such as `text/x-json`, `text/x-javascript`, `text/x-html`, `image/png`, `image/svg+xml` and `text/csv`.
258
+
Runme has a `mimeType` feature that enables you to render images, CSV-based tables, and other supported content type right inside your Markdown file. Runme supports a wide range of Media types such as `text/x-json`, `text/x-javascript`, `text/x-html`, `image/png`, `image/svg+xml` and `text/csv`.
0 commit comments