Skip to content

Commit c9e4804

Browse files
committed
Camel case it
Signed-off-by: Sebastian (Tiedtke) Huckleberry <[email protected]>
1 parent cc40c88 commit c9e4804

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/configuration/cell-level.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Cell level options gives users the flexibility to modify the behavior of each ex
3636
| excludeFromRunAll | Prevent executing this cell during the "Run All" operation | false |
3737
| interactive | Indicates if run should allow interactive input | false |
3838
| 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] |
4040
| name | Cell’s canonical name useful for referencing the cell via CLI | [auto-generated] |
4141
| ignore | Ingore code block from CLI and notebook transformation into a runnable cell | false |
4242
| 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_**
7777
Another example (HTML-attributes notation):
7878

7979
````sh {"id":"01HPM6HZEJKM8PPG6T38RABV9A"}
80-
```sh { interactive=true name=example mimetype=text/plain closeTerminalOnSuccess=false background=false }
80+
```sh { interactive=true name=example mimeType=text/plain closeTerminalOnSuccess=false background=false }
8181
echo hello world
8282
````
8383
@@ -243,19 +243,19 @@ A cell's execution terminal is auto-hidden unless it fails. This default behavio
243243
docker ps | grep runme/demo:latest
244244
````
245245
246-
### Human-friendly output / mimetype configuration
246+
### Human-friendly output / mimeType configuration
247247
248248
Not all cells’ output is plain text. For example, you can have JSON, text, images, etc, all in your Markdown file.
249249
250250
You can configure to any of your choice in the cell configuration setting.
251251
252-
![mimetype](/img/mimetype.png)
252+
![mimeType](/img/mimetype.png)
253253
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*.
255255
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.
257257
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`.
259259
260260
![Human-centric output](/img/human-centric-output.png)
261261

docs/configuration/output-rendering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Multipurpose Internet Mail Extensions(MIME) types are a standard way of indicati
1212

1313
In this guide, we will work with JSON data to specify that.
1414

15-
![Runme mimetype](/img/guide-page/runme-mimetype.png)
15+
![Runme mimeType](/img/guide-page/runme-mimetype.png)
1616

17-
However it is important to note that setting the `mimetype` is optional as Runme has an effective auto-detection that detects JSON/CSV files reliably.
17+
However it is important to note that setting the `mimeType` is optional as Runme has an effective auto-detection that detects JSON/CSV files reliably.
1818

1919
### Interactive Mode
2020

0 commit comments

Comments
 (0)