Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/cell-attributes.yml
12921 views
1
- name: label
2
schema: string
3
description:
4
short: "Unique label for code cell"
5
long: |
6
Unique label for code cell. Used when other code needs to refer to the cell
7
(e.g. for cross references `fig-samples` or `tbl-summary`)
8
9
- name: classes
10
schema: string
11
description: "Classes to apply to cell container"
12
13
- name: renderings
14
schema:
15
arrayOf: string
16
description: "Array of rendering names, e.g. `[light, dark]`"
17
18
- name: tags
19
tags:
20
engine: jupyter
21
schema:
22
arrayOf: string
23
description: "Array of tags for notebook cell"
24
25
- name: id
26
tags:
27
engine: jupyter
28
schema: string
29
description:
30
short: "Notebook cell identifier"
31
long: |
32
Notebook cell identifier. Note that if there is no cell `id` then `label`
33
will be used as the cell `id` if it is present.
34
See <https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html>
35
for additional details on cell ids.
36
37
- name: export
38
tags:
39
engine: jupyter
40
schema: null
41
hidden: true
42
description: "nbconvert tag to export cell"
43
44