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
* Fix conflict
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Co-authored-by: mariana <marianameireles@protonmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/tutorials/getting-started.md
+13-9Lines changed: 13 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -228,15 +228,19 @@ The `<py-config>` tag can be used as follows:
228
228
```
229
229
230
230
The following optional values are supported by `<py-config>`:
231
-
232
-
*`autoclose_loader` (boolean): If false, PyScript will not close the loading splash screen when the startup operations finish.
233
-
*`name` (string): Name of the user application. This field can be any string and is to be used by the application author for their own customization purposes.
234
-
*`version` (string): Version of the user application. This field can be any string and is to be used by the application author for their own customization purposes. It is not related to the PyScript version.
235
-
*`runtimes` (List of Runtimes): List of runtime configurations. Each Runtime expects the following fields:
236
-
*`src` (string, Required): URL to the runtime source.
237
-
*`name` (string): Name of the runtime. This field can be any string and is to be used by the application author for their own customization purposes.
238
-
*`lang` (string): Programming language supported by the runtime. This field can be used by the application author to provide clarification. It currently has no implications on how PyScript behaves.
239
-
231
+
| Value | Type | Description |
232
+
| ------ | ---- | ----------- |
233
+
|`autoclose_loader`| boolean | If false, PyScript will not close the loading splash screen when the startup operations finish. |
234
+
|`name`| string | Name of the user application. This field can be any string and is to be used by the application author for their own customization purposes. |
235
+
|`version`| string | Version of the user application. This field can be any string and is to be used by the application author for their own customization purposes. It is not related to the PyScript version. |
236
+
| `runtimes` | List of Runtimes | List of runtime configurations, described below.
237
+
238
+
A runtime configuration consists of the following:
239
+
| Value | Type | Description |
240
+
| ----- | ---- | ----------- |
241
+
|`src`| string (Required) | URL to the runtime source. |
242
+
|`name`| string | Name of the runtime. This field can be any string and is to be used by the application author for their own customization purposes |
243
+
|`lang`| string | Programming language supported by the runtime. This field can be used by the application author to provide clarification. It currently has no implications on how PyScript behaves. |
0 commit comments