| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- {
- "type": "object",
- "title": "Common tools",
- "description": "Setting for the common tools",
- "jupyter.lab.metadataforms": [
- {
- "id": "commonToolsSection",
- "label": "Common Tools",
- "metadataSchema": {
- "type": "object",
- "properties": {
- "_CELL-TOOL": {
- "title": "Cell tool",
- "type": "null"
- },
- "/editable": {
- "title": "Editable",
- "type": "boolean",
- "default": true,
- "oneOf": [
- {
- "const": true,
- "title": "Editable"
- },
- {
- "const": false,
- "title": "Read-Only"
- }
- ]
- },
- "/slideshow/slide_type": {
- "title": "Slide Type",
- "type": "string",
- "default": "",
- "oneOf": [
- {
- "const": "",
- "title": "-"
- },
- {
- "const": "slide",
- "title": "Slide"
- },
- {
- "const": "subslide",
- "title": "Sub-Slide"
- },
- {
- "const": "fragment",
- "title": "Fragment"
- },
- {
- "const": "skip",
- "title": "Skip"
- },
- {
- "const": "notes",
- "title": "Notes"
- }
- ]
- },
- "/raw_mimetype": {
- "title": "Raw NBConvert Format",
- "type": "string",
- "default": "",
- "oneOf": [
- {
- "const": "",
- "title": "-"
- },
- {
- "const": "pdf",
- "title": "PDF"
- },
- {
- "const": "slides",
- "title": "Slides"
- },
- {
- "const": "script",
- "title": "Script"
- },
- {
- "const": "notebook",
- "title": "Notebook"
- },
- {
- "const": "custom",
- "title": "Custom"
- }
- ]
- },
- "/toc/base_numbering": {
- "title": "Table of content - Base number",
- "type": "integer"
- }
- }
- },
- "uiSchema": {
- "/editable": {
- "ui:widget": "select"
- }
- },
- "metadataOptions": {
- "_CELL-TOOL": {
- "customRenderer": "@jupyterlab/notebook-extension:active-cell-tool.renderer"
- },
- "/raw_mimetype": {
- "cellTypes": ["raw"]
- },
- "/toc/base_numbering": {
- "metadataLevel": "notebook"
- }
- }
- },
- {
- "id": "advancedToolsSection",
- "label": "Advanced Tools",
- "metadataSchema": {
- "type": "object",
- "properties": {
- "_CELL-METADATA": {
- "title": "Cell metadata",
- "type": "null"
- },
- "_NOTEBOOK-METADATA": {
- "title": "Notebook metadata",
- "type": "null"
- }
- }
- },
- "metadataOptions": {
- "_CELL-METADATA": {
- "customRenderer": "@jupyterlab/notebook-extension:metadata-editor.cell-metadata"
- },
- "_NOTEBOOK-METADATA": {
- "customRenderer": "@jupyterlab/notebook-extension:metadata-editor.notebook-metadata"
- }
- }
- }
- ],
- "additionalProperties": false
- }
|