diff --git a/.github/workflows/performance-check.yml b/.github/workflows/performance-check.yml index 9e0ed0fdda5..e35b81d5653 100644 --- a/.github/workflows/performance-check.yml +++ b/.github/workflows/performance-check.yml @@ -38,7 +38,7 @@ jobs: pushd package/src bundle_start=$(date +%s.%3N) - ./quarto-bld prepare-dist + ./quarto-bld prepare-dist --set-version $(cat ../../version.txt) bundle_end=$(date +%s.%3N) bundle_elapsed=$(printf '%.3f\n' $(echo "scale=3; $bundle_end - $bundle_start" | bc)) diff --git a/.github/workflows/test-bundle.yml b/.github/workflows/test-bundle.yml index 648069c2e7a..847a3018d9e 100644 --- a/.github/workflows/test-bundle.yml +++ b/.github/workflows/test-bundle.yml @@ -33,7 +33,7 @@ jobs: shell: bash run: | pushd package/src - ./quarto-bld prepare-dist + ./quarto-bld prepare-dist --set-version $(cat ../../version.txt) mv ../../src/quarto.ts ../../src/quarto1.ts pushd ../pkg-working/bin ./quarto check diff --git a/.gitignore b/.gitignore index a4012725b0e..f43d068d2fc 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,6 @@ tools/sass-variable-explainer/_publish.yml # generated by tests tests/docs/callouts.pdf + +# quarto cache directories (populated at render time) +.quarto diff --git a/news/changelog-1.9.md b/news/changelog-1.9.md index 2a77128950c..ff9ffefd755 100644 --- a/news/changelog-1.9.md +++ b/news/changelog-1.9.md @@ -54,6 +54,8 @@ All changes included in 1.9: - Two-column layout now uses `set page(columns:)` instead of `columns()` function, fixing compatibility with landscape sections. - Title block now properly spans both columns in multi-column layouts. - ([#13870](https://github.com/quarto-dev/quarto-cli/issues/13870)): Add support for `alt` attribute on cross-referenced equations for improved accessibility. (author: @mcanouil) +- ([#13950](https://github.com/quarto-dev/quarto-cli/pull/13950)): Replace ctheorems with theorion package for theorem environments. Add `theorem-appearance` option to control styling: `simple` (default, classic LaTeX style), `fancy` (colored boxes with brand colors), `clouds` (rounded backgrounds), or `rainbow` (colored start border and colored title). +- ([#13954](https://github.com/quarto-dev/quarto-cli/issues/13954)): Add support for Typst book projects via format extensions. Quarto now bundles the `orange-book` extension which provides a textbook-style format with chapter numbering, cross-references, and professional styling. Book projects with `format: typst` automatically use this extension. ### `pdf` diff --git a/package/src/common/prepare-dist.ts b/package/src/common/prepare-dist.ts index b97bece8edc..10db16af7b6 100755 --- a/package/src/common/prepare-dist.ts +++ b/package/src/common/prepare-dist.ts @@ -164,11 +164,6 @@ export async function prepareDist( inlineFilters(config); info(""); - // Appease the bundler testing by patching the bad version from `configuration` - if (config.version.split(".").length === 2) { - config.version = `${config.version}.1`; - } - // Write a version file to share info(`Writing version: ${config.version}`); Deno.writeTextFileSync( diff --git a/src/command/dev-call/pull-git-subtree/cmd.ts b/src/command/dev-call/pull-git-subtree/cmd.ts index 13fce1df820..d71e67bc2ba 100644 --- a/src/command/dev-call/pull-git-subtree/cmd.ts +++ b/src/command/dev-call/pull-git-subtree/cmd.ts @@ -24,7 +24,12 @@ const SUBTREES: SubtreeConfig[] = [ remoteUrl: "https://github.com/gordonwoodhull/quarto-julia-engine.git", remoteBranch: "main", }, - // Add more subtrees here as needed + { + name: "orange-book", + prefix: "src/resources/extension-subtrees/orange-book", + remoteUrl: "https://github.com/quarto-ext/orange-book.git", + remoteBranch: "main", + }, ]; async function findLastSplit( diff --git a/src/command/dev-call/typst-gather/typst-gather.toml b/src/command/dev-call/typst-gather/typst-gather.toml index 5f0945b7eb2..b0a23e8892d 100644 --- a/src/command/dev-call/typst-gather/typst-gather.toml +++ b/src/command/dev-call/typst-gather/typst-gather.toml @@ -1,2 +1,6 @@ destination = "src/resources/formats/typst/packages" discover = ["src/resources/formats/typst/pandoc/quarto"] + +[preview] +fontawesome = "0.5.0" +theorion = "0.4.1" diff --git a/src/command/render/output-typst.ts b/src/command/render/output-typst.ts index 695a144a8f9..add4f8a3025 100644 --- a/src/command/render/output-typst.ts +++ b/src/command/render/output-typst.ts @@ -12,8 +12,10 @@ import { safeRemoveSync, } from "../../deno_ral/fs.ts"; import { + builtinSubtreeExtensions, inputExtensionDirs, readExtensions, + readSubtreeExtensions, } from "../../extension/extension.ts"; import { projectScratchPath } from "../../project/project-scratch.ts"; import { resourcePath } from "../../core/resources.ts"; @@ -62,8 +64,12 @@ async function stageTypstPackages( // 2. Add packages from extensions (can override built-in) const extensionDirs = inputExtensionDirs(input, projectDir); + const subtreePath = builtinSubtreeExtensions(); for (const extDir of extensionDirs) { - const extensions = await readExtensions(extDir); + // Use readSubtreeExtensions for subtree directory, readExtensions for others + const extensions = extDir === subtreePath + ? await readSubtreeExtensions(extDir) + : await readExtensions(extDir); for (const ext of extensions) { const packagesDir = join(ext.path, "typst/packages"); if (existsSync(packagesDir)) { diff --git a/src/command/render/render-contexts.ts b/src/command/render/render-contexts.ts index 7ad6555ae45..03620fe8c10 100644 --- a/src/command/render/render-contexts.ts +++ b/src/command/render/render-contexts.ts @@ -676,11 +676,24 @@ const readExtensionFormat = async ( extensionContext: ExtensionContext, project?: ProjectContext, ) => { + // Determine effective extension - use default for certain project/format combinations + let effectiveExtension = formatDesc.extension; + + // For book projects with typst format and no explicit extension, + // use orange-book as the default typst book template + if ( + !effectiveExtension && + formatDesc.baseFormat === "typst" && + project?.config?.project?.[kProjectType] === "book" + ) { + effectiveExtension = "orange-book"; + } + // Read the format file and populate this - if (formatDesc.extension) { + if (effectiveExtension) { // Find the yaml file const extension = await extensionContext.extension( - formatDesc.extension, + effectiveExtension, file, project?.config, project?.dir, @@ -696,7 +709,7 @@ const readExtensionFormat = async ( (extensionFormat[fmtTarget] || extensionFormat[formatDesc.baseFormat] || {}) as Metadata; extensionMetadata[kExtensionName] = extensionMetadata[kExtensionName] || - formatDesc.extension; + effectiveExtension; const formats = await resolveFormatsFromMetadata( extensionMetadata, @@ -707,7 +720,7 @@ const readExtensionFormat = async ( return formats; } else { throw new Error( - `No valid format ${formatDesc.baseFormat} is provided by the extension ${formatDesc.extension}`, + `No valid format ${formatDesc.baseFormat} is provided by the extension ${effectiveExtension}`, ); } } else { diff --git a/src/extension/extension.ts b/src/extension/extension.ts index 3437f5303fb..5827e9d8601 100644 --- a/src/extension/extension.ts +++ b/src/extension/extension.ts @@ -279,9 +279,9 @@ export function filterExtensions( // Read git subtree extensions (pattern 3 only) // Looks for top-level directories containing _extensions/ subdirectories -const readSubtreeExtensions = async ( +export async function readSubtreeExtensions( subtreeDir: string, -): Promise => { +): Promise { const extensions: Extension[] = []; const topLevelDirs = safeExistsSync(subtreeDir) && @@ -303,7 +303,7 @@ const readSubtreeExtensions = async ( } return extensions; -}; +} // Loads all extensions for a given input // (note this needs to be sure to return copies from @@ -628,6 +628,24 @@ export function discoverExtensionPath( return builtinExtensionDir; } + // check for built-in subtree extensions (pattern: extension-subtrees/*/\_extensions/name) + const subtreePath = builtinSubtreeExtensions(); + if (safeExistsSync(subtreePath)) { + for (const topLevelDir of Deno.readDirSync(subtreePath)) { + if (!topLevelDir.isDirectory) continue; + const subtreeExtDir = join(subtreePath, topLevelDir.name, kExtensionDir); + if (safeExistsSync(subtreeExtDir)) { + const subtreeExtensionDir = findExtensionDir( + subtreeExtDir, + extensionDirGlobs, + ); + if (subtreeExtensionDir) { + return subtreeExtensionDir; + } + } + } + } + // Start in the source directory const sourceDir = Deno.statSync(input).isDirectory ? input : dirname(input); const sourceDirAbs = normalizePath(sourceDir); @@ -661,7 +679,7 @@ function builtinExtensions() { } // Path for built-in subtree extensions -function builtinSubtreeExtensions() { +export function builtinSubtreeExtensions() { return resourcePath("extension-subtrees"); } diff --git a/src/format/typst/format-typst.ts b/src/format/typst/format-typst.ts index 10b4aa24614..ec7052256bc 100644 --- a/src/format/typst/format-typst.ts +++ b/src/format/typst/format-typst.ts @@ -7,6 +7,8 @@ import { join } from "../../deno_ral/path.ts"; import { RenderServices } from "../../command/render/types.ts"; +import { ProjectContext } from "../../project/types.ts"; +import { BookExtension } from "../../project/types/book/book-shared.ts"; import { kCiteproc, kColumns, @@ -38,6 +40,11 @@ import { import { fillLogoPaths, resolveLogo } from "../../core/brand/brand.ts"; import { LogoLightDarkSpecifierPathOptional } from "../../resources/types/zod/schema-types.ts"; +const typstBookExtension: BookExtension = { + selfContainedOutput: true, + // multiFile defaults to false (single-file book) +}; + export function typstFormat(): Format { return createFormat("Typst", "pdf", { execute: { @@ -51,6 +58,9 @@ export function typstFormat(): Format { [kWrap]: "none", [kCiteproc]: false, }, + extensions: { + book: typstBookExtension, + }, resolveFormat: typstResolveFormat, formatExtras: async ( _input: string, @@ -59,6 +69,8 @@ export function typstFormat(): Format { format: Format, _libDir: string, _services: RenderServices, + _offset?: string, + _project?: ProjectContext, ): Promise => { const pandoc: FormatPandoc = {}; const metadata: Metadata = {}; @@ -106,10 +118,13 @@ export function typstFormat(): Format { } // Provide a template and partials + // For Typst books, a book extension overrides these partials const templateDir = formatResourcePath("typst", join("pandoc", "quarto")); + const templateContext = { template: join(templateDir, "template.typ"), partials: [ + "numbering.typ", "definitions.typ", "typst-template.typ", "page.typ", diff --git a/src/project/types/book/book.ts b/src/project/types/book/book.ts index 287f8f4ec83..b3446239f4c 100644 --- a/src/project/types/book/book.ts +++ b/src/project/types/book/book.ts @@ -20,6 +20,7 @@ import { isEpubOutput, isHtmlOutput, isLatexOutput, + isTypstOutput, } from "../../../config/format.ts"; import { PandocFlags } from "../../../config/types.ts"; import { @@ -256,6 +257,17 @@ export const bookProjectType: ProjectType = { }, }, ); + } else if (isTypstOutput(format.pandoc)) { + // Typst book: use chapter divisions, disable Quarto TOC (orange-book generates its own) + extras = mergeConfigs( + extras, + { + pandoc: { + [kTopLevelDivision]: "chapter", + [kToc]: false, + }, + }, + ); } // return diff --git a/src/resources/editor/tools/vs-code.mjs b/src/resources/editor/tools/vs-code.mjs index 91f9e3cc049..6a916416634 100644 --- a/src/resources/editor/tools/vs-code.mjs +++ b/src/resources/editor/tools/vs-code.mjs @@ -8414,6 +8414,19 @@ var require_yaml_intelligence_resources = __commonJS({ } ] }, + { + id: "filter-entry-point", + enum: [ + "pre-ast", + "post-ast", + "pre-quarto", + "post-quarto", + "pre-render", + "post-render", + "pre-finalize", + "post-finalize" + ] + }, { id: "pandoc-format-filters", arrayOf: { @@ -8436,14 +8449,7 @@ var require_yaml_intelligence_resources = __commonJS({ type: "string", path: "path", at: { - enum: [ - "pre-ast", - "post-ast", - "pre-quarto", - "post-quarto", - "pre-render", - "post-render" - ] + ref: "filter-entry-point" } }, required: [ @@ -20175,7 +20181,8 @@ var require_yaml_intelligence_resources = __commonJS({ default: false, tags: { formats: [ - "$pdf-all" + "$pdf-all", + "typst" ] }, description: "Print a list of figures in the document." @@ -20186,7 +20193,8 @@ var require_yaml_intelligence_resources = __commonJS({ default: false, tags: { formats: [ - "$pdf-all" + "$pdf-all", + "typst" ] }, description: "Print a list of tables in the document." @@ -20339,7 +20347,26 @@ var require_yaml_intelligence_resources = __commonJS({ arrayOf: "path" }, filters: { - arrayOf: "path" + arrayOf: { + anyOf: [ + "path", + { + object: { + properties: { + path: { + schema: "path" + }, + at: { + ref: "filter-entry-point" + } + }, + required: [ + "path" + ] + } + } + ] + } }, formats: { schema: "object" @@ -23959,6 +23986,10 @@ var require_yaml_intelligence_resources = __commonJS({ short: "When used in conjunction with pdfa, specifies the output\nintent for the colors.", long: "When used in conjunction with pdfa, specifies the output\nintent for the colors, for example\nISO coated v2 300\\letterpercent\\space (ECI)\nIf left unspecified, sRGB IEC61966-2.1 is used as\ndefault." }, + { + short: "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", + long: "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." + }, "Document bibliography (BibTeX or CSL). May be a single file or a list\nof files", "Citation Style Language file to use for formatting references.", "Enables a hover popup for citation that shows the reference\ninformation.", @@ -24650,6 +24681,10 @@ var require_yaml_intelligence_resources = __commonJS({ "Inner (left) margin geometry.", "Outer (right) margin geometry.", "Minimum vertical spacing between margin notes (default: 8pt).", + { + short: "Visual style for theorem environments in Typst output.", + long: "Controls how theorems, lemmas, definitions, etc. are rendered: -\nsimple: Plain text with bold title and italic body\n(default) - fancy: Colored boxes using brand colors -\nclouds: Rounded colored background boxes -\nrainbow: Colored left border with colored title" + }, "Project configuration.", "Project type (default, website,\nbook, or manuscript)", "Files to render (defaults to all files)", @@ -25001,11 +25036,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).", "Manuscript configuration", "internal-schema-hack", - "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019.", - { - short: "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", - long: "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." - } + "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019." ], "schema/external-schemas.yml": [ { @@ -25230,16 +25261,17 @@ var require_yaml_intelligence_resources = __commonJS({ "(*", "*)" ], + q: "/", rust: "//", mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 219977, + _internalId: 220795, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 219969, + _internalId: 220787, type: "enum", enum: [ "png", @@ -25255,7 +25287,7 @@ var require_yaml_intelligence_resources = __commonJS({ exhaustiveCompletions: true }, theme: { - _internalId: 219976, + _internalId: 220794, type: "anyOf", anyOf: [ { @@ -25370,6 +25402,27 @@ var require_yaml_intelligence_resources = __commonJS({ short: "Advanced geometry settings for Typst margin layout.", long: "Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n" } + }, + { + name: "theorem-appearance", + schema: { + enum: [ + "simple", + "fancy", + "clouds", + "rainbow" + ] + }, + default: "simple", + tags: { + formats: [ + "typst" + ] + }, + description: { + short: "Visual style for theorem environments in Typst output.", + long: "Controls how theorems, lemmas, definitions, etc. are rendered:\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n" + } } ] }; @@ -34507,6 +34560,7 @@ var kLangCommentChars = { ojs: "//", apl: "\u235D", ocaml: ["(*", "*)"], + q: "/", rust: "//" }; function escapeRegExp(str2) { diff --git a/src/resources/editor/tools/yaml/all-schema-definitions.json b/src/resources/editor/tools/yaml/all-schema-definitions.json index 55c36ec784e..eea0aae9f68 100644 --- a/src/resources/editor/tools/yaml/all-schema-definitions.json +++ b/src/resources/editor/tools/yaml/all-schema-definitions.json @@ -1 +1 @@ -{"date":{"_internalId":19,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":18,"type":"object","description":"be an object","properties":{"value":{"type":"string","description":"be a string"},"format":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"]}],"description":"be at least one of: a string, an object","$id":"date"},"date-format":{"type":"string","description":"be a string","$id":"date-format"},"math-methods":{"_internalId":26,"type":"enum","enum":["plain","webtex","gladtex","mathml","mathjax","katex"],"description":"be one of: `plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`","completions":["plain","webtex","gladtex","mathml","mathjax","katex"],"exhaustiveCompletions":true,"$id":"math-methods"},"pandoc-format-request-headers":{"_internalId":34,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":33,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"$id":"pandoc-format-request-headers"},"pandoc-format-output-file":{"_internalId":42,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":41,"type":"enum","enum":[null],"description":"be 'null'","completions":[],"exhaustiveCompletions":true,"tags":{"hidden":true}}],"description":"be at least one of: a string, 'null'","$id":"pandoc-format-output-file"},"pandoc-format-filters":{"_internalId":73,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":72,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":55,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["path"]},{"_internalId":65,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"},"at":{"_internalId":64,"type":"enum","enum":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render"],"description":"be one of: `pre-ast`, `post-ast`, `pre-quarto`, `post-quarto`, `pre-render`, `post-render`","completions":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path","at"]},{"_internalId":71,"type":"object","description":"be an object","properties":{"type":{"_internalId":70,"type":"enum","enum":["citeproc"],"description":"be 'citeproc'","completions":["citeproc"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["type"],"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},"$id":"pandoc-format-filters"},"pandoc-shortcodes":{"_internalId":78,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"$id":"pandoc-shortcodes"},"page-column":{"_internalId":81,"type":"enum","enum":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"description":"be one of: `body`, `body-outset`, `body-outset-left`, `body-outset-right`, `page`, `page-left`, `page-right`, `page-inset`, `page-inset-left`, `page-inset-right`, `screen`, `screen-left`, `screen-right`, `screen-inset`, `screen-inset-shaded`, `screen-inset-left`, `screen-inset-right`, `margin`","completions":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"exhaustiveCompletions":true,"$id":"page-column"},"contents-auto":{"_internalId":95,"type":"object","description":"be an object","properties":{"auto":{"_internalId":94,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":93,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":92,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Automatically generate sidebar contents.","long":"Automatically generate sidebar contents. Pass `true` to include all documents\nin the site, a directory name to include only documents in that directory, \nor a glob (or list of globs) to include documents based on a pattern. \n\nSubdirectories will create sections (use an `index.qmd` in the directory to\nprovide its title). Order will be alphabetical unless a numeric `order` field\nis provided in document metadata.\n"}},"documentation":"Automatically generate sidebar contents."}},"patternProperties":{},"$id":"contents-auto"},"navigation-item":{"_internalId":103,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":102,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"}],"description":"be at least one of: a string, navigation-item-object","$id":"navigation-item"},"navigation-item-object":{"_internalId":132,"type":"object","description":"be an object","properties":{"aria-label":{"type":"string","description":"be a string","tags":{"description":"Accessible label for the item."},"documentation":"Accessible label for the item."},"file":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"href":{"type":"string","description":"be a string","tags":{"description":"Link to file contained with the project or external URL\n"},"documentation":"Link to file contained with the project or external URL"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)","long":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee for a list of available icons\n"}},"documentation":"Name of bootstrap icon (e.g. github,\nbluesky, share)"},"id":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"menu":{"_internalId":123,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":122,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}},"text":{"type":"string","description":"be a string","tags":{"description":"Text to display for item (defaults to the\ndocument title if not provided)\n"},"documentation":"Text to display for item (defaults to the document title if not\nprovided)"},"url":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"rel":{"type":"string","description":"be a string","tags":{"description":"Value for rel attribute. Multiple space-separated values are permitted.\nSee \nfor a details.\n"},"documentation":"Value for rel attribute. Multiple space-separated values are\npermitted. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel\nfor a details."},"target":{"type":"string","description":"be a string","tags":{"description":"Value for target attribute.\nSee \nfor details.\n"},"documentation":"Value for target attribute. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target\nfor details."}},"patternProperties":{},"closed":true,"$id":"navigation-item-object"},"giscus-themes":{"_internalId":135,"type":"enum","enum":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"description":"be one of: `light`, `light_high_contrast`, `light_protanopia`, `light_tritanopia`, `dark`, `dark_high_contrast`, `dark_protanopia`, `dark_tritanopia`, `dark_dimmed`, `transparent_dark`, `cobalt`, `purple_dark`, `noborder_light`, `noborder_dark`, `noborder_gray`, `preferred_color_scheme`","completions":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"exhaustiveCompletions":true,"$id":"giscus-themes"},"giscus-configuration":{"_internalId":192,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repo that will be used to store comments.","long":"The Github repo that will be used to store comments.\n\nIn order to work correctly, the repo must be public, with the giscus app installed, and \nthe discussions feature must be enabled.\n"}},"documentation":"The Github repo that will be used to store comments."},"repo-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repository identifier.","long":"The Github repository identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github repository identifier."},"category":{"type":"string","description":"be a string","tags":{"description":{"short":"The discussion category where new discussions will be created.","long":"The discussion category where new discussions will be created. It is recommended \nto use a category with the **Announcements** type so that new discussions \ncan only be created by maintainers and giscus.\n"}},"documentation":"The discussion category where new discussions will be created."},"category-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github category identifier.","long":"The Github category identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github category identifier."},"mapping":{"_internalId":154,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"The mapping between the page and the embedded discussion.","long":"The mapping between the page and the embedded discussion. \n\n- `pathname`: The discussion title contains the page path\n- `url`: The discussion title contains the page url\n- `title`: The discussion title contains the page title\n- `og:title`: The discussion title contains the `og:title` metadata value\n- any other string or number: Any other strings will be passed through verbatim and a discussion title\ncontaining that value will be used. Numbers will be treated\nas a discussion number and automatic discussion creation is not supported.\n"}},"documentation":"The mapping between the page and the embedded discussion."},"reactions-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Display reactions for the discussion's main post before the comments."},"documentation":"Display reactions for the discussion’s main post before the\ncomments."},"loading":{"_internalId":159,"type":"enum","enum":["lazy"],"description":"be 'lazy'","completions":["lazy"],"exhaustiveCompletions":true,"tags":{"description":"Specify `loading: lazy` to defer loading comments until the user scrolls near the comments container."},"documentation":"Specify loading: lazy to defer loading comments until\nthe user scrolls near the comments container."},"input-position":{"_internalId":162,"type":"enum","enum":["top","bottom"],"description":"be one of: `top`, `bottom`","completions":["top","bottom"],"exhaustiveCompletions":true,"tags":{"description":"Place the comment input box above or below the comments."},"documentation":"Place the comment input box above or below the comments."},"theme":{"_internalId":189,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":169,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"},{"_internalId":188,"type":"object","description":"be an object","properties":{"light":{"_internalId":179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":178,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The light theme name."},"documentation":"The light theme name."},"dark":{"_internalId":187,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":186,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The dark theme name."},"documentation":"The dark theme name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, giscus-themes, an object","tags":{"description":{"short":"The giscus theme to use when displaying comments.","long":"The giscus theme to use when displaying comments. Light and dark themes are supported. If a single theme is provided by name, it will be used as light and dark theme. To use different themes, use `light` and `dark` key: \n\n```yaml\nwebsite:\n comments:\n giscus:\n theme:\n light: light # giscus theme used for light website theme\n dark: dark_dimmed # giscus theme used for dark website theme\n```\n"}},"documentation":"The giscus theme to use when displaying comments."},"language":{"type":"string","description":"be a string","tags":{"description":"The language that should be used when displaying the commenting interface."},"documentation":"The language that should be used when displaying the commenting\ninterface."}},"patternProperties":{},"required":["repo"],"closed":true,"$id":"giscus-configuration"},"external-engine":{"_internalId":199,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to the TypeScript module for the execution engine"},"documentation":"Path to the TypeScript module for the execution engine"}},"patternProperties":{},"required":["path"],"closed":true,"tags":{"description":"An execution engine not pre-loaded in Quarto"},"documentation":"An execution engine not pre-loaded in Quarto","$id":"external-engine"},"document-comments-configuration":{"_internalId":318,"type":"anyOf","anyOf":[{"_internalId":204,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":317,"type":"object","description":"be an object","properties":{"utterances":{"_internalId":217,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":"The Github repo that will be used to store comments."},"documentation":"The Github repo that will be used to store comments."},"label":{"type":"string","description":"be a string","tags":{"description":"The label that will be assigned to issues created by Utterances."},"documentation":"The label that will be assigned to issues created by Utterances."},"theme":{"type":"string","description":"be a string","completions":["github-light","github-dark","github-dark-orange","icy-dark","dark-blue","photon-dark","body-light","gruvbox-dark"],"tags":{"description":{"short":"The Github theme that should be used for Utterances.","long":"The Github theme that should be used for Utterances\n(`github-light`, `github-dark`, `github-dark-orange`,\n`icy-dark`, `dark-blue`, `photon-dark`, `body-light`,\nor `gruvbox-dark`)\n"}},"documentation":"The Github theme that should be used for Utterances."},"issue-term":{"type":"string","description":"be a string","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"How posts should be mapped to Github issues","long":"How posts should be mapped to Github issues\n(`pathname`, `url`, `title` or `og:title`)\n"}},"documentation":"How posts should be mapped to Github issues"}},"patternProperties":{},"required":["repo"],"closed":true},"giscus":{"_internalId":220,"type":"ref","$ref":"giscus-configuration","description":"be giscus-configuration"},"hypothesis":{"_internalId":316,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":315,"type":"object","description":"be an object","properties":{"client-url":{"type":"string","description":"be a string","tags":{"description":"Override the default hypothesis client url with a custom client url."},"documentation":"Override the default hypothesis client url with a custom client\nurl."},"openSidebar":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the sidebar opens automatically on startup."},"documentation":"Controls whether the sidebar opens automatically on startup."},"showHighlights":{"_internalId":238,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":237,"type":"enum","enum":["always","whenSidebarOpen","never"],"description":"be one of: `always`, `whenSidebarOpen`, `never`","completions":["always","whenSidebarOpen","never"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `always`, `whenSidebarOpen`, `never`","tags":{"description":"Controls whether the in-document highlights are shown by default (`always`, `whenSidebarOpen` or `never`)"},"documentation":"Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)"},"theme":{"_internalId":241,"type":"enum","enum":["classic","clean"],"description":"be one of: `classic`, `clean`","completions":["classic","clean"],"exhaustiveCompletions":true,"tags":{"description":"Controls the overall look of the sidebar (`classic` or `clean`)"},"documentation":"Controls the overall look of the sidebar (classic or\nclean)"},"enableExperimentalNewNoteButton":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the experimental New Note button \nshould be shown in the notes tab in the sidebar.\n"},"documentation":"Controls whether the experimental New Note button should be shown in\nthe notes tab in the sidebar."},"usernameUrl":{"type":"string","description":"be a string","tags":{"description":"Specify a URL to direct a user to, \nin a new tab. when they click on the annotation author \nlink in the header of an annotation.\n"},"documentation":"Specify a URL to direct a user to, in a new tab. when they click on\nthe annotation author link in the header of an annotation."},"services":{"_internalId":276,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":275,"type":"object","description":"be an object","properties":{"apiUrl":{"type":"string","description":"be a string","tags":{"description":"The base URL of the service API."},"documentation":"The base URL of the service API."},"authority":{"type":"string","description":"be a string","tags":{"description":"The domain name which the annotation service is associated with."},"documentation":"The domain name which the annotation service is associated with."},"grantToken":{"type":"string","description":"be a string","tags":{"description":"An OAuth 2 grant token which the client can send to the service in order to get an access token for making authenticated requests to the service."},"documentation":"An OAuth 2 grant token which the client can send to the service in\norder to get an access token for making authenticated requests to the\nservice."},"allowLeavingGroups":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether users should be able to leave groups of which they are a member."},"documentation":"A flag indicating whether users should be able to leave groups of\nwhich they are a member."},"enableShareLinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether annotation cards should show links that take the user to see an annotation in context."},"documentation":"A flag indicating whether annotation cards should show links that\ntake the user to see an annotation in context."},"groups":{"_internalId":272,"type":"anyOf","anyOf":[{"_internalId":266,"type":"enum","enum":["$rpc:requestGroups"],"description":"be '$rpc:requestGroups'","completions":["$rpc:requestGroups"],"exhaustiveCompletions":true},{"_internalId":271,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: '$rpc:requestGroups', an array of values, where each element must be a string","tags":{"description":"An array of Group IDs or the literal string `$rpc:requestGroups`"},"documentation":"An array of Group IDs or the literal string\n$rpc:requestGroups"},"icon":{"type":"string","description":"be a string","tags":{"description":"The URL to an image for the annotation service. This image will appear to the left of the name of the currently selected group."},"documentation":"The URL to an image for the annotation service. This image will\nappear to the left of the name of the currently selected group."}},"patternProperties":{},"required":["apiUrl","authority","grantToken"],"propertyNames":{"errorMessage":"property ${value} does not match case convention apiUrl,authority,grantToken,allowLeavingGroups,enableShareLinks,groups,icon","type":"string","pattern":"(?!(^api_url$|^api-url$|^grant_token$|^grant-token$|^allow_leaving_groups$|^allow-leaving-groups$|^enable_share_links$|^enable-share-links$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Alternative annotation services which the client should \nconnect to instead of connecting to the public Hypothesis \nservice at hypothes.is.\n"},"documentation":"Alternative annotation services which the client should connect to\ninstead of connecting to the public Hypothesis service at\nhypothes.is."}},"branding":{"_internalId":289,"type":"object","description":"be an object","properties":{"accentColor":{"type":"string","description":"be a string","tags":{"description":"Secondary color for elements of the commenting UI."},"documentation":"Secondary color for elements of the commenting UI."},"appBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The main background color of the commenting UI."},"documentation":"The main background color of the commenting UI."},"ctaBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The background color for call to action buttons."},"documentation":"The background color for call to action buttons."},"selectionFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for selection text in the annotation card."},"documentation":"The font family for selection text in the annotation card."},"annotationFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for the actual annotation value that the user writes about the page or selection."},"documentation":"The font family for the actual annotation value that the user writes\nabout the page or selection."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention accentColor,appBackgroundColor,ctaBackgroundColor,selectionFontFamily,annotationFontFamily","type":"string","pattern":"(?!(^accent_color$|^accent-color$|^app_background_color$|^app-background-color$|^cta_background_color$|^cta-background-color$|^selection_font_family$|^selection-font-family$|^annotation_font_family$|^annotation-font-family$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Settings to adjust the commenting sidebar's look and feel."},"documentation":"Settings to adjust the commenting sidebar’s look and feel."},"externalContainerSelector":{"type":"string","description":"be a string","tags":{"description":"A CSS selector specifying the containing element into which the sidebar iframe will be placed."},"documentation":"A CSS selector specifying the containing element into which the\nsidebar iframe will be placed."},"focus":{"_internalId":303,"type":"object","description":"be an object","properties":{"user":{"_internalId":302,"type":"object","description":"be an object","properties":{"username":{"type":"string","description":"be a string","tags":{"description":"The username of the user to focus on."},"documentation":"The username of the user to focus on."},"userid":{"type":"string","description":"be a string","tags":{"description":"The userid of the user to focus on."},"documentation":"The userid of the user to focus on."},"displayName":{"type":"string","description":"be a string","tags":{"description":"The display name of the user to focus on."},"documentation":"The display name of the user to focus on."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention username,userid,displayName","type":"string","pattern":"(?!(^display_name$|^display-name$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"required":["user"],"tags":{"description":"Defines a focused filter set for the available annotations on a page."},"documentation":"Defines a focused filter set for the available annotations on a\npage."},"requestConfigFromFrame":{"_internalId":310,"type":"object","description":"be an object","properties":{"origin":{"type":"string","description":"be a string","tags":{"description":"Host url and port number of receiving iframe"},"documentation":"Host url and port number of receiving iframe"},"ancestorLevel":{"type":"number","description":"be a number","tags":{"description":"Number of nested iframes deep the client is relative from the receiving iframe."},"documentation":"Number of nested iframes deep the client is relative from the\nreceiving iframe."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention origin,ancestorLevel","type":"string","pattern":"(?!(^ancestor_level$|^ancestor-level$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"assetRoot":{"type":"string","description":"be a string","tags":{"description":"The root URL from which assets are loaded."},"documentation":"The root URL from which assets are loaded."},"sidebarAppUrl":{"type":"string","description":"be a string","tags":{"description":"The URL for the sidebar application which displays annotations."},"documentation":"The URL for the sidebar application which displays annotations."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","$id":"document-comments-configuration"},"social-metadata":{"_internalId":333,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"}},"patternProperties":{},"closed":true,"$id":"social-metadata"},"page-footer-region":{"_internalId":344,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":343,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":342,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}],"description":"be at least one of: a string, an array of values, where each element must be navigation-item","$id":"page-footer-region"},"sidebar-contents":{"_internalId":379,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":351,"type":"ref","$ref":"contents-auto","description":"be contents-auto"},{"_internalId":378,"type":"array","description":"be an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","items":{"_internalId":377,"type":"anyOf","anyOf":[{"_internalId":358,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"type":"string","description":"be a string"},{"_internalId":373,"type":"object","description":"be an object","properties":{"section":{"_internalId":369,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value"},"contents":{"_internalId":372,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents"}},"patternProperties":{},"closed":true},{"_internalId":376,"type":"ref","$ref":"contents-auto","description":"be contents-auto"}],"description":"be at least one of: navigation-item, a string, an object, contents-auto"}}],"description":"be at least one of: a string, contents-auto, an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","$id":"sidebar-contents"},"project-preview":{"_internalId":399,"type":"object","description":"be an object","properties":{"port":{"type":"number","description":"be a number","tags":{"description":"Port to listen on (defaults to random value between 3000 and 8000)"},"documentation":"Port to listen on (defaults to random value between 3000 and\n8000)"},"host":{"type":"string","description":"be a string","tags":{"description":"Hostname to bind to (defaults to 127.0.0.1)"},"documentation":"Hostname to bind to (defaults to 127.0.0.1)"},"serve":{"_internalId":390,"type":"ref","$ref":"project-serve","description":"be project-serve","tags":{"description":"Use an exernal application to preview the project."},"documentation":"Use an exernal application to preview the project."},"browser":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Open a web browser to view the preview (defaults to true)"},"documentation":"Open a web browser to view the preview (defaults to true)"},"watch-inputs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Re-render input files when they change (defaults to true)"},"documentation":"Re-render input files when they change (defaults to true)"},"navigate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Navigate the browser automatically when outputs are updated (defaults to true)"},"documentation":"Navigate the browser automatically when outputs are updated (defaults\nto true)"},"timeout":{"type":"number","description":"be a number","tags":{"description":"Time (in seconds) after which to exit if there are no active clients"},"documentation":"Time (in seconds) after which to exit if there are no active\nclients"}},"patternProperties":{},"closed":true,"$id":"project-preview"},"project-serve":{"_internalId":411,"type":"object","description":"be an object","properties":{"cmd":{"type":"string","description":"be a string","tags":{"description":"Serve project preview using the specified command.\nInterpolate the `--port` into the command using `{port}`.\n"},"documentation":"Serve project preview using the specified command. Interpolate the\n--port into the command using {port}."},"args":{"type":"string","description":"be a string","tags":{"description":"Additional command line arguments for preview command."},"documentation":"Additional command line arguments for preview command."},"env":{"_internalId":408,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Environment variables to set for preview command."},"documentation":"Environment variables to set for preview command."},"ready":{"type":"string","description":"be a string","tags":{"description":"Regular expression for detecting when the server is ready."},"documentation":"Regular expression for detecting when the server is ready."}},"patternProperties":{},"required":["cmd","ready"],"closed":true,"$id":"project-serve"},"publish":{"_internalId":422,"type":"object","description":"be an object","properties":{"netlify":{"_internalId":421,"type":"array","description":"be an array of values, where each element must be publish-record","items":{"_internalId":420,"type":"ref","$ref":"publish-record","description":"be publish-record"}}},"patternProperties":{},"closed":true,"tags":{"description":"Sites published from project"},"documentation":"Sites published from project","$id":"publish"},"publish-record":{"_internalId":429,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier for site"},"documentation":"Unique identifier for site"},"url":{"type":"string","description":"be a string","tags":{"description":"Published URL for site"},"documentation":"Published URL for site"}},"patternProperties":{},"closed":true,"$id":"publish-record"},"twitter-card-config":{"_internalId":333,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"card-style":{"_internalId":434,"type":"enum","enum":["summary","summary_large_image"],"description":"be one of: `summary`, `summary_large_image`","completions":["summary","summary_large_image"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Card style","long":"Card style (`summary` or `summary_large_image`).\n\nIf this is not provided, the best style will automatically\nselected based upon other metadata. You can learn more about Twitter Card\nstyles [here](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards).\n"}},"documentation":"Card style"},"creator":{"type":"string","description":"be a string","tags":{"description":"`@username` of the content creator (must be a quoted string)"},"documentation":"@username of the content creator (must be a quoted\nstring)"},"site":{"type":"string","description":"be a string","tags":{"description":"`@username` of the website (must be a quoted string)"},"documentation":"@username of the website (must be a quoted string)"}},"patternProperties":{},"closed":true,"$id":"twitter-card-config"},"open-graph-config":{"_internalId":333,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"locale":{"type":"string","description":"be a string","tags":{"description":"Locale of open graph metadata"},"documentation":"Locale of open graph metadata"},"site-name":{"type":"string","description":"be a string","tags":{"description":{"short":"Name that should be displayed for the overall site","long":"Name that should be displayed for the overall site. If not explicitly \nprovided in the `open-graph` metadata, Quarto will use the website or\nbook `title` by default.\n"}},"documentation":"Name that should be displayed for the overall site"}},"patternProperties":{},"closed":true,"$id":"open-graph-config"},"page-footer":{"_internalId":477,"type":"object","description":"be an object","properties":{"left":{"_internalId":455,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer left content"},"documentation":"Footer left content"},"right":{"_internalId":458,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer right content"},"documentation":"Footer right content"},"center":{"_internalId":461,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer center content"},"documentation":"Footer center content"},"border":{"_internalId":468,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Footer border (`true`, `false`, or a border color)"},"documentation":"Footer border (true, false, or a border\ncolor)"},"background":{"type":"string","description":"be a string","tags":{"description":"Footer background color"},"documentation":"Footer background color"},"foreground":{"type":"string","description":"be a string","tags":{"description":"Footer foreground color"},"documentation":"Footer foreground color"}},"patternProperties":{},"closed":true,"$id":"page-footer"},"base-website":{"_internalId":900,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Website title"},"documentation":"Website title"},"description":{"type":"string","description":"be a string","tags":{"description":"Website description"},"documentation":"Website description"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Branch of website source code (defaults to main)"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Links to source repository actions"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Links to source repository actions"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Enable Google Analytics for this website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Storage options for Google Analytics data"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Anonymize the user ip address."},"repo-actions":{"_internalId":508,"type":"anyOf","anyOf":[{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},{"_internalId":507,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"google-analytics":{"_internalId":532,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":531,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The content of the announcement"},"storage":{"_internalId":523,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Whether this announcement may be dismissed by the user."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The icon to display in the announcement"},"version":{"_internalId":530,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The position of the announcement."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Provides an announcement displayed at the top of the page."},"plausible-analytics":{"_internalId":542,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":541,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"announcement":{"_internalId":572,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":571,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The style of the consent banner that is displayed"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The url to the website’s cookie or privacy policy."},"position":{"_internalId":565,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"type":{"_internalId":570,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The type of consent that should be requested"},"cookie-consent":{"_internalId":604,"type":"anyOf","anyOf":[{"_internalId":577,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":603,"type":"object","description":"be an object","properties":{"type":{"_internalId":584,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"style":{"_internalId":587,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Type of search UI (overlay or textbox)"},"palette":{"_internalId":590,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Number of matches to display (defaults to 20)"},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"Matches after which to collapse additional results"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"Provide button for copying search link"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Provide full text search for website"},"search":{"_internalId":691,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":690,"type":"object","description":"be an object","properties":{"location":{"_internalId":613,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"type":{"_internalId":616,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Use external Algolia search index"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"The name of the index to use when performing a search"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"The unique ID used by Algolia to identify your application"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"The Search-Only API key to use to connect to Algolia"},"keyboard-shortcut":{"_internalId":638,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},{"_internalId":637,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":648,"type":"anyOf","anyOf":[{"_internalId":645,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the URL of index entries"},"algolia":{"_internalId":689,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Field that contains the text of index entries"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Field that contains the section of index entries"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Additional parameters to pass when executing a search"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Top navigation options"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"The navbar title. Uses the project title if none is specified."},"index-fields":{"_internalId":685,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Alternate text for the logo image."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"The navbar’s background color (named or hex color)."}},"patternProperties":{},"closed":true},"params":{"_internalId":688,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"The navbar’s foreground color (named or hex color)."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Field that contains the title of index entries"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"navbar":{"_internalId":745,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":744,"type":"object","description":"be an object","properties":{"title":{"_internalId":704,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Always show the navbar (keeping it pinned)."},"logo":{"_internalId":707,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"List of items for the left side of the navbar."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"List of items for the right side of the navbar."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Side navigation options"},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The identifier for this sidebar."},"collapse-below":{"_internalId":724,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The sidebar title. Uses the project title if none is specified."},"left":{"_internalId":730,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":729,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Specification of image that will be displayed in the sidebar."},"right":{"_internalId":736,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":735,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"Alternate text for the logo image."},"toggle-position":{"_internalId":741,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Include a search control in the sidebar."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Include a search box in the navbar."},"sidebar":{"_internalId":816,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":815,"type":"anyOf","anyOf":[{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"List of sidebar tools"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Shared page footer"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"margin-header":{"_internalId":826,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":825,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"margin-footer":{"_internalId":832,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Publish open graph metadata"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Publish twitter card metadata"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"A list of other links to appear below the TOC."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"A list of code links to appear with this document."},"page-footer":{"_internalId":846,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":845,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"A list of input documents that should be treated as drafts"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"How to handle drafts that are encountered."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book subtitle"},"comments":{"_internalId":855,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":863,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":862,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Author or authors of the book"},"twitter-card":{"_internalId":871,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":870,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Author or authors of the book"},"other-links":{"_internalId":876,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book publication date"},"code-links":{"_internalId":886,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":885,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Format string for dates in the book"},"drafts":{"_internalId":894,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":893,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book abstract"},"draft-mode":{"_internalId":899,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book part and chapter files"}},"patternProperties":{},"closed":true,"$id":"base-website"},"book-schema":{"_internalId":900,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"The value of the rel attribute for repo links"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Subdirectory of repository containing website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Branch of website source code (defaults to main)"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Links to source repository actions"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Links to source repository actions"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Enable Google Analytics for this website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Storage options for Google Analytics data"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Anonymize the user ip address."},"repo-actions":{"_internalId":508,"type":"anyOf","anyOf":[{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},{"_internalId":507,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"google-analytics":{"_internalId":532,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":531,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The content of the announcement"},"storage":{"_internalId":523,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Whether this announcement may be dismissed by the user."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The icon to display in the announcement"},"version":{"_internalId":530,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The position of the announcement."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Provides an announcement displayed at the top of the page."},"plausible-analytics":{"_internalId":542,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":541,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"announcement":{"_internalId":572,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":571,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The style of the consent banner that is displayed"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The url to the website’s cookie or privacy policy."},"position":{"_internalId":565,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"type":{"_internalId":570,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The type of consent that should be requested"},"cookie-consent":{"_internalId":604,"type":"anyOf","anyOf":[{"_internalId":577,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":603,"type":"object","description":"be an object","properties":{"type":{"_internalId":584,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"style":{"_internalId":587,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Type of search UI (overlay or textbox)"},"palette":{"_internalId":590,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Number of matches to display (defaults to 20)"},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"Matches after which to collapse additional results"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"Provide button for copying search link"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Provide full text search for website"},"search":{"_internalId":691,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":690,"type":"object","description":"be an object","properties":{"location":{"_internalId":613,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"type":{"_internalId":616,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Use external Algolia search index"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"The name of the index to use when performing a search"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"The unique ID used by Algolia to identify your application"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"The Search-Only API key to use to connect to Algolia"},"keyboard-shortcut":{"_internalId":638,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},{"_internalId":637,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":648,"type":"anyOf","anyOf":[{"_internalId":645,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the URL of index entries"},"algolia":{"_internalId":689,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Field that contains the text of index entries"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Field that contains the section of index entries"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Additional parameters to pass when executing a search"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Top navigation options"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"The navbar title. Uses the project title if none is specified."},"index-fields":{"_internalId":685,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Alternate text for the logo image."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"The navbar’s background color (named or hex color)."}},"patternProperties":{},"closed":true},"params":{"_internalId":688,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"The navbar’s foreground color (named or hex color)."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Field that contains the title of index entries"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"navbar":{"_internalId":745,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":744,"type":"object","description":"be an object","properties":{"title":{"_internalId":704,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Always show the navbar (keeping it pinned)."},"logo":{"_internalId":707,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"List of items for the left side of the navbar."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"List of items for the right side of the navbar."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Side navigation options"},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The identifier for this sidebar."},"collapse-below":{"_internalId":724,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The sidebar title. Uses the project title if none is specified."},"left":{"_internalId":730,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":729,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Specification of image that will be displayed in the sidebar."},"right":{"_internalId":736,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":735,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"Alternate text for the logo image."},"toggle-position":{"_internalId":741,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Include a search control in the sidebar."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Include a search box in the navbar."},"sidebar":{"_internalId":816,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":815,"type":"anyOf","anyOf":[{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"List of sidebar tools"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Shared page footer"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"margin-header":{"_internalId":826,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":825,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"margin-footer":{"_internalId":832,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Publish open graph metadata"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Publish twitter card metadata"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"A list of other links to appear below the TOC."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"A list of code links to appear with this document."},"page-footer":{"_internalId":846,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":845,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"A list of input documents that should be treated as drafts"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"How to handle drafts that are encountered."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book subtitle"},"comments":{"_internalId":855,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":863,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":862,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Author or authors of the book"},"twitter-card":{"_internalId":871,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":870,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Author or authors of the book"},"other-links":{"_internalId":876,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book publication date"},"code-links":{"_internalId":886,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":885,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Format string for dates in the book"},"drafts":{"_internalId":894,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":893,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book abstract"},"draft-mode":{"_internalId":899,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book part and chapter files"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book appendix files"},"author":{"_internalId":919,"type":"anyOf","anyOf":[{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},{"_internalId":918,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Cover image (used in HTML and ePub formats)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Alternative text for cover image (used in HTML format)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Custom tools for navbar or sidebar"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"The Digital Object Identifier for this book."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"A url to the abstract for this item."},"sharing":{"_internalId":952,"type":"anyOf","anyOf":[{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},{"_internalId":951,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":959,"type":"anyOf","anyOf":[{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."},{"_internalId":958,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":965,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":964,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Geographic location of the archive."}},"patternProperties":{},"closed":true,"$id":"book-schema"},"chapter-item":{"_internalId":987,"type":"anyOf","anyOf":[{"_internalId":975,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"_internalId":986,"type":"object","description":"be an object","properties":{"part":{"type":"string","description":"be a string","tags":{"description":"Part title or path to input file"},"documentation":"Part title or path to input file"},"chapters":{"_internalId":985,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":984,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Path to chapter input file"},"documentation":"Path to chapter input file"}},"patternProperties":{},"required":["part"]}],"description":"be at least one of: navigation-item, an object","$id":"chapter-item"},"chapter-list":{"_internalId":993,"type":"array","description":"be an array of values, where each element must be chapter-item","items":{"_internalId":992,"type":"ref","$ref":"chapter-item","description":"be chapter-item"},"$id":"chapter-list"},"other-links":{"_internalId":1009,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1008,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text for the link."},"documentation":"The text for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon name for the link."},"documentation":"The bootstrap icon name for the link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel attribute value for the link."},"documentation":"The rel attribute value for the link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target attribute value for the link."},"documentation":"The target attribute value for the link."}},"patternProperties":{},"required":["text","href"]},"$id":"other-links"},"crossref-labels-schema":{"type":"string","description":"be a string","completions":["alpha","arabic","roman"],"$id":"crossref-labels-schema"},"epub-contributor":{"_internalId":1029,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1028,"type":"anyOf","anyOf":[{"_internalId":1026,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true},{"_internalId":1027,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1026,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: a string, at least one of: an object, an array of values, where each element must be an object","$id":"epub-contributor"},"format-language":{"_internalId":1156,"type":"object","description":"be a format language description object","properties":{"toc-title-document":{"type":"string","description":"be a string"},"toc-title-website":{"type":"string","description":"be a string"},"related-formats-title":{"type":"string","description":"be a string"},"related-notebooks-title":{"type":"string","description":"be a string"},"callout-tip-title":{"type":"string","description":"be a string"},"callout-note-title":{"type":"string","description":"be a string"},"callout-warning-title":{"type":"string","description":"be a string"},"callout-important-title":{"type":"string","description":"be a string"},"callout-caution-title":{"type":"string","description":"be a string"},"section-title-abstract":{"type":"string","description":"be a string"},"section-title-footnotes":{"type":"string","description":"be a string"},"section-title-appendices":{"type":"string","description":"be a string"},"code-summary":{"type":"string","description":"be a string"},"code-tools-menu-caption":{"type":"string","description":"be a string"},"code-tools-show-all-code":{"type":"string","description":"be a string"},"code-tools-hide-all-code":{"type":"string","description":"be a string"},"code-tools-view-source":{"type":"string","description":"be a string"},"code-tools-source-code":{"type":"string","description":"be a string"},"search-no-results-text":{"type":"string","description":"be a string"},"copy-button-tooltip":{"type":"string","description":"be a string"},"copy-button-tooltip-success":{"type":"string","description":"be a string"},"repo-action-links-edit":{"type":"string","description":"be a string"},"repo-action-links-source":{"type":"string","description":"be a string"},"repo-action-links-issue":{"type":"string","description":"be a string"},"search-matching-documents-text":{"type":"string","description":"be a string"},"search-copy-link-title":{"type":"string","description":"be a string"},"search-hide-matches-text":{"type":"string","description":"be a string"},"search-more-match-text":{"type":"string","description":"be a string"},"search-more-matches-text":{"type":"string","description":"be a string"},"search-clear-button-title":{"type":"string","description":"be a string"},"search-text-placeholder":{"type":"string","description":"be a string"},"search-detached-cancel-button-title":{"type":"string","description":"be a string"},"search-submit-button-title":{"type":"string","description":"be a string"},"crossref-fig-title":{"type":"string","description":"be a string"},"crossref-tbl-title":{"type":"string","description":"be a string"},"crossref-lst-title":{"type":"string","description":"be a string"},"crossref-thm-title":{"type":"string","description":"be a string"},"crossref-lem-title":{"type":"string","description":"be a string"},"crossref-cor-title":{"type":"string","description":"be a string"},"crossref-prp-title":{"type":"string","description":"be a string"},"crossref-cnj-title":{"type":"string","description":"be a string"},"crossref-def-title":{"type":"string","description":"be a string"},"crossref-exm-title":{"type":"string","description":"be a string"},"crossref-exr-title":{"type":"string","description":"be a string"},"crossref-fig-prefix":{"type":"string","description":"be a string"},"crossref-tbl-prefix":{"type":"string","description":"be a string"},"crossref-lst-prefix":{"type":"string","description":"be a string"},"crossref-ch-prefix":{"type":"string","description":"be a string"},"crossref-apx-prefix":{"type":"string","description":"be a string"},"crossref-sec-prefix":{"type":"string","description":"be a string"},"crossref-eq-prefix":{"type":"string","description":"be a string"},"crossref-thm-prefix":{"type":"string","description":"be a string"},"crossref-lem-prefix":{"type":"string","description":"be a string"},"crossref-cor-prefix":{"type":"string","description":"be a string"},"crossref-prp-prefix":{"type":"string","description":"be a string"},"crossref-cnj-prefix":{"type":"string","description":"be a string"},"crossref-def-prefix":{"type":"string","description":"be a string"},"crossref-exm-prefix":{"type":"string","description":"be a string"},"crossref-exr-prefix":{"type":"string","description":"be a string"},"crossref-lof-title":{"type":"string","description":"be a string"},"crossref-lot-title":{"type":"string","description":"be a string"},"crossref-lol-title":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention toc-title-document,toc-title-website,related-formats-title,related-notebooks-title,callout-tip-title,callout-note-title,callout-warning-title,callout-important-title,callout-caution-title,section-title-abstract,section-title-footnotes,section-title-appendices,code-summary,code-tools-menu-caption,code-tools-show-all-code,code-tools-hide-all-code,code-tools-view-source,code-tools-source-code,search-no-results-text,copy-button-tooltip,copy-button-tooltip-success,repo-action-links-edit,repo-action-links-source,repo-action-links-issue,search-matching-documents-text,search-copy-link-title,search-hide-matches-text,search-more-match-text,search-more-matches-text,search-clear-button-title,search-text-placeholder,search-detached-cancel-button-title,search-submit-button-title,crossref-fig-title,crossref-tbl-title,crossref-lst-title,crossref-thm-title,crossref-lem-title,crossref-cor-title,crossref-prp-title,crossref-cnj-title,crossref-def-title,crossref-exm-title,crossref-exr-title,crossref-fig-prefix,crossref-tbl-prefix,crossref-lst-prefix,crossref-ch-prefix,crossref-apx-prefix,crossref-sec-prefix,crossref-eq-prefix,crossref-thm-prefix,crossref-lem-prefix,crossref-cor-prefix,crossref-prp-prefix,crossref-cnj-prefix,crossref-def-prefix,crossref-exm-prefix,crossref-exr-prefix,crossref-lof-title,crossref-lot-title,crossref-lol-title","type":"string","pattern":"(?!(^toc_title_document$|^tocTitleDocument$|^toc_title_website$|^tocTitleWebsite$|^related_formats_title$|^relatedFormatsTitle$|^related_notebooks_title$|^relatedNotebooksTitle$|^callout_tip_title$|^calloutTipTitle$|^callout_note_title$|^calloutNoteTitle$|^callout_warning_title$|^calloutWarningTitle$|^callout_important_title$|^calloutImportantTitle$|^callout_caution_title$|^calloutCautionTitle$|^section_title_abstract$|^sectionTitleAbstract$|^section_title_footnotes$|^sectionTitleFootnotes$|^section_title_appendices$|^sectionTitleAppendices$|^code_summary$|^codeSummary$|^code_tools_menu_caption$|^codeToolsMenuCaption$|^code_tools_show_all_code$|^codeToolsShowAllCode$|^code_tools_hide_all_code$|^codeToolsHideAllCode$|^code_tools_view_source$|^codeToolsViewSource$|^code_tools_source_code$|^codeToolsSourceCode$|^search_no_results_text$|^searchNoResultsText$|^copy_button_tooltip$|^copyButtonTooltip$|^copy_button_tooltip_success$|^copyButtonTooltipSuccess$|^repo_action_links_edit$|^repoActionLinksEdit$|^repo_action_links_source$|^repoActionLinksSource$|^repo_action_links_issue$|^repoActionLinksIssue$|^search_matching_documents_text$|^searchMatchingDocumentsText$|^search_copy_link_title$|^searchCopyLinkTitle$|^search_hide_matches_text$|^searchHideMatchesText$|^search_more_match_text$|^searchMoreMatchText$|^search_more_matches_text$|^searchMoreMatchesText$|^search_clear_button_title$|^searchClearButtonTitle$|^search_text_placeholder$|^searchTextPlaceholder$|^search_detached_cancel_button_title$|^searchDetachedCancelButtonTitle$|^search_submit_button_title$|^searchSubmitButtonTitle$|^crossref_fig_title$|^crossrefFigTitle$|^crossref_tbl_title$|^crossrefTblTitle$|^crossref_lst_title$|^crossrefLstTitle$|^crossref_thm_title$|^crossrefThmTitle$|^crossref_lem_title$|^crossrefLemTitle$|^crossref_cor_title$|^crossrefCorTitle$|^crossref_prp_title$|^crossrefPrpTitle$|^crossref_cnj_title$|^crossrefCnjTitle$|^crossref_def_title$|^crossrefDefTitle$|^crossref_exm_title$|^crossrefExmTitle$|^crossref_exr_title$|^crossrefExrTitle$|^crossref_fig_prefix$|^crossrefFigPrefix$|^crossref_tbl_prefix$|^crossrefTblPrefix$|^crossref_lst_prefix$|^crossrefLstPrefix$|^crossref_ch_prefix$|^crossrefChPrefix$|^crossref_apx_prefix$|^crossrefApxPrefix$|^crossref_sec_prefix$|^crossrefSecPrefix$|^crossref_eq_prefix$|^crossrefEqPrefix$|^crossref_thm_prefix$|^crossrefThmPrefix$|^crossref_lem_prefix$|^crossrefLemPrefix$|^crossref_cor_prefix$|^crossrefCorPrefix$|^crossref_prp_prefix$|^crossrefPrpPrefix$|^crossref_cnj_prefix$|^crossrefCnjPrefix$|^crossref_def_prefix$|^crossrefDefPrefix$|^crossref_exm_prefix$|^crossrefExmPrefix$|^crossref_exr_prefix$|^crossrefExrPrefix$|^crossref_lof_title$|^crossrefLofTitle$|^crossref_lot_title$|^crossrefLotTitle$|^crossref_lol_title$|^crossrefLolTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"format-language"},"website-about":{"_internalId":1186,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The target id for the about page.","long":"The target id of this about page. When the about page is rendered, it will \nplace read the contents of a `div` with this id into the about template that you \nhave selected (and replace the contents with the rendered about content).\n\nIf no such `div` is defined on the page, a `div` with this id will be created \nand appended to the end of the page.\n"}},"documentation":"The target id for the about page."},"template":{"_internalId":1168,"type":"anyOf","anyOf":[{"_internalId":1165,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, a string","tags":{"description":{"short":"The template to use to layout this about page.","long":"The template to use to layout this about page. Choose from:\n\n- `jolla`\n- `trestles`\n- `solana`\n- `marquee`\n- `broadside`\n"}},"documentation":"The template to use to layout this about page."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to the main image on the about page.","long":"The path to the main image on the about page. If not specified, \nthe `image` provided for the document itself will be used.\n"}},"documentation":"The path to the main image on the about page."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"The alt text for the main image on the about page."},"documentation":"The alt text for the main image on the about page."},"image-title":{"type":"string","description":"be a string","tags":{"description":"The title for the main image on the about page."},"documentation":"The title for the main image on the about page."},"image-width":{"type":"string","description":"be a string","tags":{"description":{"short":"A valid CSS width for the about page image.","long":"A valid CSS width for the about page image.\n"}},"documentation":"A valid CSS width for the about page image."},"image-shape":{"_internalId":1179,"type":"enum","enum":["rectangle","round","rounded"],"description":"be one of: `rectangle`, `round`, `rounded`","completions":["rectangle","round","rounded"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The shape of the image on the about page.","long":"The shape of the image on the about page.\n\n- `rectangle`\n- `round`\n- `rounded`\n"}},"documentation":"The shape of the image on the about page."},"links":{"_internalId":1185,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":1184,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}},"patternProperties":{},"required":["template"],"closed":true,"$id":"website-about"},"website-listing":{"_internalId":1341,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The id of this listing.","long":"The id of this listing. When the listing is rendered, it will \nplace the contents into a `div` with this id. If no such `div` is defined on the \npage, a `div` with this id will be created and appended to the end of the page.\n\nIf no `id` is provided for a listing, Quarto will synthesize one when rendering the page.\n"}},"documentation":"The id of this listing."},"type":{"_internalId":1193,"type":"enum","enum":["default","table","grid","custom"],"description":"be one of: `default`, `table`, `grid`, `custom`","completions":["default","table","grid","custom"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of listing to create.","long":"The type of listing to create. Choose one of:\n\n- `default`: A blog style list of items\n- `table`: A table of items\n- `grid`: A grid of item cards\n- `custom`: A custom template, provided by the `template` field\n"}},"documentation":"The type of listing to create."},"contents":{"_internalId":1205,"type":"anyOf","anyOf":[{"_internalId":1203,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1202,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"},{"_internalId":1204,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing-contents-object","items":{"_internalId":1203,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1202,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"}}],"description":"be at least one of: at least one of: a string, website-listing-contents-object, an array of values, where each element must be at least one of: a string, website-listing-contents-object","tags":{"complete-from":["anyOf",0],"description":"The files or path globs of Quarto documents or YAML files that should be included in the listing."},"documentation":"The files or path globs of Quarto documents or YAML files that should\nbe included in the listing."},"sort":{"_internalId":1216,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1215,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1214,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Sort items in the listing by these fields.","long":"Sort items in the listing by these fields. The sort key is made up of a \nfield name followed by a direction `asc` or `desc`.\n\nFor example:\n`date asc`\n\nUse `sort:false` to use the unsorted original order of items.\n"}},"documentation":"Sort items in the listing by these fields."},"max-items":{"type":"number","description":"be a number","tags":{"description":"The maximum number of items to include in this listing."},"documentation":"The maximum number of items to include in this listing."},"page-size":{"type":"number","description":"be a number","tags":{"description":"The number of items to display on a page."},"documentation":"The number of items to display on a page."},"sort-ui":{"_internalId":1230,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1229,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the sorting control for the listing.","long":"Shows or hides the sorting control for the listing. To control the \nfields that will be displayed in the sorting control, provide a list\nof field names.\n"}},"documentation":"Shows or hides the sorting control for the listing."},"filter-ui":{"_internalId":1240,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1239,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the filtering control for the listing.","long":"Shows or hides the filtering control for the listing. To control the \nfields that will be used to filter the listing, provide a list\nof field names. By default all fields of the listing will be used\nwhen filtering.\n"}},"documentation":"Shows or hides the filtering control for the listing."},"categories":{"_internalId":1248,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1247,"type":"enum","enum":["numbered","unnumbered","cloud"],"description":"be one of: `numbered`, `unnumbered`, `cloud`","completions":["numbered","unnumbered","cloud"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `numbered`, `unnumbered`, `cloud`","tags":{"description":{"short":"Display item categories from this listing in the margin of the page.","long":"Display item categories from this listing in the margin of the page.\n\n - `numbered`: Category list with number of items\n - `unnumbered`: Category list\n - `cloud`: Word cloud style categories\n"}},"documentation":"Display item categories from this listing in the margin of the\npage."},"feed":{"_internalId":1277,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1276,"type":"object","description":"be an object","properties":{"items":{"type":"number","description":"be a number","tags":{"description":"The number of items to include in your feed. Defaults to 20.\n"},"documentation":"The number of items to include in your feed. Defaults to 20."},"type":{"_internalId":1259,"type":"enum","enum":["full","partial","metadata"],"description":"be one of: `full`, `partial`, `metadata`","completions":["full","partial","metadata"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Whether to include full or partial content in the feed.","long":"Whether to include full or partial content in the feed.\n\n- `full` (default): Include the complete content of the document in the feed.\n- `partial`: Include only the first paragraph of the document in the feed.\n- `metadata`: Use only the title, description, and other document metadata in the feed.\n"}},"documentation":"Whether to include full or partial content in the feed."},"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title for this feed.","long":"The title for this feed. Defaults to the site title provided the Quarto project.\n"}},"documentation":"The title for this feed."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to an image for this feed.","long":"The path to an image for this feed. If not specified, the image for the page the listing \nappears on will be used, otherwise an image will be used if specified for the site \nin the Quarto project.\n"}},"documentation":"The path to an image for this feed."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"The description of this feed.","long":"The description of this feed. If not specified, the description for the page the \nlisting appears on will be used, otherwise the description \nof the site will be used if specified in the Quarto project.\n"}},"documentation":"The description of this feed."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the feed.","long":"The language of the feed. Omitted if not specified. \nSee [https://www.rssboard.org/rss-language-codes](https://www.rssboard.org/rss-language-codes)\nfor a list of valid language codes.\n"}},"documentation":"The language of the feed."},"categories":{"_internalId":1273,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"},{"_internalId":1272,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"xml-stylesheet":{"type":"string","description":"be a string","tags":{"description":"The path to an XML stylesheet (XSL file) used to style the RSS feed."},"documentation":"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Enables an RSS feed for the listing."},"documentation":"Enables an RSS feed for the listing."},"date-format":{"type":"string","description":"be a string","tags":{"description":{"short":"The date format to use when displaying dates (e.g. d-M-yyy).","long":"The date format to use when displaying dates (e.g. d-M-yyy). \nLearn more about supported date formatting values [here](https://quarto.org/docs/reference/dates.html).\n"}},"documentation":"The date format to use when displaying dates (e.g. d-M-yyy)."},"max-description-length":{"type":"number","description":"be a number","tags":{"description":{"short":"The maximum length (in characters) of the description displayed in the listing.","long":"The maximum length (in characters) of the description displayed in the listing.\nDefaults to 175.\n"}},"documentation":"The maximum length (in characters) of the description displayed in\nthe listing."},"image-placeholder":{"type":"string","description":"be a string","tags":{"description":"The default image to use if an item in the listing doesn't have an image."},"documentation":"The default image to use if an item in the listing doesn’t have an\nimage."},"image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, images in the listing will be loaded immediately. If true, images will be loaded as they come into view."},"documentation":"If false, images in the listing will be loaded immediately. If true,\nimages will be loaded as they come into view."},"image-align":{"_internalId":1288,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"In `default` type listings, whether to place the image on the right or left side of the post content (`left` or `right`)."},"documentation":"In default type listings, whether to place the image on\nthe right or left side of the post content (left or\nright)."},"image-height":{"type":"string","description":"be a string","tags":{"description":{"short":"The height of the image being displayed.","long":"The height of the image being displayed (a CSS height string).\n\nThe width is automatically determined and the image will fill the rectangle without scaling (cropped to fill).\n"}},"documentation":"The height of the image being displayed."},"grid-columns":{"type":"number","description":"be a number","tags":{"description":{"short":"In `grid` type listings, the number of columns in the grid display.","long":"In grid type listings, the number of columns in the grid display.\nDefaults to 3.\n"}},"documentation":"In grid type listings, the number of columns in the grid\ndisplay."},"grid-item-border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, whether to display a border around the item card.","long":"In grid type listings, whether to display a border around the item card. Defaults to `true`.\n"}},"documentation":"In grid type listings, whether to display a border\naround the item card."},"grid-item-align":{"_internalId":1297,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, the alignment of the content within the card.","long":"In grid type listings, the alignment of the content within the card (`left` (default), `right`, or `center`).\n"}},"documentation":"In grid type listings, the alignment of the content\nwithin the card."},"table-striped":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, display the table rows with alternating background colors.","long":"In table type listings, display the table rows with alternating background colors.\nDefaults to `false`.\n"}},"documentation":"In table type listings, display the table rows with\nalternating background colors."},"table-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, highlight rows of the table when the user hovers the mouse over them.","long":"In table type listings, highlight rows of the table when the user hovers the mouse over them.\nDefaults to false.\n"}},"documentation":"In table type listings, highlight rows of the table when\nthe user hovers the mouse over them."},"template":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a custom listing template.","long":"The path to a custom listing template.\n"}},"documentation":"The path to a custom listing template."},"template-params":{"_internalId":1306,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Parameters that are passed to the custom template."},"documentation":"Parameters that are passed to the custom template."},"fields":{"_internalId":1312,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"The list of fields to include in this listing","long":"The list of fields to include in this listing.\n"}},"documentation":"The list of fields to include in this listing"},"field-display-names":{"_internalId":1315,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"A mapping of display names for listing fields.","long":"A mapping that provides display names for specific fields. For example, to display the title column as ‘Report’ in a table listing you would write:\n\n```yaml\nlisting:\n field-display-names:\n title: \"Report\"\n```\n"}},"documentation":"A mapping of display names for listing fields."},"field-types":{"_internalId":1318,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"Provides the date type for the field of a listing item.","long":"Provides the date type for the field of a listing item. Unknown fields are treated\nas strings unless a type is provided. Valid types are `date`, `number`.\n"}},"documentation":"Provides the date type for the field of a listing item."},"field-links":{"_internalId":1323,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"This list of fields to display as links in a table listing.","long":"The list of fields to display as hyperlinks to the source document \nwhen the listing type is a table. By default, only the `title` or \n`filename` is displayed as a link.\n"}},"documentation":"This list of fields to display as links in a table listing."},"field-required":{"_internalId":1328,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"Fields that items in this listing must have populated.","long":"Fields that items in this listing must have populated.\nIf a listing is rendered and one more items in this listing \nis missing a required field, an error will occur and the render will.\n"}},"documentation":"Fields that items in this listing must have populated."},"include":{"_internalId":1334,"type":"anyOf","anyOf":[{"_internalId":1331,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1333,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1331,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be included in the listing."},"documentation":"Items with matching field values will be included in the listing."},"exclude":{"_internalId":1340,"type":"anyOf","anyOf":[{"_internalId":1337,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1339,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1337,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be excluded from the listing."},"documentation":"Items with matching field values will be excluded from the\nlisting."}},"patternProperties":{},"closed":true,"$id":"website-listing"},"website-listing-contents-object":{"_internalId":1356,"type":"object","description":"be an object","properties":{"author":{"_internalId":1349,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1348,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"subtitle":{"type":"string","description":"be a string"}},"patternProperties":{},"$id":"website-listing-contents-object"},"csl-date":{"_internalId":1376,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1366,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":1365,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}},{"_internalId":1375,"type":"object","description":"be an object","properties":{"year":{"type":"number","description":"be a number","tags":{"description":"The year"},"documentation":"The year"},"month":{"type":"number","description":"be a number","tags":{"description":"The month"},"documentation":"The month"},"day":{"type":"number","description":"be a number","tags":{"description":"The day"},"documentation":"The day"}},"patternProperties":{}}],"description":"be at least one of: a string, at least one of: a number, an array of values, where each element must be a number, an object","$id":"csl-date"},"csl-person":{"_internalId":1396,"type":"anyOf","anyOf":[{"_internalId":1384,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1383,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":1395,"type":"anyOf","anyOf":[{"_internalId":1393,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":1394,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1393,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: an object, an array of values, where each element must be an object","$id":"csl-person"},"csl-number":{"_internalId":1403,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"csl-number"},"csl-item-shared":{"_internalId":1701,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item was initially available"},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Call number (to locate the item in a library)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"available-date":{"_internalId":1433,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"chair":{"_internalId":1438,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"chapter-number":{"_internalId":1441,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Composer (e.g. of a musical score)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"citation-number":{"_internalId":1450,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Title of the container holding the item.","completions":[]},"collection-editor":{"_internalId":1453,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Short/abbreviated form of container-title;"},"collection-number":{"_internalId":1456,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"compiler":{"_internalId":1461,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Director (e.g. of a film)."},"container-author":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"The editor of the item.","completions":[]},"contributor":{"_internalId":1474,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"curator":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Combined editor and translator of a work."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Date the event related to an item took place."},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1491,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"A url to the full text for this item."},"editor-translator":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Type, class, or subtype of the item"},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1507,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Guest (e.g. on a TV show or podcast)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"A value which uniquely identifies this item."},"executive-producer":{"_internalId":1514,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"first-reference-note-number":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Interviewer (e.g. of an interview)."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"International Standard Serial Number."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Issue number of the item or container holding the item"},"host":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Date the item was issued/published."},"id":{"_internalId":1536,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"illustrator":{"_internalId":1539,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"The language of the item (used only for citation of the item)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"The license information applicable to an item."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"A cite-specific pinpointer within the item."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1557,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Narrator (e.g. of an audio book)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Number identifying the item (e.g. a report number)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"Total number of pages of the cited item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"locator":{"_internalId":1571,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"The original creator of a work."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Issue date of the original version."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"number-of-pages":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"number-of-volumes":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"organizer":{"_internalId":1590,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-author":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Title of the specific part of an item being cited."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"A url to the pdf for this item."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"page":{"_internalId":1605,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed Central reference number."},"page-first":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed reference number."},"page-last":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Printing number of the item or container holding the item."},"part-number":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Producer (e.g. of a television or radio broadcast)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A public url for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"The publisher of the item."},"performer":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"The geographic location of the publisher."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Recipient (e.g. of a letter)."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Author of the item reviewed by the current item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Title of the item reviewed by the current item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Scale of e.g. a map or model."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Creator of a series (e.g. of a television series)."},"reviewed-author":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"script-writer":{"_internalId":1660,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Short/abbreviated form oftitle."},"section":{"_internalId":1663,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Translator"},"series-creator":{"_internalId":1666,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"The type\nof the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"submitted":{"_internalId":1673,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"supplement-number":{"_internalId":1676,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Title of the volume of the item or container holding the item."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Manuscript configuration"},"type":{"_internalId":1684,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"internal-schema-hack"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1693,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Distance from page edge to wideblock boundary."},"volume":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Width of the margin note column."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Gap between margin column and body text."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Advanced geometry settings for Typst margin layout."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention abstract-url,accessed,annote,archive,archive-collection,archive_collection,archive-location,archive_location,archive-place,authority,available-date,call-number,chair,chapter-number,citation-key,citation-label,citation-number,collection-editor,collection-number,collection-title,compiler,composer,container-author,container-title,container-title-short,contributor,curator,dimensions,director,division,DOI,edition,editor,editorial-director,editor-translator,event,event-date,event-title,event-place,executive-producer,first-reference-note-number,fulltext-url,genre,guest,host,id,illustrator,interviewer,isbn,ISBN,issn,ISSN,issue,issued,jurisdiction,keyword,language,license,locator,medium,narrator,note,number,number-of-pages,number-of-volumes,organizer,original-author,original-date,original-publisher,original-publisher-place,original-title,page,page-first,page-last,part-number,part-title,pdf-url,performer,pmcid,PMCID,pmid,PMID,printing-number,producer,public-url,publisher,publisher-place,recipient,reviewed-author,reviewed-genre,reviewed-title,scale,script-writer,section,series-creator,source,status,submitted,supplement-number,title-short,translator,type,url,URL,version,volume,volume-title,year-suffix","type":"string","pattern":"(?!(^abstract_url$|^abstractUrl$|^archiveCollection$|^archiveCollection$|^archiveLocation$|^archiveLocation$|^archive_place$|^archivePlace$|^available_date$|^availableDate$|^call_number$|^callNumber$|^chapter_number$|^chapterNumber$|^citation_key$|^citationKey$|^citation_label$|^citationLabel$|^citation_number$|^citationNumber$|^collection_editor$|^collectionEditor$|^collection_number$|^collectionNumber$|^collection_title$|^collectionTitle$|^container_author$|^containerAuthor$|^container_title$|^containerTitle$|^container_title_short$|^containerTitleShort$|^doi$|^doi$|^editorial_director$|^editorialDirector$|^editor_translator$|^editorTranslator$|^event_date$|^eventDate$|^event_title$|^eventTitle$|^event_place$|^eventPlace$|^executive_producer$|^executiveProducer$|^first_reference_note_number$|^firstReferenceNoteNumber$|^fulltext_url$|^fulltextUrl$|^number_of_pages$|^numberOfPages$|^number_of_volumes$|^numberOfVolumes$|^original_author$|^originalAuthor$|^original_date$|^originalDate$|^original_publisher$|^originalPublisher$|^original_publisher_place$|^originalPublisherPlace$|^original_title$|^originalTitle$|^page_first$|^pageFirst$|^page_last$|^pageLast$|^part_number$|^partNumber$|^part_title$|^partTitle$|^pdf_url$|^pdfUrl$|^printing_number$|^printingNumber$|^public_url$|^publicUrl$|^publisher_place$|^publisherPlace$|^reviewed_author$|^reviewedAuthor$|^reviewed_genre$|^reviewedGenre$|^reviewed_title$|^reviewedTitle$|^script_writer$|^scriptWriter$|^series_creator$|^seriesCreator$|^supplement_number$|^supplementNumber$|^title_short$|^titleShort$|^volume_title$|^volumeTitle$|^year_suffix$|^yearSuffix$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item-shared"},"csl-item":{"_internalId":1701,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item was initially available"},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Call number (to locate the item in a library)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"available-date":{"_internalId":1433,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"chair":{"_internalId":1438,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"chapter-number":{"_internalId":1441,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Composer (e.g. of a musical score)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"citation-number":{"_internalId":1450,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Title of the container holding the item.","completions":[]},"collection-editor":{"_internalId":1453,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Short/abbreviated form of container-title;"},"collection-number":{"_internalId":1456,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"compiler":{"_internalId":1461,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Director (e.g. of a film)."},"container-author":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"The editor of the item.","completions":[]},"contributor":{"_internalId":1474,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"curator":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Combined editor and translator of a work."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Date the event related to an item took place."},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1491,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"A url to the full text for this item."},"editor-translator":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Type, class, or subtype of the item"},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1507,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Guest (e.g. on a TV show or podcast)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"A value which uniquely identifies this item."},"executive-producer":{"_internalId":1514,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"first-reference-note-number":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Interviewer (e.g. of an interview)."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"International Standard Serial Number."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Issue number of the item or container holding the item"},"host":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Date the item was issued/published."},"id":{"_internalId":1721,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1539,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"The language of the item (used only for citation of the item)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"The license information applicable to an item."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"A cite-specific pinpointer within the item."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1557,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Narrator (e.g. of an audio book)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Number identifying the item (e.g. a report number)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"Total number of pages of the cited item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"locator":{"_internalId":1571,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"The original creator of a work."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Issue date of the original version."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"number-of-pages":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"number-of-volumes":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"organizer":{"_internalId":1590,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-author":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Title of the specific part of an item being cited."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"A url to the pdf for this item."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"page":{"_internalId":1605,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed Central reference number."},"page-first":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed reference number."},"page-last":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Printing number of the item or container holding the item."},"part-number":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Producer (e.g. of a television or radio broadcast)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A public url for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"The publisher of the item."},"performer":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"The geographic location of the publisher."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Recipient (e.g. of a letter)."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Author of the item reviewed by the current item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Title of the item reviewed by the current item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Scale of e.g. a map or model."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Creator of a series (e.g. of a television series)."},"reviewed-author":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"script-writer":{"_internalId":1660,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Short/abbreviated form oftitle."},"section":{"_internalId":1663,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Translator"},"series-creator":{"_internalId":1666,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"The type\nof the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"submitted":{"_internalId":1673,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"supplement-number":{"_internalId":1676,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Title of the volume of the item or container holding the item."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Manuscript configuration"},"type":{"_internalId":1684,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"internal-schema-hack"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1693,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Distance from page edge to wideblock boundary."},"volume":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Width of the margin note column."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Gap between margin column and body text."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Advanced geometry settings for Typst margin layout."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1708,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item"},"citation-item":{"_internalId":1701,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item was initially available"},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Call number (to locate the item in a library)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"available-date":{"_internalId":1433,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"chair":{"_internalId":1438,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"chapter-number":{"_internalId":1441,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Composer (e.g. of a musical score)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"citation-number":{"_internalId":1450,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Title of the container holding the item.","completions":[]},"collection-editor":{"_internalId":1453,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Short/abbreviated form of container-title;"},"collection-number":{"_internalId":1456,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"compiler":{"_internalId":1461,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Director (e.g. of a film)."},"container-author":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"The editor of the item.","completions":[]},"contributor":{"_internalId":1474,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"curator":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Combined editor and translator of a work."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Date the event related to an item took place."},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1491,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"A url to the full text for this item."},"editor-translator":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Type, class, or subtype of the item"},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1507,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Guest (e.g. on a TV show or podcast)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"A value which uniquely identifies this item."},"executive-producer":{"_internalId":1514,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"first-reference-note-number":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Interviewer (e.g. of an interview)."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"International Standard Serial Number."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Issue number of the item or container holding the item"},"host":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Date the item was issued/published."},"id":{"_internalId":1721,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1539,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"The language of the item (used only for citation of the item)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"The license information applicable to an item."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"A cite-specific pinpointer within the item."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1557,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Narrator (e.g. of an audio book)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Number identifying the item (e.g. a report number)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"Total number of pages of the cited item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"locator":{"_internalId":1571,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"The original creator of a work."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Issue date of the original version."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"number-of-pages":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"number-of-volumes":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"organizer":{"_internalId":1590,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-author":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Title of the specific part of an item being cited."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"A url to the pdf for this item."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"page":{"_internalId":1605,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed Central reference number."},"page-first":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed reference number."},"page-last":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Printing number of the item or container holding the item."},"part-number":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Producer (e.g. of a television or radio broadcast)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A public url for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"The publisher of the item."},"performer":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"The geographic location of the publisher."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Recipient (e.g. of a letter)."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Author of the item reviewed by the current item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Title of the item reviewed by the current item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Scale of e.g. a map or model."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Creator of a series (e.g. of a television series)."},"reviewed-author":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"script-writer":{"_internalId":1660,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Short/abbreviated form oftitle."},"section":{"_internalId":1663,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Translator"},"series-creator":{"_internalId":1666,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"The type\nof the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"submitted":{"_internalId":1673,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"supplement-number":{"_internalId":1676,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Title of the volume of the item or container holding the item."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Manuscript configuration"},"type":{"_internalId":1684,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"internal-schema-hack"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1693,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Distance from page edge to wideblock boundary."},"volume":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Width of the margin note column."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Gap between margin column and body text."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Advanced geometry settings for Typst margin layout."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1708,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."},"article-id":{"_internalId":1742,"type":"anyOf","anyOf":[{"_internalId":1740,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1739,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1741,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1740,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1739,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"The unique identifier for this article."},"documentation":"The unique identifier for this article."},"elocation-id":{"type":"string","description":"be a string","tags":{"description":"Bibliographic identifier for a document that does not have traditional printed page numbers."},"documentation":"Bibliographic identifier for a document that does not have\ntraditional printed page numbers."},"eissn":{"type":"string","description":"be a string","tags":{"description":"Electronic International Standard Serial Number."},"documentation":"Electronic International Standard Serial Number."},"pissn":{"type":"string","description":"be a string","tags":{"description":"Print International Standard Serial Number."},"documentation":"Print International Standard Serial Number."},"art-access-id":{"type":"string","description":"be a string","tags":{"description":"Generic article accession identifier."},"documentation":"Generic article accession identifier."},"publisher-location":{"type":"string","description":"be a string","tags":{"description":"The location of the publisher of this item."},"documentation":"The location of the publisher of this item."},"subject":{"type":"string","description":"be a string","tags":{"description":"The name of a subject or topic describing the article."},"documentation":"The name of a subject or topic describing the article."},"categories":{"_internalId":1760,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."},{"_internalId":1759,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"container-id":{"_internalId":1776,"type":"anyOf","anyOf":[{"_internalId":1774,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1773,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1775,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1774,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1773,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":{"short":"External identifier of a publication or journal.","long":"External identifier, typically assigned to a journal by \na publisher, archive, or library to provide a unique identifier for \nthe journal or publication.\n"}},"documentation":"External identifier of a publication or journal."},"jats-type":{"type":"string","description":"be a string","tags":{"description":"The type used for the JATS `article` tag."},"documentation":"The type used for the JATS article tag."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"citation-item"},"smart-include":{"_internalId":1794,"type":"anyOf","anyOf":[{"_internalId":1788,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"Textual content to add to includes"},"documentation":"Textual content to add to includes"}},"patternProperties":{},"required":["text"],"closed":true},{"_internalId":1793,"type":"object","description":"be an object","properties":{"file":{"type":"string","description":"be a string","tags":{"description":"Name of file with content to add to includes"},"documentation":"Name of file with content to add to includes"}},"patternProperties":{},"required":["file"],"closed":true}],"description":"be at least one of: an object, an object","$id":"smart-include"},"semver":{"_internalId":1797,"type":"string","pattern":"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$","description":"be a string that satisfies regex \"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$\"","$id":"semver","tags":{"description":"Version number according to Semantic Versioning"},"documentation":"Version number according to Semantic Versioning"},"quarto-date":{"_internalId":1809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1808,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string"},"value":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"],"closed":true}],"description":"be at least one of: a string, an object","$id":"quarto-date"},"project-profile":{"_internalId":1829,"type":"object","description":"be an object","properties":{"default":{"_internalId":1819,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1818,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Default profile to apply if QUARTO_PROFILE is not defined.\n"},"documentation":"Default profile to apply if QUARTO_PROFILE is not defined."},"group":{"_internalId":1828,"type":"anyOf","anyOf":[{"_internalId":1826,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":1827,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":1826,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}}],"description":"be at least one of: an array of values, where each element must be a string, an array of values, where each element must be an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Define a profile group for which at least one profile is always active.\n"},"documentation":"Define a profile group for which at least one profile is always\nactive."}},"patternProperties":{},"closed":true,"$id":"project-profile","tags":{"description":"Specify a default profile and profile groups"},"documentation":"Specify a default profile and profile groups"},"bad-parse-schema":{"_internalId":1837,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":1836,"type":"string","pattern":"^[^\\s]+$","description":"be a string that satisfies regex \"^[^\\s]+$\""},"$id":"bad-parse-schema"},"quarto-dev-schema":{"_internalId":1886,"type":"object","description":"be an object","properties":{"_quarto":{"_internalId":1885,"type":"object","description":"be an object","properties":{"trace-filters":{"type":"string","description":"be a string"},"tests":{"_internalId":1884,"type":"object","description":"be an object","properties":{"run":{"_internalId":1883,"type":"object","description":"be an object","properties":{"ci":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Run tests on CI (true = run, false = skip)"},"documentation":"Run tests on CI (true = run, false = skip)"},"skip":{"_internalId":1858,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Skip test unconditionally (true = skip with default message, string = skip with custom message)"},"documentation":"Skip test unconditionally (true = skip with default message, string =\nskip with custom message)"},"os":{"_internalId":1870,"type":"anyOf","anyOf":[{"_internalId":1863,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1869,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1868,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Run tests ONLY on these platforms (whitelist)"},"documentation":"Run tests ONLY on these platforms (whitelist)"},"not_os":{"_internalId":1882,"type":"anyOf","anyOf":[{"_internalId":1875,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1881,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1880,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Don't run tests on these platforms (blacklist)"},"documentation":"Don’t run tests on these platforms (blacklist)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention ci,skip,os,not_os","type":"string","pattern":"(?!(^not-os$|^notOs$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":"Control when tests should run"},"documentation":"Control when tests should run"}},"patternProperties":{}}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention trace-filters,tests","type":"string","pattern":"(?!(^trace_filters$|^traceFilters$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}},"patternProperties":{},"$id":"quarto-dev-schema"},"notebook-view-schema":{"_internalId":1904,"type":"object","description":"be an object","properties":{"notebook":{"type":"string","description":"be a string","tags":{"description":"The path to the locally referenced notebook."},"documentation":"The path to the locally referenced notebook."},"title":{"_internalId":1899,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The title of the notebook when viewed."},"documentation":"The title of the notebook when viewed."},"url":{"type":"string","description":"be a string","tags":{"description":"The url to use when viewing this notebook."},"documentation":"The url to use when viewing this notebook."},"download-url":{"type":"string","description":"be a string","tags":{"description":"The url to use when downloading the notebook from the preview"},"documentation":"The url to use when downloading the notebook from the preview"}},"patternProperties":{},"required":["notebook"],"propertyNames":{"errorMessage":"property ${value} does not match case convention notebook,title,url,download-url","type":"string","pattern":"(?!(^download_url$|^downloadUrl$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"notebook-view-schema"},"code-links-schema":{"_internalId":1934,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1933,"type":"anyOf","anyOf":[{"_internalId":1931,"type":"anyOf","anyOf":[{"_internalId":1927,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1930,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"},{"_internalId":1932,"type":"array","description":"be an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","items":{"_internalId":1931,"type":"anyOf","anyOf":[{"_internalId":1927,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1930,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"}}],"description":"be at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","$id":"code-links-schema"},"manuscript-schema":{"_internalId":1982,"type":"object","description":"be an object","properties":{"article":{"type":"string","description":"be a string","tags":{"description":"The input document that will serve as the root document for this manuscript"},"documentation":"The input document that will serve as the root document for this\nmanuscript"},"code-links":{"_internalId":1945,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema","tags":{"description":"Code links to display for this manuscript."},"documentation":"Code links to display for this manuscript."},"manuscript-url":{"type":"string","description":"be a string","tags":{"description":"The deployed url for this manuscript"},"documentation":"The deployed url for this manuscript"},"meca-bundle":{"_internalId":1954,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Whether to generate a MECA bundle for this manuscript"},"documentation":"Whether to generate a MECA bundle for this manuscript"},"notebooks":{"_internalId":1965,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":1964,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1963,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}},"resources":{"_internalId":1973,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":1972,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"environment":{"_internalId":1981,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},{"_internalId":1980,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true,"$id":"manuscript-schema"},"brand-meta":{"_internalId":2019,"type":"object","description":"be an object","properties":{"name":{"_internalId":1996,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1995,"type":"object","description":"be an object","properties":{"full":{"type":"string","description":"be a string","tags":{"description":"The full, official or legal name of the company or brand."},"documentation":"The full, official or legal name of the company or brand."},"short":{"type":"string","description":"be a string","tags":{"description":"The short, informal, or common name of the company or brand."},"documentation":"The short, informal, or common name of the company or brand."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The brand name."},"documentation":"The brand name."},"link":{"_internalId":2018,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2017,"type":"object","description":"be an object","properties":{"home":{"type":"string","description":"be a string","tags":{"description":"The brand's home page or website."},"documentation":"The brand’s home page or website."},"mastodon":{"type":"string","description":"be a string","tags":{"description":"The brand's Mastodon URL."},"documentation":"The brand’s Mastodon URL."},"bluesky":{"type":"string","description":"be a string","tags":{"description":"The brand's Bluesky URL."},"documentation":"The brand’s Bluesky URL."},"github":{"type":"string","description":"be a string","tags":{"description":"The brand's GitHub URL."},"documentation":"The brand’s GitHub URL."},"linkedin":{"type":"string","description":"be a string","tags":{"description":"The brand's LinkedIn URL."},"documentation":"The brand’s LinkedIn URL."},"twitter":{"type":"string","description":"be a string","tags":{"description":"The brand's Twitter URL."},"documentation":"The brand’s Twitter URL."},"facebook":{"type":"string","description":"be a string","tags":{"description":"The brand's Facebook URL."},"documentation":"The brand’s Facebook URL."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Important links for the brand, including social media links. If a single string, it is the brand's home page or website. Additional fields are allowed for internal use.\n"},"documentation":"Important links for the brand, including social media links. If a\nsingle string, it is the brand’s home page or website. Additional fields\nare allowed for internal use."}},"patternProperties":{},"$id":"brand-meta","tags":{"description":"Metadata for a brand, including the brand name and important links.\n"},"documentation":"Metadata for a brand, including the brand name and important\nlinks."},"brand-string-light-dark":{"_internalId":2035,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2034,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-string-light-dark"},"brand-logo-explicit-resource":{"_internalId":2044,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"closed":true,"$id":"brand-logo-explicit-resource"},"brand-logo-resource":{"_internalId":2052,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2051,"type":"ref","$ref":"brand-logo-explicit-resource","description":"be brand-logo-explicit-resource"}],"description":"be at least one of: a string, brand-logo-explicit-resource","$id":"brand-logo-resource"},"brand-logo-single":{"_internalId":2077,"type":"object","description":"be an object","properties":{"images":{"_internalId":2064,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2063,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's small-sized logo or icon.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon."},"medium":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's medium-sized logo.\n"},"documentation":"A link or path to the brand’s medium-sized logo."},"large":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's large- or full-sized logo.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo."}},"patternProperties":{},"closed":true,"$id":"brand-logo-single","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-logo-unified":{"_internalId":2105,"type":"object","description":"be an object","properties":{"images":{"_internalId":2089,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2088,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"_internalId":2094,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's small-sized logo or icon, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon, or a link or\npath to both the light and dark versions."},"medium":{"_internalId":2099,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's medium-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s medium-sized logo, or a link or path to\nboth the light and dark versions."},"large":{"_internalId":2104,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's large- or full-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo, or a link or\npath to both the light and dark versions."}},"patternProperties":{},"closed":true,"$id":"brand-logo-unified","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-named-logo":{"_internalId":2108,"type":"enum","enum":["small","medium","large"],"description":"be one of: `small`, `medium`, `large`","completions":["small","medium","large"],"exhaustiveCompletions":true,"$id":"brand-named-logo","tags":{"description":"Names of customizeable logos"},"documentation":"Names of customizeable logos"},"logo-options":{"_internalId":2119,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"$id":"logo-options"},"logo-specifier":{"_internalId":2129,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2128,"type":"ref","$ref":"logo-options","description":"be logo-options"}],"description":"be at least one of: a string, logo-options","$id":"logo-specifier"},"logo-options-path-optional":{"_internalId":2140,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"$id":"logo-options-path-optional"},"logo-specifier-path-optional":{"_internalId":2150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2149,"type":"ref","$ref":"logo-options-path-optional","description":"be logo-options-path-optional"}],"description":"be at least one of: a string, logo-options-path-optional","$id":"logo-specifier-path-optional"},"logo-light-dark-specifier":{"_internalId":2172,"type":"anyOf","anyOf":[{"_internalId":2155,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2158,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2171,"type":"object","description":"be an object","properties":{"light":{"_internalId":2165,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2170,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier, an object","$id":"logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"logo-light-dark-specifier-path-optional":{"_internalId":2191,"type":"anyOf","anyOf":[{"_internalId":2177,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2190,"type":"object","description":"be an object","properties":{"light":{"_internalId":2184,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2189,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: logo-specifier-path-optional, an object","$id":"logo-light-dark-specifier-path-optional","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"normalized-logo-light-dark-specifier":{"_internalId":2204,"type":"object","description":"be an object","properties":{"light":{"_internalId":2198,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a light logo\n"},"documentation":"Options for a light logo"},"dark":{"_internalId":2203,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a dark logo\n"},"documentation":"Options for a dark logo"}},"patternProperties":{},"closed":true,"$id":"normalized-logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"brand-color-value":{"type":"string","description":"be a string","$id":"brand-color-value"},"brand-color-single":{"_internalId":2279,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2218,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2217,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2223,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2228,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2233,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2238,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2243,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2248,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2253,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2258,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2263,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2268,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2273,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2278,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-single","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-color-light-dark":{"_internalId":2298,"type":"anyOf","anyOf":[{"_internalId":2284,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2297,"type":"object","description":"be an object","properties":{"light":{"_internalId":2291,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2296,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-color-value, an object","$id":"brand-color-light-dark"},"brand-color-unified":{"_internalId":2369,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2308,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2307,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2313,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2318,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2323,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2328,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2333,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2338,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2343,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2348,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2353,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2358,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2363,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2368,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-unified","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-maybe-named-color":{"_internalId":2379,"type":"anyOf","anyOf":[{"_internalId":2374,"type":"ref","$ref":"brand-named-theme-color","description":"be brand-named-theme-color"},{"type":"string","description":"be a string"}],"description":"be at least one of: brand-named-theme-color, a string","$id":"brand-maybe-named-color","tags":{"description":"A color, which may be a named brand color.\n"},"documentation":"A color, which may be a named brand color."},"brand-maybe-named-color-light-dark":{"_internalId":2398,"type":"anyOf","anyOf":[{"_internalId":2384,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2397,"type":"object","description":"be an object","properties":{"light":{"_internalId":2391,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2396,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-maybe-named-color, an object","$id":"brand-maybe-named-color-light-dark"},"brand-named-theme-color":{"_internalId":2401,"type":"enum","enum":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"description":"be one of: `foreground`, `background`, `primary`, `secondary`, `tertiary`, `success`, `info`, `warning`, `danger`, `light`, `dark`, `link`","completions":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"exhaustiveCompletions":true,"$id":"brand-named-theme-color","tags":{"description":"A named brand color, taken either from `color.theme` or `color.palette` (in that order).\n"},"documentation":"A named brand color, taken either from color.theme or\ncolor.palette (in that order)."},"brand-typography-single":{"_internalId":2428,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2409,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2408,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2412,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2415,"type":"ref","$ref":"brand-typography-options-headings-single","description":"be brand-typography-options-headings-single","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2418,"type":"ref","$ref":"brand-typography-options-monospace-single","description":"be brand-typography-options-monospace-single","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2421,"type":"ref","$ref":"brand-typography-options-monospace-inline-single","description":"be brand-typography-options-monospace-inline-single","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2424,"type":"ref","$ref":"brand-typography-options-monospace-block-single","description":"be brand-typography-options-monospace-block-single","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2427,"type":"ref","$ref":"brand-typography-options-link-single","description":"be brand-typography-options-link-single","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-single","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-unified":{"_internalId":2455,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2436,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2435,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2439,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2442,"type":"ref","$ref":"brand-typography-options-headings-unified","description":"be brand-typography-options-headings-unified","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2445,"type":"ref","$ref":"brand-typography-options-monospace-unified","description":"be brand-typography-options-monospace-unified","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2448,"type":"ref","$ref":"brand-typography-options-monospace-inline-unified","description":"be brand-typography-options-monospace-inline-unified","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2451,"type":"ref","$ref":"brand-typography-options-monospace-block-unified","description":"be brand-typography-options-monospace-block-unified","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2454,"type":"ref","$ref":"brand-typography-options-link-unified","description":"be brand-typography-options-link-unified","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-unified","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-options-base":{"_internalId":2473,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2472,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2468,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2471,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-base","tags":{"description":"Base typographic options."},"documentation":"Base typographic options."},"brand-typography-options-headings-single":{"_internalId":2495,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2494,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2484,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2487,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2490,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2493,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-single","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-headings-unified":{"_internalId":2517,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2516,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2506,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2509,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2512,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2515,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-unified","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-monospace-single":{"_internalId":2538,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2537,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2530,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2533,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2536,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-single","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-unified":{"_internalId":2559,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2558,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2551,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2554,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2557,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-unified","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-inline-single":{"_internalId":2580,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2579,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2572,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2575,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2578,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-monospace-inline-unified":{"_internalId":2601,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2600,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2593,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2596,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2599,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"line-height-number-string":{"_internalId":2608,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"line-height-number-string","tags":{"description":"Line height"},"documentation":"Line height"},"brand-typography-options-monospace-block-single":{"_internalId":2632,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2631,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2621,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2624,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2627,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2630,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-single","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-monospace-block-unified":{"_internalId":2656,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2655,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2645,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2648,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2651,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2654,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-unified","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-link-single":{"_internalId":2675,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2674,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2665,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2668,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2671,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-link-unified":{"_internalId":2694,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2693,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2684,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2687,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2690,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-named-typography-elements":{"_internalId":2697,"type":"enum","enum":["base","headings","monospace","monospace-inline","monospace-block","link"],"description":"be one of: `base`, `headings`, `monospace`, `monospace-inline`, `monospace-block`, `link`","completions":["base","headings","monospace","monospace-inline","monospace-block","link"],"exhaustiveCompletions":true,"$id":"brand-named-typography-elements","tags":{"description":"Names of customizeable typography elements"},"documentation":"Names of customizeable typography elements"},"brand-font":{"_internalId":2712,"type":"anyOf","anyOf":[{"_internalId":2702,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2705,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2708,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2711,"type":"ref","$ref":"brand-font-system","description":"be brand-font-system"}],"description":"be at least one of: brand-font-google, brand-font-bunny, brand-font-file, brand-font-system","$id":"brand-font","tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"brand-font-weight":{"_internalId":2715,"type":"enum","enum":[100,200,300,400,500,600,700,800,900,"thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"description":"be one of: `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `thin`, `extra-light`, `ultra-light`, `light`, `normal`, `regular`, `medium`, `semi-bold`, `demi-bold`, `bold`, `extra-bold`, `ultra-bold`, `black`","completions":["100","200","300","400","500","600","700","800","900","thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"exhaustiveCompletions":true,"$id":"brand-font-weight","tags":{"description":"A font weight."},"documentation":"A font weight."},"brand-font-style":{"_internalId":2718,"type":"enum","enum":["normal","italic","oblique"],"description":"be one of: `normal`, `italic`, `oblique`","completions":["normal","italic","oblique"],"exhaustiveCompletions":true,"$id":"brand-font-style","tags":{"description":"A font style."},"documentation":"A font style."},"brand-font-common":{"_internalId":2744,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2733,"type":"anyOf","anyOf":[{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2732,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2740,"type":"anyOf","anyOf":[{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2739,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2743,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."}},"patternProperties":{},"closed":true,"$id":"brand-font-common"},"brand-font-system":{"_internalId":2744,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2733,"type":"anyOf","anyOf":[{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2732,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2740,"type":"anyOf","anyOf":[{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2739,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2743,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2749,"type":"enum","enum":["system"],"description":"be 'system'","completions":["system"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-system","tags":{"description":"A system font definition."},"documentation":"A system font definition."},"brand-font-google":{"_internalId":2744,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2733,"type":"anyOf","anyOf":[{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2732,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2740,"type":"anyOf","anyOf":[{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2739,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2743,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2757,"type":"enum","enum":["google"],"description":"be 'google'","completions":["google"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-google","tags":{"description":"A font definition from Google Fonts."},"documentation":"A font definition from Google Fonts."},"brand-font-bunny":{"_internalId":2744,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2733,"type":"anyOf","anyOf":[{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2732,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2731,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2740,"type":"anyOf","anyOf":[{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2739,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2738,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2743,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2765,"type":"enum","enum":["bunny"],"description":"be 'bunny'","completions":["bunny"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-bunny","tags":{"description":"A font definition from fonts.bunny.net."},"documentation":"A font definition from fonts.bunny.net."},"brand-font-file":{"_internalId":2801,"type":"object","description":"be an object","properties":{"source":{"_internalId":2773,"type":"enum","enum":["file"],"description":"be 'file'","completions":["file"],"exhaustiveCompletions":true},"family":{"type":"string","description":"be a string","tags":{"description":"The font family name."},"documentation":"The font family name."},"files":{"_internalId":2800,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2799,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2798,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"The path to the font file. This can be a local path or a URL.\n"},"documentation":"The path to the font file. This can be a local path or a URL."},"weight":{"_internalId":2794,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2797,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},"tags":{"description":"The font files to include. These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"},"documentation":"The font files to include. These can be local or online. Local file\npaths should be relative to the brand.yml file. Online\npaths should be complete URLs."}},"patternProperties":{},"required":["files","family","source"],"closed":true,"$id":"brand-font-file","tags":{"description":"A method for providing font files directly, either locally or from an online location."},"documentation":"A method for providing font files directly, either locally or from an\nonline location."},"brand-font-family":{"type":"string","description":"be a string","$id":"brand-font-family","tags":{"description":"A locally-installed font family name. When used, the end-user is responsible for ensuring that the font is installed on their system.\n"},"documentation":"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system."},"brand-single":{"_internalId":2823,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2810,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2813,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2816,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2819,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2822,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2841,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2828,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2831,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2834,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2837,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2840,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2853,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2852,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-path-only-light-dark","tags":{"description":"A path to a brand.yml file, or an object with light and dark paths to brand.yml\n"},"documentation":"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"},"brand-path-bool-light-dark":{"_internalId":2882,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2878,"type":"object","description":"be an object","properties":{"light":{"_internalId":2869,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2868,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a light brand file or an inline light brand definition.\n"},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"dark":{"_internalId":2877,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2876,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a dark brand file or an inline dark brand definition.\n"},"documentation":"The path to a dark brand file or an inline dark brand definition."}},"patternProperties":{},"closed":true},{"_internalId":2881,"type":"ref","$ref":"brand-unified","description":"be brand-unified"}],"description":"be at least one of: a string, `true` or `false`, an object, brand-unified","$id":"brand-path-bool-light-dark","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline (unified) brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"brand-defaults":{"_internalId":2892,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2887,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2890,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2911,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2910,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2909,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, `true` or `false`, a number"}}},"patternProperties":{},"$id":"brand-defaults-bootstrap"},"marginalia-side-geometry":{"_internalId":2920,"type":"object","description":"be an object","properties":{"far":{"type":"string","description":"be a string","tags":{"description":"Distance from page edge to wideblock boundary."},"documentation":"Unique label for code cell"},"width":{"type":"string","description":"be a string","tags":{"description":"Width of the margin note column."},"documentation":"Classes to apply to cell container"},"separation":{"type":"string","description":"be a string","tags":{"description":"Gap between margin column and body text."},"documentation":"Array of rendering names, e.g. [light, dark]"}},"patternProperties":{},"closed":true,"$id":"marginalia-side-geometry"},"quarto-resource-cell-attributes-label":{"type":"string","description":"be a string","documentation":"Array of tags for notebook cell","tags":{"description":{"short":"Unique label for code cell","long":"Unique label for code cell. Used when other code needs to refer to the cell \n(e.g. for cross references `fig-samples` or `tbl-summary`)\n"}},"$id":"quarto-resource-cell-attributes-label"},"quarto-resource-cell-attributes-classes":{"type":"string","description":"be a string","documentation":"Notebook cell identifier","tags":{"description":"Classes to apply to cell container"},"$id":"quarto-resource-cell-attributes-classes"},"quarto-resource-cell-attributes-renderings":{"_internalId":2929,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"nbconvert tag to export cell","tags":{"description":"Array of rendering names, e.g. `[light, dark]`"},"$id":"quarto-resource-cell-attributes-renderings"},"quarto-resource-cell-attributes-tags":{"_internalId":2934,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"jupyter","description":"Array of tags for notebook cell"},"documentation":"Whether to cache a code chunk.","$id":"quarto-resource-cell-attributes-tags"},"quarto-resource-cell-attributes-id":{"type":"string","description":"be a string","tags":{"engine":"jupyter","description":{"short":"Notebook cell identifier","long":"Notebook cell identifier. Note that if there is no cell `id` then `label` \nwill be used as the cell `id` if it is present.\nSee \nfor additional details on cell ids.\n"}},"documentation":"A prefix to be used to generate the paths of cache files","$id":"quarto-resource-cell-attributes-id"},"quarto-resource-cell-attributes-export":{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true,"tags":{"engine":"jupyter","description":"nbconvert tag to export cell","hidden":true},"documentation":"Variable names to be saved in the cache database.","$id":"quarto-resource-cell-attributes-export"},"quarto-resource-cell-cache-cache":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to cache a code chunk.","long":"Whether to cache a code chunk. When evaluating\ncode chunks for the second time, the cached chunks are skipped (unless they\nhave been modified), but the objects created in these chunks are loaded from\npreviously saved databases (`.rdb` and `.rdx` files), and these files are\nsaved when a chunk is evaluated for the first time, or when cached files are\nnot found (e.g., you may have removed them by hand). Note that the filename\nconsists of the chunk label with an MD5 digest of the R code and chunk\noptions of the code chunk, which means any changes in the chunk will produce\na different MD5 digest, and hence invalidate the cache.\n"}},"documentation":"Variables names that are not created from the current chunk","$id":"quarto-resource-cell-cache-cache"},"quarto-resource-cell-cache-cache-path":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"A prefix to be used to generate the paths of cache files","hidden":true},"documentation":"Whether to lazyLoad() or directly load()\nobjects","$id":"quarto-resource-cell-cache-cache-path"},"quarto-resource-cell-cache-cache-vars":{"_internalId":2948,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2947,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":{"short":"Variable names to be saved in the cache database.","long":"Variable names to be saved in\nthe cache database. By default, all variables created in the current chunks\nare identified and saved, but you may want to manually specify the variables\nto be saved, because the automatic detection of variables may not be robust,\nor you may want to save only a subset of variables.\n"}},"documentation":"Force rebuild of cache for chunk","$id":"quarto-resource-cell-cache-cache-vars"},"quarto-resource-cell-cache-cache-globals":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Variables names that are not created from the current chunk","long":"Variables names that are not created from the current chunk.\n\nThis option is mainly for `autodep: true` to work more precisely---a chunk\n`B` depends on chunk `A` when any of `B`'s global variables are `A`'s local \nvariables. In case the automatic detection of global variables in a chunk \nfails, you may manually specify the names of global variables via this option.\nIn addition, `cache-globals: false` means detecting all variables in a code\nchunk, no matter if they are global or local variables.\n"}},"documentation":"Prevent comment changes from invalidating the cache for a chunk","$id":"quarto-resource-cell-cache-cache-globals"},"quarto-resource-cell-cache-cache-lazy":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to `lazyLoad()` or directly `load()` objects","long":"Whether to `lazyLoad()` or directly `load()` objects. For very large objects, \nlazyloading may not work, so `cache-lazy: false` may be desirable (see\n[#572](https://github.com/yihui/knitr/issues/572)).\n"}},"documentation":"Explicitly specify cache dependencies for this chunk (one or more\nchunk labels)","$id":"quarto-resource-cell-cache-cache-lazy"},"quarto-resource-cell-cache-cache-rebuild":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Force rebuild of cache for chunk"},"documentation":"Detect cache dependencies automatically via usage of global\nvariables","$id":"quarto-resource-cell-cache-cache-rebuild"},"quarto-resource-cell-cache-cache-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Prevent comment changes from invalidating the cache for a chunk"},"documentation":"Title displayed in dashboard card header","$id":"quarto-resource-cell-cache-cache-comments"},"quarto-resource-cell-cache-dependson":{"_internalId":2971,"type":"anyOf","anyOf":[{"_internalId":2964,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2963,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":2970,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":2969,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":"Explicitly specify cache dependencies for this chunk (one or more chunk labels)\n"},"documentation":"Padding around dashboard card content (default 8px)","$id":"quarto-resource-cell-cache-dependson"},"quarto-resource-cell-cache-autodep":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Detect cache dependencies automatically via usage of global variables"},"documentation":"Make dashboard card content expandable (default:\ntrue)","$id":"quarto-resource-cell-cache-autodep"},"quarto-resource-cell-card-title":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"description":{"short":"Title displayed in dashboard card header"}},"documentation":"Percentage or absolute pixel width for dashboard card (defaults to\nevenly spaced across row)","$id":"quarto-resource-cell-card-title"},"quarto-resource-cell-card-padding":{"_internalId":2982,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Padding around dashboard card content (default `8px`)"}},"documentation":"Percentage or absolute pixel height for dashboard card (defaults to\nevenly spaced across column)","$id":"quarto-resource-cell-card-padding"},"quarto-resource-cell-card-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"Make dashboard card content expandable (default: `true`)"}},"documentation":"Context to execute cell within.","$id":"quarto-resource-cell-card-expandable"},"quarto-resource-cell-card-width":{"_internalId":2991,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel width for dashboard card (defaults to evenly spaced across row)"}},"documentation":"The type of dashboard element being produced by this code cell.","$id":"quarto-resource-cell-card-width"},"quarto-resource-cell-card-height":{"_internalId":2998,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel height for dashboard card (defaults to evenly spaced across column)"}},"documentation":"For code cells that produce a valuebox, the color of the\nvaluebox.s","$id":"quarto-resource-cell-card-height"},"quarto-resource-cell-card-context":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"engine":["jupyter"],"description":{"short":"Context to execute cell within."}},"documentation":"Evaluate code cells (if false just echos the code into\noutput).","$id":"quarto-resource-cell-card-context"},"quarto-resource-cell-card-content":{"_internalId":3003,"type":"enum","enum":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"description":"be one of: `valuebox`, `sidebar`, `toolbar`, `card-sidebar`, `card-toolbar`","completions":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"The type of dashboard element being produced by this code cell."}},"documentation":"Include cell source code in rendered output.","$id":"quarto-resource-cell-card-content"},"quarto-resource-cell-card-color":{"_internalId":3011,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3010,"type":"enum","enum":["primary","secondary","success","info","warning","danger","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","completions":["primary","secondary","success","info","warning","danger","light","dark"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","tags":{"formats":["dashboard"],"description":{"short":"For code cells that produce a valuebox, the color of the valuebox.s"}},"documentation":"Collapse code into an HTML <details> tag so the\nuser can display it on-demand.","$id":"quarto-resource-cell-card-color"},"quarto-resource-cell-codeoutput-eval":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Evaluate code cells (if `false` just echos the code into output).","long":"Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"}},"documentation":"Summary text to use for code blocks collapsed using\ncode-fold","$id":"quarto-resource-cell-codeoutput-eval"},"quarto-resource-cell-codeoutput-echo":{"_internalId":3021,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3020,"type":"enum","enum":["fenced"],"description":"be 'fenced'","completions":["fenced"],"exhaustiveCompletions":true}],"description":"be `true`, `false`, or `fenced`","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include cell source code in rendered output.","long":"Include cell source code in rendered output.\n\n- `true` (default in most formats): include source code in output\n- `false` (default in presentation formats like `beamer`, `revealjs`, and `pptx`): do not include source code in output\n- `fenced`: in addition to echoing, include the cell delimiter as part of the output.\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines\n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"}},"documentation":"Choose whether to scroll or wrap when code\nlines are too wide for their container.","$id":"quarto-resource-cell-codeoutput-echo"},"quarto-resource-cell-codeoutput-code-fold":{"_internalId":3029,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3028,"type":"enum","enum":["show"],"description":"be 'show'","completions":["show"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'show'","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Collapse code into an HTML `
` tag so the user can display it on-demand.","long":"Collapse code into an HTML `
` tag so the user can display it on-demand.\n\n- `true`: collapse code\n- `false` (default): do not collapse code\n- `show`: use the `
` tag, but show the expanded code initially.\n"}},"documentation":"Include line numbers in code block output (true or\nfalse)","$id":"quarto-resource-cell-codeoutput-code-fold"},"quarto-resource-cell-codeoutput-code-summary":{"type":"string","description":"be a string","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":"Summary text to use for code blocks collapsed using `code-fold`"},"documentation":"Unique label for code listing (used in cross references)","$id":"quarto-resource-cell-codeoutput-code-summary"},"quarto-resource-cell-codeoutput-code-overflow":{"_internalId":3034,"type":"enum","enum":["scroll","wrap"],"description":"be one of: `scroll`, `wrap`","completions":["scroll","wrap"],"exhaustiveCompletions":true,"tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Choose whether to `scroll` or `wrap` when code lines are too wide for their container.","long":"Choose how to handle code overflow, when code lines are too wide for their container. One of:\n\n- `scroll`\n- `wrap`\n"}},"documentation":"Caption for code listing","$id":"quarto-resource-cell-codeoutput-code-overflow"},"quarto-resource-cell-codeoutput-code-line-numbers":{"_internalId":3041,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be `true`, `false`, or a string specifying the lines to highlight","tags":{"doNotNarrowError":true,"contexts":["document-code"],"formats":["$html-all","ms","$pdf-all"],"description":{"short":"Include line numbers in code block output (`true` or `false`)","long":"Include line numbers in code block output (`true` or `false`).\n\nFor revealjs output only, you can also specify a string to highlight\nspecific lines (and/or animate between sets of highlighted lines).\n\n* Sets of lines are denoted with commas:\n * `3,4,5`\n * `1,10,12`\n* Ranges can be denoted with dashes and combined with commas:\n * `1-3,5` \n * `5-10,12,14`\n* Finally, animation steps are separated by `|`:\n * `1-3|1-3,5` first shows `1-3`, then `1-3,5`\n * `|5|5-10,12` first shows no numbering, then 5, then lines 5-10\n and 12\n"}},"documentation":"Whether to reformat R code.","$id":"quarto-resource-cell-codeoutput-code-line-numbers"},"quarto-resource-cell-codeoutput-lst-label":{"type":"string","description":"be a string","documentation":"List of options to pass to tidy handler","tags":{"description":"Unique label for code listing (used in cross references)"},"$id":"quarto-resource-cell-codeoutput-lst-label"},"quarto-resource-cell-codeoutput-lst-cap":{"type":"string","description":"be a string","documentation":"Collapse all the source and output blocks from one code chunk into a\nsingle block","tags":{"description":"Caption for code listing"},"$id":"quarto-resource-cell-codeoutput-lst-cap"},"quarto-resource-cell-codeoutput-tidy":{"_internalId":3053,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3052,"type":"enum","enum":["styler","formatR"],"description":"be one of: `styler`, `formatR`","completions":["styler","formatR"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `styler`, `formatR`","tags":{"engine":"knitr","description":"Whether to reformat R code."},"documentation":"Whether to add the prompt characters in R code.","$id":"quarto-resource-cell-codeoutput-tidy"},"quarto-resource-cell-codeoutput-tidy-opts":{"_internalId":3058,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"knitr","description":"List of options to pass to `tidy` handler"},"documentation":"Whether to syntax highlight the source code","$id":"quarto-resource-cell-codeoutput-tidy-opts"},"quarto-resource-cell-codeoutput-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Collapse all the source and output blocks from one code chunk into a single block\n"},"documentation":"Class name(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-collapse"},"quarto-resource-cell-codeoutput-prompt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to add the prompt characters in R code.","long":"Whether to add the prompt characters in R\ncode. See `prompt` and `continue` on the help page `?base::options`. Note\nthat adding prompts can make it difficult for readers to copy R code from\nthe output, so `prompt: false` may be a better choice. This option may not\nwork well when the `engine` is not `R`\n([#1274](https://github.com/yihui/knitr/issues/1274)).\n"}},"documentation":"Attribute(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-prompt"},"quarto-resource-cell-codeoutput-highlight":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Whether to syntax highlight the source code","hidden":true},"documentation":"Default width for figures","$id":"quarto-resource-cell-codeoutput-highlight"},"quarto-resource-cell-codeoutput-class-source":{"_internalId":3070,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3069,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for source code blocks"},"documentation":"Default height for figures","$id":"quarto-resource-cell-codeoutput-class-source"},"quarto-resource-cell-codeoutput-attr-source":{"_internalId":3076,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3075,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for source code blocks"},"documentation":"Figure caption","$id":"quarto-resource-cell-codeoutput-attr-source"},"quarto-resource-cell-figure-fig-width":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default width for figures"},"documentation":"Figure subcaptions","$id":"quarto-resource-cell-figure-fig-width"},"quarto-resource-cell-figure-fig-height":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default height for figures"},"documentation":"Hyperlink target for the figure","$id":"quarto-resource-cell-figure-fig-height"},"quarto-resource-cell-figure-fig-cap":{"_internalId":3086,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3085,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Figure caption"},"documentation":"Figure horizontal alignment (default, left,\nright, or center)","$id":"quarto-resource-cell-figure-fig-cap"},"quarto-resource-cell-figure-fig-subcap":{"_internalId":3098,"type":"anyOf","anyOf":[{"_internalId":3091,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3097,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3096,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Alternative text to be used in the alt attribute of HTML\nimages.","tags":{"description":"Figure subcaptions"},"$id":"quarto-resource-cell-figure-fig-subcap"},"quarto-resource-cell-figure-fig-link":{"_internalId":3104,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3103,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Hyperlink target for the figure"},"documentation":"LaTeX environment for figure output","$id":"quarto-resource-cell-figure-fig-link"},"quarto-resource-cell-figure-fig-align":{"_internalId":3111,"type":"anyOf","anyOf":[{"_internalId":3109,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3110,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3109,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `default`, `left`, `right`, `center`, an array of values, where each element must be one of: `default`, `left`, `right`, `center`","tags":{"complete-from":["anyOf",0],"contexts":["document-figures"],"formats":["docx","rtf","$odt-all","$pdf-all","$html-all"],"description":"Figure horizontal alignment (`default`, `left`, `right`, or `center`)"},"documentation":"LaTeX figure position arrangement to be used in\n\\begin{figure}[].","$id":"quarto-resource-cell-figure-fig-align"},"quarto-resource-cell-figure-fig-alt":{"_internalId":3117,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3116,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Alternative text to be used in the `alt` attribute of HTML images.\n"},"documentation":"A short caption (only used in LaTeX output)","$id":"quarto-resource-cell-figure-fig-alt"},"quarto-resource-cell-figure-fig-env":{"_internalId":3123,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3122,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"contexts":["document-figures"],"description":"LaTeX environment for figure output"},"documentation":"Default output format for figures (retina,\npng, jpeg, svg, or\npdf)","$id":"quarto-resource-cell-figure-fig-env"},"quarto-resource-cell-figure-fig-pos":{"_internalId":3135,"type":"anyOf","anyOf":[{"_internalId":3131,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3130,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":3134,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, 'false'","tags":{"formats":["$pdf-all"],"contexts":["document-figures"],"description":{"short":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.","long":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.\n\nComputational figure output that is accompanied by the code \nthat produced it is given a default value of `fig-pos=\"H\"` (so \nthat the code and figure are not inordinately separated).\n\nIf `fig-pos` is `false`, then we don't use any figure position\nspecifier, which is sometimes necessary with custom figure\nenvironments (such as `sidewaysfigure`).\n"}},"documentation":"Default DPI for figures","$id":"quarto-resource-cell-figure-fig-pos"},"quarto-resource-cell-figure-fig-scap":{"_internalId":3141,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3140,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"A short caption (only used in LaTeX output)","long":"A short caption (only used in LaTeX output). A short caption is inserted in `\\caption[]`, \nand usually displayed in the “List of Figures” of a PDF document.\n"}},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width. When\nfig-asp is specified, the height of a plot (the option\nfig-height) is calculated from\nfig-width * fig-asp.","$id":"quarto-resource-cell-figure-fig-scap"},"quarto-resource-cell-figure-fig-format":{"_internalId":3144,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Default output format for figures (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"documentation":"Width of plot in the output document","$id":"quarto-resource-cell-figure-fig-format"},"quarto-resource-cell-figure-fig-dpi":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default DPI for figures"},"documentation":"Height of plot in the output document","$id":"quarto-resource-cell-figure-fig-dpi"},"quarto-resource-cell-figure-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified, the height of a plot \n(the option `fig-height`) is calculated from `fig-width * fig-asp`.\n"},"documentation":"How plots in chunks should be kept.","$id":"quarto-resource-cell-figure-fig-asp"},"quarto-resource-cell-figure-out-width":{"_internalId":3157,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":[],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"engine":"knitr","description":{"short":"Width of plot in the output document","long":"Width of the plot in the output document, which can be different from its physical `fig-width`,\ni.e., plots can be scaled in the output document.\nWhen used without a unit, the unit is assumed to be pixels. However, any of the following unit \nidentifiers can be used: px, cm, mm, in, inch and %, for example, `3in`, `8cm`, `300px` or `50%`.\n"}},"documentation":"How to show/arrange the plots","$id":"quarto-resource-cell-figure-out-width"},"quarto-resource-cell-figure-out-height":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Height of plot in the output document","long":"Height of the plot in the output document, which can be different from its physical `fig-height`, \ni.e., plots can be scaled in the output document.\nDepending on the output format, this option can take special values.\nFor example, for LaTeX output, it can be `3in`, or `8cm`;\nfor HTML, it can be `300px`.\n"}},"documentation":"Additional raw LaTeX or HTML options to be applied to figures","$id":"quarto-resource-cell-figure-out-height"},"quarto-resource-cell-figure-fig-keep":{"_internalId":3171,"type":"anyOf","anyOf":[{"_internalId":3164,"type":"enum","enum":["high","none","all","first","last"],"description":"be one of: `high`, `none`, `all`, `first`, `last`","completions":["high","none","all","first","last"],"exhaustiveCompletions":true},{"_internalId":3170,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3169,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: one of: `high`, `none`, `all`, `first`, `last`, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":{"short":"How plots in chunks should be kept.","long":"How plots in chunks should be kept. Possible values are as follows:\n\n- `high`: Only keep high-level plots (merge low-level changes into\n high-level plots).\n- `none`: Discard all plots.\n- `all`: Keep all plots (low-level plot changes may produce new plots).\n- `first`: Only keep the first plot.\n- `last`: Only keep the last plot.\n- A numeric vector: In this case, the values are indices of (low-level) plots\n to keep.\n"}},"documentation":"Externalize tikz graphics (pre-compile to PDF)","$id":"quarto-resource-cell-figure-fig-keep"},"quarto-resource-cell-figure-fig-show":{"_internalId":3174,"type":"enum","enum":["asis","hold","animate","hide"],"description":"be one of: `asis`, `hold`, `animate`, `hide`","completions":["asis","hold","animate","hide"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to show/arrange the plots","long":"How to show/arrange the plots. Possible values are as follows:\n\n- `asis`: Show plots exactly in places where they were generated (as if\n the code were run in an R terminal).\n- `hold`: Hold all plots and output them at the end of a code chunk.\n- `animate`: Concatenate all plots into an animation if there are multiple\n plots in a chunk.\n- `hide`: Generate plot files but hide them in the output document.\n"}},"documentation":"sanitize tikz graphics (escape special LaTeX characters).","$id":"quarto-resource-cell-figure-fig-show"},"quarto-resource-cell-figure-out-extra":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"Additional raw LaTeX or HTML options to be applied to figures"},"documentation":"Time interval (number of seconds) between animation frames.","$id":"quarto-resource-cell-figure-out-extra"},"quarto-resource-cell-figure-external":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"Externalize tikz graphics (pre-compile to PDF)"},"documentation":"Extra options for animations","$id":"quarto-resource-cell-figure-external"},"quarto-resource-cell-figure-sanitize":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"sanitize tikz graphics (escape special LaTeX characters)."},"documentation":"Hook function to create animations in HTML output","$id":"quarto-resource-cell-figure-sanitize"},"quarto-resource-cell-figure-interval":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Time interval (number of seconds) between animation frames."},"documentation":"One or more paths of child documents to be knitted and input into the\nmain document.","$id":"quarto-resource-cell-figure-interval"},"quarto-resource-cell-figure-aniopts":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Extra options for animations","long":"Extra options for animations; see the documentation of the LaTeX [**animate**\npackage.](http://ctan.org/pkg/animate)\n"}},"documentation":"File containing code to execute for this chunk","$id":"quarto-resource-cell-figure-aniopts"},"quarto-resource-cell-figure-animation-hook":{"type":"string","description":"be a string","completions":["ffmpeg","gifski"],"tags":{"engine":"knitr","description":{"short":"Hook function to create animations in HTML output","long":"Hook function to create animations in HTML output. \n\nThe default hook (`ffmpeg`) uses FFmpeg to convert images to a WebM video.\n\nAnother hook function is `gifski` based on the\n[**gifski**](https://cran.r-project.org/package=gifski) package to\ncreate GIF animations.\n"}},"documentation":"String containing code to execute for this chunk","$id":"quarto-resource-cell-figure-animation-hook"},"quarto-resource-cell-include-child":{"_internalId":3192,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3191,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"One or more paths of child documents to be knitted and input into the main document."},"documentation":"Include chunk when extracting code with\nknitr::purl()","$id":"quarto-resource-cell-include-child"},"quarto-resource-cell-include-file":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"File containing code to execute for this chunk"},"documentation":"2d-array of widths where the first dimension specifies columns and\nthe second rows.","$id":"quarto-resource-cell-include-file"},"quarto-resource-cell-include-code":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"String containing code to execute for this chunk"},"documentation":"Layout output blocks into columns","$id":"quarto-resource-cell-include-code"},"quarto-resource-cell-include-purl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Include chunk when extracting code with `knitr::purl()`"},"documentation":"Layout output blocks into rows","$id":"quarto-resource-cell-include-purl"},"quarto-resource-cell-layout-layout":{"_internalId":3211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3210,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a number","items":{"_internalId":3209,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}}],"description":"be at least one of: a string, an array of values, where each element must be an array of values, where each element must be a number","documentation":"Horizontal alignment for layout content (default,\nleft, right, or center)","tags":{"description":{"short":"2d-array of widths where the first dimension specifies columns and the second rows.","long":"2d-array of widths where the first dimension specifies columns and the second rows.\n\nFor example, to layout the first two output blocks side-by-side on the top with the third\nblock spanning the full width below, use `[[3,3], [1]]`.\n\nUse negative values to create margin. For example, to create space between the \noutput blocks in the top row of the previous example, use `[[3,-1, 3], [1]]`.\n"}},"$id":"quarto-resource-cell-layout-layout"},"quarto-resource-cell-layout-layout-ncol":{"type":"number","description":"be a number","documentation":"Vertical alignment for layout content (default,\ntop, center, or bottom)","tags":{"description":"Layout output blocks into columns"},"$id":"quarto-resource-cell-layout-layout-ncol"},"quarto-resource-cell-layout-layout-nrow":{"type":"number","description":"be a number","documentation":"Page column for output","tags":{"description":"Layout output blocks into rows"},"$id":"quarto-resource-cell-layout-layout-nrow"},"quarto-resource-cell-layout-layout-align":{"_internalId":3218,"type":"enum","enum":["default","left","center","right"],"description":"be one of: `default`, `left`, `center`, `right`","completions":["default","left","center","right"],"exhaustiveCompletions":true,"documentation":"Page column for figure output","tags":{"description":"Horizontal alignment for layout content (`default`, `left`, `right`, or `center`)"},"$id":"quarto-resource-cell-layout-layout-align"},"quarto-resource-cell-layout-layout-valign":{"_internalId":3221,"type":"enum","enum":["default","top","center","bottom"],"description":"be one of: `default`, `top`, `center`, `bottom`","completions":["default","top","center","bottom"],"exhaustiveCompletions":true,"documentation":"Page column for table output","tags":{"description":"Vertical alignment for layout content (`default`, `top`, `center`, or `bottom`)"},"$id":"quarto-resource-cell-layout-layout-valign"},"quarto-resource-cell-pagelayout-column":{"_internalId":3224,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Where to place figure and table captions (top,\nbottom, or margin)","tags":{"description":{"short":"Page column for output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for output"}},"$id":"quarto-resource-cell-pagelayout-column"},"quarto-resource-cell-pagelayout-fig-column":{"_internalId":3227,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Where to place figure captions (top,\nbottom, or margin)","tags":{"description":{"short":"Page column for figure output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for figure output"}},"$id":"quarto-resource-cell-pagelayout-fig-column"},"quarto-resource-cell-pagelayout-tbl-column":{"_internalId":3230,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Where to place table captions (top, bottom,\nor margin)","tags":{"description":{"short":"Page column for table output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for table output"}},"$id":"quarto-resource-cell-pagelayout-tbl-column"},"quarto-resource-cell-pagelayout-cap-location":{"_internalId":3233,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure and table captions (`top`, `bottom`, or `margin`)"},"documentation":"Table caption","$id":"quarto-resource-cell-pagelayout-cap-location"},"quarto-resource-cell-pagelayout-fig-cap-location":{"_internalId":3236,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-figures"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure captions (`top`, `bottom`, or `margin`)"},"documentation":"Table subcaptions","$id":"quarto-resource-cell-pagelayout-fig-cap-location"},"quarto-resource-cell-pagelayout-tbl-cap-location":{"_internalId":3239,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-tables"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place table captions (`top`, `bottom`, or `margin`)"},"documentation":"Apply explicit table column widths","$id":"quarto-resource-cell-pagelayout-tbl-cap-location"},"quarto-resource-cell-table-tbl-cap":{"_internalId":3245,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3244,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Table caption"},"documentation":"If none, do not process raw HTML table in cell output\nand leave it as-is","$id":"quarto-resource-cell-table-tbl-cap"},"quarto-resource-cell-table-tbl-subcap":{"_internalId":3257,"type":"anyOf","anyOf":[{"_internalId":3250,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3256,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3255,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Include the results of executing the code in the output (specify\nasis to treat output as raw markdown with no enclosing\ncontainers).","tags":{"description":"Table subcaptions"},"$id":"quarto-resource-cell-table-tbl-subcap"},"quarto-resource-cell-table-tbl-colwidths":{"_internalId":3270,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3264,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3269,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: `true` or `false`, 'auto', an array of values, where each element must be a number","tags":{"contexts":["document-tables"],"engine":["knitr","jupyter"],"formats":["$pdf-all","$html-all"],"description":{"short":"Apply explicit table column widths","long":"Apply explicit table column widths for markdown grid tables and pipe\ntables that are more than `columns` characters wide (72 by default). \n\nSome formats (e.g. HTML) do an excellent job automatically sizing\ntable columns and so don't benefit much from column width specifications.\nOther formats (e.g. LaTeX) require table column sizes in order to \ncorrectly flow longer cell content (this is a major reason why tables \n> 72 columns wide are assigned explicit widths by Pandoc).\n\nThis can be specified as:\n\n- `auto`: Apply markdown table column widths except when there is a\n hyperlink in the table (which tends to throw off automatic\n calculation of column widths based on the markdown text width of cells).\n (`auto` is the default for HTML output formats)\n\n- `true`: Always apply markdown table widths (`true` is the default\n for all non-HTML formats)\n\n- `false`: Never apply markdown table widths.\n\n- An array of numbers (e.g. `[40, 30, 30]`): Array of explicit width percentages.\n"}},"documentation":"Include warnings in rendered output.","$id":"quarto-resource-cell-table-tbl-colwidths"},"quarto-resource-cell-table-html-table-processing":{"_internalId":3273,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"Include errors in the output (note that this implies that errors\nexecuting code will not halt processing of the document).","tags":{"description":"If `none`, do not process raw HTML table in cell output and leave it as-is"},"$id":"quarto-resource-cell-table-html-table-processing"},"quarto-resource-cell-textoutput-output":{"_internalId":3285,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3280,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3283,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, 'asis', a string, an object","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include the results of executing the code in the output (specify `asis` to\ntreat output as raw markdown with no enclosing containers).\n","long":"Include the results of executing the code in the output. Possible values:\n\n- `true`: Include results.\n- `false`: Do not include results.\n- `asis`: Treat output as raw markdown with no enclosing containers.\n"}},"documentation":"Catch all for preventing any output (code or results) from being\nincluded in output.","$id":"quarto-resource-cell-textoutput-output"},"quarto-resource-cell-textoutput-warning":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include warnings in rendered output."},"documentation":"Panel type for cell output (tabset, input,\nsidebar, fill, center)","$id":"quarto-resource-cell-textoutput-warning"},"quarto-resource-cell-textoutput-error":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include errors in the output (note that this implies that errors executing code\nwill not halt processing of the document).\n"},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-cell-textoutput-error"},"quarto-resource-cell-textoutput-include":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Catch all for preventing any output (code or results) from being included in output.\n"},"documentation":"Include messages in rendered output.","$id":"quarto-resource-cell-textoutput-include"},"quarto-resource-cell-textoutput-panel":{"_internalId":3294,"type":"enum","enum":["tabset","input","sidebar","fill","center"],"description":"be one of: `tabset`, `input`, `sidebar`, `fill`, `center`","completions":["tabset","input","sidebar","fill","center"],"exhaustiveCompletions":true,"documentation":"How to display text results","tags":{"description":"Panel type for cell output (`tabset`, `input`, `sidebar`, `fill`, `center`)"},"$id":"quarto-resource-cell-textoutput-panel"},"quarto-resource-cell-textoutput-output-location":{"_internalId":3297,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Prefix to be added before each line of text output.","$id":"quarto-resource-cell-textoutput-output-location"},"quarto-resource-cell-textoutput-message":{"_internalId":3300,"type":"enum","enum":[true,false,"NA"],"description":"be one of: `true`, `false`, `NA`","completions":["true","false","NA"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Include messages in rendered output.","long":"Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"}},"documentation":"Class name(s) for text/console output","$id":"quarto-resource-cell-textoutput-message"},"quarto-resource-cell-textoutput-results":{"_internalId":3303,"type":"enum","enum":["markup","asis","hold","hide",false],"description":"be one of: `markup`, `asis`, `hold`, `hide`, `false`","completions":["markup","asis","hold","hide","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to display text results","long":"How to display text results. Note that this option only applies to normal text output (not warnings,\nmessages, or errors). The possible values are as follows:\n\n- `markup`: Mark up text output with the appropriate environments\n depending on the output format. For example, if the text\n output is a character string `\"[1] 1 2 3\"`, the actual output that\n **knitr** produces will be:\n\n ```` md\n ```\n [1] 1 2 3\n ```\n ````\n\n In this case, `results: markup` means to put the text output in fenced\n code blocks (```` ``` ````).\n\n- `asis`: Write text output as-is, i.e., write the raw text results\n directly into the output document without any markups.\n\n ```` md\n ```{r}\n #| results: asis\n cat(\"I'm raw **Markdown** content.\\n\")\n ```\n ````\n\n- `hold`: Hold all pieces of text output in a chunk and flush them to the\n end of the chunk.\n\n- `hide` (or `false`): Hide text output.\n"}},"documentation":"Attribute(s) for text/console output","$id":"quarto-resource-cell-textoutput-results"},"quarto-resource-cell-textoutput-comment":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Prefix to be added before each line of text output.","long":"Prefix to be added before each line of text output.\nBy default, the text output is commented out by `##`, so if\nreaders want to copy and run the source code from the output document, they\ncan select and copy everything from the chunk, since the text output is\nmasked in comments (and will be ignored when running the copied text). Set\n`comment: ''` to remove the default `##`.\n"}},"documentation":"Class name(s) for warning output","$id":"quarto-resource-cell-textoutput-comment"},"quarto-resource-cell-textoutput-class-output":{"_internalId":3311,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3310,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for text/console output"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-class-output"},"quarto-resource-cell-textoutput-attr-output":{"_internalId":3317,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3316,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for text/console output"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-attr-output"},"quarto-resource-cell-textoutput-class-warning":{"_internalId":3323,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3322,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for warning output"},"documentation":"Attribute(s) for message output","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_internalId":3329,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3328,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for warning output"},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_internalId":3335,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3334,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for message output"},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_internalId":3341,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3340,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for message output"},"documentation":"Specifies that the page is an ‘about’ page and which template to use\nwhen laying out the page.","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_internalId":3347,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3346,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for error output"},"documentation":"Document title","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_internalId":3353,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3352,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for error output"},"documentation":"Identifies the subtitle of the document.","$id":"quarto-resource-cell-textoutput-attr-error"},"quarto-resource-document-about-about":{"_internalId":3362,"type":"anyOf","anyOf":[{"_internalId":3358,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"_internalId":3361,"type":"ref","$ref":"website-about","description":"be website-about"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, website-about","tags":{"formats":["$html-doc"],"description":{"short":"Specifies that the page is an 'about' page and which template to use when laying out the page.","long":"Specifies that the page is an 'about' page and which template to use when laying out the page.\n\nThe allowed values are either:\n\n- one of the possible template values (`jolla`, `trestles`, `solana`, `marquee`, or `broadside`))\n- an object describing the 'about' page in more detail. See [About Pages](https://quarto.org/docs/websites/website-about.html) for more.\n"}},"documentation":"Document date","$id":"quarto-resource-document-about-about"},"quarto-resource-document-attributes-title":{"type":"string","description":"be a string","documentation":"Date format for the document","tags":{"description":"Document title"},"$id":"quarto-resource-document-attributes-title"},"quarto-resource-document-attributes-subtitle":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-all","context","muse","odt","docx"],"description":"Identifies the subtitle of the document."},"documentation":"Document date modified","$id":"quarto-resource-document-attributes-subtitle"},"quarto-resource-document-attributes-date":{"_internalId":3369,"type":"ref","$ref":"date","description":"be date","documentation":"Author or authors of the document","tags":{"description":"Document date"},"$id":"quarto-resource-document-attributes-date"},"quarto-resource-document-attributes-date-format":{"_internalId":3372,"type":"ref","$ref":"date-format","description":"be date-format","documentation":"The list of organizations with which contributors are affiliated.","tags":{"description":"Date format for the document"},"$id":"quarto-resource-document-attributes-date-format"},"quarto-resource-document-attributes-date-modified":{"_internalId":3375,"type":"ref","$ref":"date","description":"be date","tags":{"formats":["$html-doc"],"description":"Document date modified"},"documentation":"Licensing and copyright information.","$id":"quarto-resource-document-attributes-date-modified"},"quarto-resource-document-attributes-author":{"_internalId":3386,"type":"anyOf","anyOf":[{"_internalId":3384,"type":"anyOf","anyOf":[{"_internalId":3380,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3385,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3384,"type":"anyOf","anyOf":[{"_internalId":3380,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"description":"Author or authors of the document"},"documentation":"Information concerning the article that identifies or describes\nit.","$id":"quarto-resource-document-attributes-author"},"quarto-resource-document-attributes-affiliation":{"_internalId":3397,"type":"anyOf","anyOf":[{"_internalId":3395,"type":"anyOf","anyOf":[{"_internalId":3391,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3396,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3395,"type":"anyOf","anyOf":[{"_internalId":3391,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$jats-all"],"description":{"short":"The list of organizations with which contributors are affiliated.","long":"The list of organizations with which contributors are\naffiliated. Each institution is added as an [``] element to\nthe author's contrib-group. See the Pandoc [JATS documentation](https://pandoc.org/jats.html) \nfor details on `affiliation` fields.\n"}},"documentation":"Information on the journal in which the article is published.","$id":"quarto-resource-document-attributes-affiliation"},"quarto-resource-document-attributes-copyright":{"_internalId":3398,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Licensing and copyright information.","long":"Licensing and copyright information. This information is\nrendered via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/permissions.html) element.\nThe variables `type`, `link`, and `text` should always be used\ntogether. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)\nfor details on `copyright` fields.\n"}},"documentation":"Author affiliations for the presentation.","$id":"quarto-resource-document-attributes-copyright"},"quarto-resource-document-attributes-article":{"_internalId":3400,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information concerning the article that identifies or describes it.","long":"Information concerning the article that identifies or describes\nit. The key-value pairs within this map are typically used\nwithin the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html) element.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `article` fields.\n"}},"documentation":"Summary of document","$id":"quarto-resource-document-attributes-article"},"quarto-resource-document-attributes-journal":{"_internalId":3402,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information on the journal in which the article is published.","long":"Information on the journal in which the article is published.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `journal` fields.\n"}},"documentation":"Title used to label document abstract","$id":"quarto-resource-document-attributes-journal"},"quarto-resource-document-attributes-institute":{"_internalId":3414,"type":"anyOf","anyOf":[{"_internalId":3412,"type":"anyOf","anyOf":[{"_internalId":3408,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3413,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3412,"type":"anyOf","anyOf":[{"_internalId":3408,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-pres","beamer"],"description":"Author affiliations for the presentation."},"documentation":"Additional notes concerning the whole article. Added to the article’s\nfrontmatter via the <notes>\nelement.","$id":"quarto-resource-document-attributes-institute"},"quarto-resource-document-attributes-abstract":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-doc","$epub-all","$asciidoc-all","$jats-all","context","ms","odt","docx"],"description":"Summary of document"},"documentation":"List of keywords. Items are used as contents of the <kwd>\nelement; the elements are grouped in a <kwd-group>\nwith the kwd-group-type\nvalue author.","$id":"quarto-resource-document-attributes-abstract"},"quarto-resource-document-attributes-abstract-title":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","$epub-all","docx","typst"],"description":"Title used to label document abstract"},"documentation":"Displays the document Digital Object Identifier in the header.","$id":"quarto-resource-document-attributes-abstract-title"},"quarto-resource-document-attributes-notes":{"type":"string","description":"be a string","tags":{"formats":["$jats-all"],"description":"Additional notes concerning the whole article. Added to the\narticle's frontmatter via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/notes.html) element.\n"},"documentation":"The contents of an acknowledgments footnote after the document\ntitle.","$id":"quarto-resource-document-attributes-notes"},"quarto-resource-document-attributes-tags":{"_internalId":3425,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$jats-all"],"description":"List of keywords. Items are used as contents of the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd.html) element; the elements are grouped in a [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd-group.html) with the [`kwd-group-type`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/attribute/kwd-group-type.html) value `author`."},"documentation":"Order for document when included in a website automatic sidebar\nmenu.","$id":"quarto-resource-document-attributes-tags"},"quarto-resource-document-attributes-doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Displays the document Digital Object Identifier in the header."},"documentation":"Citation information for the document itself.","$id":"quarto-resource-document-attributes-doi"},"quarto-resource-document-attributes-thanks":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The contents of an acknowledgments footnote after the document title."},"documentation":"Enable a code copy icon for code blocks.","$id":"quarto-resource-document-attributes-thanks"},"quarto-resource-document-attributes-order":{"type":"number","description":"be a number","documentation":"Enables hyper-linking of functions within code blocks to their online\ndocumentation.","tags":{"description":"Order for document when included in a website automatic sidebar menu."},"$id":"quarto-resource-document-attributes-order"},"quarto-resource-document-citation-citation":{"_internalId":3439,"type":"anyOf","anyOf":[{"_internalId":3436,"type":"ref","$ref":"citation-item","description":"be citation-item"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: citation-item, `true` or `false`","documentation":"The style to use when displaying code annotations","tags":{"description":{"short":"Citation information for the document itself.","long":"Citation information for the document itself specified as [CSL](https://docs.citationstyles.org/en/stable/specification.html) \nYAML in the document front matter.\n\nFor more on supported options, see [Citation Metadata](https://quarto.org/docs/reference/metadata/citation.html).\n"}},"$id":"quarto-resource-document-citation-citation"},"quarto-resource-document-code-code-copy":{"_internalId":3447,"type":"anyOf","anyOf":[{"_internalId":3444,"type":"enum","enum":["hover"],"description":"be 'hover'","completions":["hover"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'hover', `true` or `false`","tags":{"formats":["$html-all"],"description":{"short":"Enable a code copy icon for code blocks.","long":"Enable a code copy icon for code blocks. \n\n- `true`: Always show the icon\n- `false`: Never show the icon\n- `hover` (default): Show the icon when the mouse hovers over the code block\n"}},"documentation":"Include a code tools menu (for hiding and showing code).","$id":"quarto-resource-document-code-code-copy"},"quarto-resource-document-code-code-link":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$html-files"],"description":{"short":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n","long":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n\nCode linking is currently implemented only for the knitr engine \n(via the [downlit](https://downlit.r-lib.org/) package). \nA limitation of downlit currently prevents code linking \nif `code-line-numbers` is also `true`.\n"}},"documentation":"Show a thick left border on code blocks.","$id":"quarto-resource-document-code-code-link"},"quarto-resource-document-code-code-annotations":{"_internalId":3457,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3456,"type":"enum","enum":["hover","select","below","none"],"description":"be one of: `hover`, `select`, `below`, `none`","completions":["hover","select","below","none"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `hover`, `select`, `below`, `none`","documentation":"Show a background color for code blocks.","tags":{"description":{"short":"The style to use when displaying code annotations","long":"The style to use when displaying code annotations. Set this value\nto false to hide code annotations.\n"}},"$id":"quarto-resource-document-code-code-annotations"},"quarto-resource-document-code-code-tools":{"_internalId":3476,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3475,"type":"object","description":"be an object","properties":{"source":{"_internalId":3470,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string"},"toggle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"caption":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-doc"],"description":{"short":"Include a code tools menu (for hiding and showing code).","long":"Include a code tools menu (for hiding and showing code).\nUse `true` or `false` to enable or disable the standard code \ntools menu. Specify sub-properties `source`, `toggle`, and\n`caption` to customize the behavior and appearance of code tools.\n"}},"documentation":"Specifies the coloring style to be used in highlighted source\ncode.","$id":"quarto-resource-document-code-code-tools"},"quarto-resource-document-code-code-block-border-left":{"_internalId":3483,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a thick left border on code blocks.","long":"Specifies to apply a left border on code blocks. Provide a hex color to specify that the border is\nenabled as well as the color of the border.\n"}},"documentation":"KDE language syntax definition file (XML)","$id":"quarto-resource-document-code-code-block-border-left"},"quarto-resource-document-code-code-block-bg":{"_internalId":3490,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a background color for code blocks.","long":"Specifies to apply a background color on code blocks. Provide a hex color to specify that the background color is\nenabled as well as the color of the background.\n"}},"documentation":"KDE language syntax definition files (XML)","$id":"quarto-resource-document-code-code-block-bg"},"quarto-resource-document-code-highlight-style":{"_internalId":3502,"type":"anyOf","anyOf":[{"_internalId":3499,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string","completions":["a11y","arrow","atom-one","ayu","ayu-mirage","breeze","breezedark","dracula","espresso","github","gruvbox","haddock","kate","monochrome","monokai","none","nord","oblivion","printing","pygments","radical","solarized","tango","vim-dark","zenburn"]}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":{"short":"Specifies the coloring style to be used in highlighted source code.","long":"Specifies the coloring style to be used in highlighted source code.\n\nInstead of a *STYLE* name, a JSON file with extension\n` .theme` may be supplied. This will be parsed as a KDE\nsyntax highlighting theme and (if valid) used as the\nhighlighting style.\n"}},"documentation":"Use the listings package for LaTeX code blocks.","$id":"quarto-resource-document-code-highlight-style"},"quarto-resource-document-code-syntax-definition":{"type":"string","description":"be a string","tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"KDE language syntax definition file (XML)","hidden":true},"documentation":"Specify classes to use for all indented code blocks","$id":"quarto-resource-document-code-syntax-definition"},"quarto-resource-document-code-syntax-definitions":{"_internalId":3509,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"KDE language syntax definition files (XML)"},"documentation":"Sets the CSS color property.","$id":"quarto-resource-document-code-syntax-definitions"},"quarto-resource-document-code-listings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Use the listings package for LaTeX code blocks.","long":"Use the `listings` package for LaTeX code blocks. The package\ndoes not support multi-byte encoding for source code. To handle UTF-8\nyou would need to use a custom template. This issue is fully\ndocumented here: [Encoding issue with the listings package](https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings#Encoding_issue)\n"}},"documentation":"Sets the color of hyperlinks in the document.","$id":"quarto-resource-document-code-listings"},"quarto-resource-document-code-indented-code-classes":{"_internalId":3516,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"Specify classes to use for all indented code blocks"},"documentation":"Sets the CSS background-color property on code elements\nand adds extra padding.","$id":"quarto-resource-document-code-indented-code-classes"},"quarto-resource-document-colors-fontcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `color` property."},"documentation":"Sets the CSS background-color property on the html\nelement.","$id":"quarto-resource-document-colors-fontcolor"},"quarto-resource-document-colors-linkcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the color of hyperlinks in the document.","long":"For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n"}},"documentation":"The color used for external links using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-linkcolor"},"quarto-resource-document-colors-monobackgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["html","html4","html5","slidy","slideous","s5","dzslides"],"description":"Sets the CSS `background-color` property on code elements and adds extra padding."},"documentation":"The color used for citation links using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-monobackgroundcolor"},"quarto-resource-document-colors-backgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `background-color` property on the html element.\n"},"documentation":"The color used for linked URLs using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-backgroundcolor"},"quarto-resource-document-colors-filecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for external links using color options allowed by `xcolor`","long":"The color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for links in the Table of Contents using color options\nallowed by xcolor","$id":"quarto-resource-document-colors-filecolor"},"quarto-resource-document-colors-citecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for citation links using color options allowed by `xcolor`","long":"The color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"Add color to link text, automatically enabled if any of\nlinkcolor, filecolor, citecolor,\nurlcolor, or toccolor are set.","$id":"quarto-resource-document-colors-citecolor"},"quarto-resource-document-colors-urlcolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for linked URLs using color options allowed by `xcolor`","long":"The color used for linked URLs using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"Color for links to other content within the document.","$id":"quarto-resource-document-colors-urlcolor"},"quarto-resource-document-colors-toccolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for links in the Table of Contents using color options allowed by `xcolor`","long":"The color used for links in the Table of Contents using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"Configuration for document commenting.","$id":"quarto-resource-document-colors-toccolor"},"quarto-resource-document-colors-colorlinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Add color to link text, automatically enabled if any of \n`linkcolor`, `filecolor`, `citecolor`, `urlcolor`, or `toccolor` are set.\n"},"documentation":"Configuration for cross-reference labels and prefixes.","$id":"quarto-resource-document-colors-colorlinks"},"quarto-resource-document-colors-contrastcolor":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Color for links to other content within the document.","long":"Color for links to other content within the document. \n\nSee [ConTeXt Color](https://wiki.contextgarden.net/Color) for additional information.\n"}},"documentation":"A custom cross reference type. See Custom\nfor more details.","$id":"quarto-resource-document-colors-contrastcolor"},"quarto-resource-document-comments-comments":{"_internalId":3539,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration","tags":{"formats":["$html-files"],"description":"Configuration for document commenting."},"documentation":"The kind of cross reference (currently only “float” is\nsupported).","$id":"quarto-resource-document-comments-comments"},"quarto-resource-document-crossref-crossref":{"_internalId":3685,"type":"anyOf","anyOf":[{"_internalId":3544,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3684,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3572,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3571,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3553,"type":"enum","enum":["float"],"description":"be 'float'","completions":["float"],"exhaustiveCompletions":true,"tags":{"description":"The kind of cross reference (currently only \"float\" is supported)."},"documentation":"If false, use no space between crossref prefixes and numbering."},"reference-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered references when referencing this type."},"documentation":"The key used to prefix reference labels of this type, such as “fig”,\n“tbl”, “lst”, etc."},"caption-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered captions when referencing this type. If omitted, the field `reference-prefix` is used."},"documentation":"In LaTeX output, the name of the custom environment to be used."},"space-before-numbering":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, use no space between crossref prefixes and numbering."},"documentation":"In LaTeX output, the extension of the auxiliary file used by LaTeX to\ncollect names to be used in the custom “list of” command. If omitted, a\nstring with prefix lo and suffix with the value of\nref-type is used."},"key":{"type":"string","description":"be a string","tags":{"description":"The key used to prefix reference labels of this type, such as \"fig\", \"tbl\", \"lst\", etc."},"documentation":"The description of the crossreferenceable object to be used in the\ntitle of the “list of” command. If omitted, the field\nreference-prefix is used."},"latex-env":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the name of the custom environment to be used."},"documentation":"The location of the caption relative to the crossreferenceable\ncontent."},"latex-list-of-file-extension":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the extension of the auxiliary file used by LaTeX to collect names to be used in the custom \"list of\" command. If omitted, a string with prefix `lo` and suffix with the value of `ref-type` is used."},"documentation":"Use top level sections (H1) in this document as chapters."},"latex-list-of-description":{"type":"string","description":"be a string","tags":{"description":"The description of the crossreferenceable object to be used in the title of the \"list of\" command. If omitted, the field `reference-prefix` is used."},"documentation":"The delimiter used between the prefix and the caption."},"caption-location":{"_internalId":3570,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"description":"The location of the caption relative to the crossreferenceable content."},"documentation":"The title prefix used for figure captions."}},"patternProperties":{},"required":["kind","reference-prefix","key"],"closed":true,"tags":{"description":"A custom cross reference type. See [Custom](https://quarto.org/docs/reference/metadata/crossref.html#custom) for more details."},"documentation":"The prefix used in rendered captions when referencing this type. If\nomitted, the field reference-prefix is used."}},"chapters":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Use top level sections (H1) in this document as chapters."},"documentation":"The title prefix used for table captions."},"title-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter used between the prefix and the caption."},"documentation":"The title prefix used for equation captions."},"fig-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for figure captions."},"documentation":"The title prefix used for listing captions."},"tbl-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for table captions."},"documentation":"The title prefix used for theorem captions."},"eq-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for equation captions."},"documentation":"The title prefix used for lemma captions."},"lst-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for listing captions."},"documentation":"The title prefix used for corollary captions."},"thm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for theorem captions."},"documentation":"The title prefix used for proposition captions."},"lem-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for lemma captions."},"documentation":"The title prefix used for conjecture captions."},"cor-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for corollary captions."},"documentation":"The title prefix used for definition captions."},"prp-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for proposition captions."},"documentation":"The title prefix used for example captions."},"cnj-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for conjecture captions."},"documentation":"The title prefix used for exercise captions."},"def-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for definition captions."},"documentation":"The prefix used for an inline reference to a figure."},"exm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for example captions."},"documentation":"The prefix used for an inline reference to a table."},"exr-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for exercise captions."},"documentation":"The prefix used for an inline reference to an equation."},"fig-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a figure."},"documentation":"The prefix used for an inline reference to a section."},"tbl-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a table."},"documentation":"The prefix used for an inline reference to a listing."},"eq-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an equation."},"documentation":"The prefix used for an inline reference to a theorem."},"sec-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a section."},"documentation":"The prefix used for an inline reference to a lemma."},"lst-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a listing."},"documentation":"The prefix used for an inline reference to a corollary."},"thm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a theorem."},"documentation":"The prefix used for an inline reference to a proposition."},"lem-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a lemma."},"documentation":"The prefix used for an inline reference to a conjecture."},"cor-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a corollary."},"documentation":"The prefix used for an inline reference to a definition."},"prp-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a proposition."},"documentation":"The prefix used for an inline reference to an example."},"cnj-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a conjecture."},"documentation":"The prefix used for an inline reference to an exercise."},"def-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a definition."},"documentation":"The numbering scheme used for figures."},"exm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an example."},"documentation":"The numbering scheme used for tables."},"exr-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an exercise."},"documentation":"The numbering scheme used for equations."},"fig-labels":{"_internalId":3629,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for figures."},"documentation":"The numbering scheme used for sections."},"tbl-labels":{"_internalId":3632,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for tables."},"documentation":"The numbering scheme used for listings."},"eq-labels":{"_internalId":3635,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for equations."},"documentation":"The numbering scheme used for theorems."},"sec-labels":{"_internalId":3638,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for sections."},"documentation":"The numbering scheme used for lemmas."},"lst-labels":{"_internalId":3641,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for listings."},"documentation":"The numbering scheme used for corollaries."},"thm-labels":{"_internalId":3644,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for theorems."},"documentation":"The numbering scheme used for propositions."},"lem-labels":{"_internalId":3647,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for lemmas."},"documentation":"The numbering scheme used for conjectures."},"cor-labels":{"_internalId":3650,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for corollaries."},"documentation":"The numbering scheme used for definitions."},"prp-labels":{"_internalId":3653,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for propositions."},"documentation":"The numbering scheme used for examples."},"cnj-labels":{"_internalId":3656,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for conjectures."},"documentation":"The numbering scheme used for exercises."},"def-labels":{"_internalId":3659,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for definitions."},"documentation":"The title used for the list of figures."},"exm-labels":{"_internalId":3662,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for examples."},"documentation":"The title used for the list of tables."},"exr-labels":{"_internalId":3665,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for exercises."},"documentation":"The title used for the list of listings."},"lof-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of figures."},"documentation":"The number scheme used for references."},"lot-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of tables."},"documentation":"The number scheme used for sub references."},"lol-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of listings."},"documentation":"Whether cross references should be hyper-linked."},"labels":{"_internalId":3674,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for references."},"documentation":"The title used for appendix."},"subref-labels":{"_internalId":3677,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for sub references."},"documentation":"The delimiter beween appendix number and title."},"ref-hyperlink":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether cross references should be hyper-linked."},"documentation":"Enables a hover popup for cross references that shows the item being\nreferenced."},"appendix-title":{"type":"string","description":"be a string","tags":{"description":"The title used for appendix."},"documentation":"Logo image(s) (placed on the left side of the navigation bar)"},"appendix-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter beween appendix number and title."},"documentation":"Default orientation for dashboard content (default\nrows)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","documentation":"The prefix used in rendered references when referencing this\ntype.","tags":{"description":{"short":"Configuration for cross-reference labels and prefixes.","long":"Configuration for cross-reference labels and prefixes. See [Cross-Reference Options](https://quarto.org/docs/reference/metadata/crossref.html) for more details."}},"$id":"quarto-resource-document-crossref-crossref"},"quarto-resource-document-crossref-crossrefs-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for cross references that shows the item being referenced."},"documentation":"Use scrolling rather than fill layout (default:\nfalse)","$id":"quarto-resource-document-crossref-crossrefs-hover"},"quarto-resource-document-dashboard-logo":{"_internalId":3690,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["dashboard"],"description":"Logo image(s) (placed on the left side of the navigation bar)"},"documentation":"Make card content expandable (default: true)","$id":"quarto-resource-document-dashboard-logo"},"quarto-resource-document-dashboard-orientation":{"_internalId":3693,"type":"enum","enum":["rows","columns"],"description":"be one of: `rows`, `columns`","completions":["rows","columns"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Default orientation for dashboard content (default `rows`)"},"documentation":"Links to display on the dashboard navigation bar","$id":"quarto-resource-document-dashboard-orientation"},"quarto-resource-document-dashboard-scrolling":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Use scrolling rather than fill layout (default: `false`)"},"documentation":"Visual editor configuration","$id":"quarto-resource-document-dashboard-scrolling"},"quarto-resource-document-dashboard-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Make card content expandable (default: `true`)"},"documentation":"Default editing mode for document","$id":"quarto-resource-document-dashboard-expandable"},"quarto-resource-document-dashboard-nav-buttons":{"_internalId":3723,"type":"anyOf","anyOf":[{"_internalId":3721,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3720,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"},{"_internalId":3722,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3721,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3720,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"formats":["dashboard"],"description":"Links to display on the dashboard navigation bar"},"documentation":"Markdown writing options for visual editor","$id":"quarto-resource-document-dashboard-nav-buttons"},"quarto-resource-document-editor-editor":{"_internalId":3764,"type":"anyOf","anyOf":[{"_internalId":3728,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3763,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3733,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true,"tags":{"description":"Default editing mode for document"},"documentation":"Write standard visual editor markdown from source mode."},"markdown":{"_internalId":3758,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3743,"type":"anyOf","anyOf":[{"_internalId":3740,"type":"enum","enum":["sentence","none"],"description":"be one of: `sentence`, `none`","completions":["sentence","none"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: one of: `sentence`, `none`, a number","tags":{"description":"A column number (e.g. 72), `sentence`, or `none`"},"documentation":"Location to write references (block,\nsection, or document)"},"canonical":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write standard visual editor markdown from source mode."},"documentation":"Write markdown links as references rather than inline."},"references":{"_internalId":3757,"type":"object","description":"be an object","properties":{"location":{"_internalId":3752,"type":"enum","enum":["block","section","document"],"description":"be one of: `block`, `section`, `document`","completions":["block","section","document"],"exhaustiveCompletions":true,"tags":{"description":"Location to write references (`block`, `section`, or `document`)"},"documentation":"Automatically re-render for preview whenever document is saved (note\nthat this requires a preview for the saved document be already running).\nThis option currently works only within VS Code."},"links":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write markdown links as references rather than inline."},"documentation":"Enable (true) or disable (false) Zotero for\na document. Alternatively, provide a list of one or more Zotero group\nlibraries to use with the document."},"prefix":{"type":"string","description":"be a string","tags":{"description":"Unique prefix for references (`none` to prevent automatic prefixes)"},"documentation":"The identifier for this publication."}},"patternProperties":{},"tags":{"description":"Reference writing options for visual editor"},"documentation":"Unique prefix for references (none to prevent automatic\nprefixes)"}},"patternProperties":{},"tags":{"description":"Markdown writing options for visual editor"},"documentation":"Reference writing options for visual editor"},"render-on-save":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":["jupyter"],"description":"Automatically re-render for preview whenever document is saved (note that this requires a preview\nfor the saved document be already running). This option currently works only within VS Code.\n"},"documentation":"The identifier value."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention mode,markdown,render-on-save","type":"string","pattern":"(?!(^render_on_save$|^renderOnSave$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}],"description":"be at least one of: one of: `source`, `visual`, an object","documentation":"A column number (e.g. 72), sentence, or\nnone","tags":{"description":"Visual editor configuration"},"$id":"quarto-resource-document-editor-editor"},"quarto-resource-document-editor-zotero":{"_internalId":3775,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3774,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3773,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","documentation":"The identifier schema (e.g. DOI, ISBN-A,\netc.)","tags":{"description":"Enable (`true`) or disable (`false`) Zotero for a document. Alternatively, provide a list of one or\nmore Zotero group libraries to use with the document.\n"},"$id":"quarto-resource-document-editor-zotero"},"quarto-resource-document-epub-identifier":{"_internalId":3788,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3787,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The identifier value."},"documentation":"Contributors to this publication."},"schema":{"_internalId":3786,"type":"enum","enum":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"description":"be one of: `ISBN-10`, `GTIN-13`, `UPC`, `ISMN-10`, `DOI`, `LCCN`, `GTIN-14`, `ISBN-13`, `Legal deposit number`, `URN`, `OCLC`, `ISMN-13`, `ISBN-A`, `JP`, `OLCC`","completions":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"exhaustiveCompletions":true,"tags":{"description":"The identifier schema (e.g. `DOI`, `ISBN-A`, etc.)"},"documentation":"The subject of the publication."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The identifier for this publication."},"documentation":"Creators of this publication.","$id":"quarto-resource-document-epub-identifier"},"quarto-resource-document-epub-creator":{"_internalId":3791,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Creators of this publication."},"documentation":"The subject text.","$id":"quarto-resource-document-epub-creator"},"quarto-resource-document-epub-contributor":{"_internalId":3794,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Contributors to this publication."},"documentation":"An EPUB reserved authority value.","$id":"quarto-resource-document-epub-contributor"},"quarto-resource-document-epub-subject":{"_internalId":3808,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3807,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The subject text."},"documentation":"Text describing the specialized type of this publication."},"authority":{"type":"string","description":"be a string","tags":{"description":"An EPUB reserved authority value."},"documentation":"Text describing the format of this publication."},"term":{"type":"string","description":"be a string","tags":{"description":"The subject term (defined by the schema)."},"documentation":"Text describing the relation of this publication."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The subject of the publication."},"documentation":"The subject term (defined by the schema).","$id":"quarto-resource-document-epub-subject"},"quarto-resource-document-epub-type":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Text describing the specialized type of this publication.","long":"Text describing the specialized type of this publication.\n\nAn informative registry of specialized EPUB Publication \ntypes for use with this element is maintained in the \n[TypesRegistry](https://www.w3.org/publishing/epub32/epub-packages.html#bib-typesregistry), \nbut Authors may use any text string as a value.\n"}},"documentation":"Text describing the coverage of this publication.","$id":"quarto-resource-document-epub-type"},"quarto-resource-document-epub-format":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the format of this publication."},"documentation":"Text describing the rights of this publication.","$id":"quarto-resource-document-epub-format"},"quarto-resource-document-epub-relation":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the relation of this publication."},"documentation":"Identifies the name of a collection to which the EPUB Publication\nbelongs.","$id":"quarto-resource-document-epub-relation"},"quarto-resource-document-epub-coverage":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the coverage of this publication."},"documentation":"Indicates the numeric position in which this publication belongs\nrelative to other works belonging to the same\nbelongs-to-collection field.","$id":"quarto-resource-document-epub-coverage"},"quarto-resource-document-epub-rights":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the rights of this publication."},"documentation":"Sets the global direction in which content flows (ltr or\nrtl)","$id":"quarto-resource-document-epub-rights"},"quarto-resource-document-epub-belongs-to-collection":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Identifies the name of a collection to which the EPUB Publication belongs."},"documentation":"iBooks specific metadata options.","$id":"quarto-resource-document-epub-belongs-to-collection"},"quarto-resource-document-epub-group-position":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":"Indicates the numeric position in which this publication \nbelongs relative to other works belonging to the same \n`belongs-to-collection` field.\n"},"documentation":"What is new in this version of the book.","$id":"quarto-resource-document-epub-group-position"},"quarto-resource-document-epub-page-progression-direction":{"_internalId":3825,"type":"enum","enum":["ltr","rtl"],"description":"be one of: `ltr`, `rtl`","completions":["ltr","rtl"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"Sets the global direction in which content flows (`ltr` or `rtl`)"},"documentation":"Whether this book provides embedded fonts in a flowing or fixed\nlayout book.","$id":"quarto-resource-document-epub-page-progression-direction"},"quarto-resource-document-epub-ibooks":{"_internalId":3835,"type":"object","description":"be an object","properties":{"version":{"type":"string","description":"be a string","tags":{"description":"What is new in this version of the book."},"documentation":"Look in the specified XML file for metadata for the EPUB. The file\nshould contain a series of Dublin\nCore elements."},"specified-fonts":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this book provides embedded fonts in a flowing or fixed layout book."},"documentation":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is EPUB. To put the\nEPUB contents in the top level, use an empty string."},"scroll-axis":{"_internalId":3834,"type":"enum","enum":["vertical","horizontal","default"],"description":"be one of: `vertical`, `horizontal`, `default`","completions":["vertical","horizontal","default"],"exhaustiveCompletions":true,"tags":{"description":"The scroll direction for this book (`vertical`, `horizontal`, or `default`)"},"documentation":"Embed the specified fonts in the EPUB"}},"patternProperties":{},"closed":true,"tags":{"formats":["$epub-all"],"description":"iBooks specific metadata options."},"documentation":"The scroll direction for this book (vertical,\nhorizontal, or default)","$id":"quarto-resource-document-epub-ibooks"},"quarto-resource-document-epub-epub-metadata":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\n","long":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\nFor example:\n\n```xml\nCreative Commons\nes-AR\n```\n\nBy default, pandoc will include the following metadata elements:\n`` (from the document title), `` (from the\ndocument authors), `` (from the document date, which should\nbe in [ISO 8601 format]), `` (from the `lang`\nvariable, or, if is not set, the locale), and `` (a randomly generated UUID). Any of these may be\noverridden by elements in the metadata file.\n\nNote: if the source document is Markdown, a YAML metadata block\nin the document can be used instead.\n"}},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-epub-epub-metadata"},"quarto-resource-document-epub-epub-subdirectory":{"_internalId":3844,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"formats":["$epub-all"],"description":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is `EPUB`. To put the EPUB \ncontents in the top level, use an empty string.\n"},"documentation":"Use the specified image as the EPUB cover. It is recommended that the\nimage be less than 1000px in width and height.","$id":"quarto-resource-document-epub-epub-subdirectory"},"quarto-resource-document-epub-epub-fonts":{"_internalId":3849,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$epub-all"],"description":{"short":"Embed the specified fonts in the EPUB","long":"Embed the specified fonts in the EPUB. Wildcards can also be used: for example,\n`DejaVuSans-*.ttf`. To use the embedded fonts, you will need to add declarations\nlike the following to your CSS:\n\n```css\n@font-face {\n font-family: DejaVuSans;\n font-style: normal;\n font-weight: normal;\n src:url(\"DejaVuSans-Regular.ttf\");\n}\n```\n"}},"documentation":"If false, disables the generation of a title page.","$id":"quarto-resource-document-epub-epub-fonts"},"quarto-resource-document-epub-epub-chapter-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Engine used for executable code blocks.","$id":"quarto-resource-document-epub-epub-chapter-level"},"quarto-resource-document-epub-epub-cover-image":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Use the specified image as the EPUB cover. It is recommended\nthat the image be less than 1000px in width and height.\n"},"documentation":"Configures the Jupyter engine.","$id":"quarto-resource-document-epub-epub-cover-image"},"quarto-resource-document-epub-epub-title-page":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"If false, disables the generation of a title page."},"documentation":"The name to display in the UI.","$id":"quarto-resource-document-epub-epub-title-page"},"quarto-resource-document-execute-engine":{"type":"string","description":"be a string","completions":["jupyter","knitr","julia"],"documentation":"The name of the language the kernel implements.","tags":{"description":"Engine used for executable code blocks."},"$id":"quarto-resource-document-execute-engine"},"quarto-resource-document-execute-jupyter":{"_internalId":3876,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3875,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3874,"type":"object","description":"be an object","properties":{"display_name":{"type":"string","description":"be a string","tags":{"description":"The name to display in the UI."},"documentation":"Configures the Julia engine."},"language":{"type":"string","description":"be a string","tags":{"description":"The name of the language the kernel implements."},"documentation":"Arguments to pass to the Julia worker process."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of the kernel."},"documentation":"Environment variables to pass to the Julia worker process."}},"patternProperties":{},"required":["display_name","language","name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention display_name,language,name","type":"string","pattern":"(?!(^display-name$|^displayName$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"completions":[],"tags":{"hidden":true}}],"description":"be at least one of: `true` or `false`, a string, an object","documentation":"The name of the kernel.","tags":{"description":"Configures the Jupyter engine."},"$id":"quarto-resource-document-execute-jupyter"},"quarto-resource-document-execute-julia":{"_internalId":3893,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3885,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Arguments to pass to the Julia worker process."},"documentation":"Knit options."},"env":{"_internalId":3892,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Environment variables to pass to the Julia worker process."},"documentation":"Knitr chunk options."}},"patternProperties":{},"documentation":"Set Knitr options.","tags":{"description":"Configures the Julia engine."},"$id":"quarto-resource-document-execute-julia"},"quarto-resource-document-execute-knitr":{"_internalId":3907,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3906,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3902,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Re-use previous computational output when rendering"},"opts_chunk":{"_internalId":3905,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knitr chunk options."},"documentation":"Document server"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","documentation":"Cache results of computations.","tags":{"description":"Set Knitr options."},"$id":"quarto-resource-document-execute-knitr"},"quarto-resource-document-execute-cache":{"_internalId":3915,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3914,"type":"enum","enum":["refresh"],"description":"be 'refresh'","completions":["refresh"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'refresh'","tags":{"execute-only":true,"description":{"short":"Cache results of computations.","long":"Cache results of computations (using the [knitr cache](https://yihui.org/knitr/demo/cache/) \nfor R documents, and [Jupyter Cache](https://jupyter-cache.readthedocs.io/en/latest/) \nfor Jupyter documents).\n\nNote that cache invalidation is triggered by changes in chunk source code \n(or other cache attributes you've defined). \n\n- `true`: Cache results\n- `false`: Do not cache results\n- `refresh`: Force a refresh of the cache even if has not been otherwise invalidated.\n"}},"documentation":"Type of server to run behind the document\n(e.g. shiny)","$id":"quarto-resource-document-execute-cache"},"quarto-resource-document-execute-freeze":{"_internalId":3923,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3922,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"execute-only":true,"description":{"short":"Re-use previous computational output when rendering","long":"Control the re-use of previous computational output when rendering.\n\n- `true`: Never recompute previously generated computational output during a global project render\n- `false` (default): Recompute previously generated computational output\n- `auto`: Re-compute previously generated computational output only in case their source file changes\n"}},"documentation":"OJS variables to export to server.","$id":"quarto-resource-document-execute-freeze"},"quarto-resource-document-execute-server":{"_internalId":3947,"type":"anyOf","anyOf":[{"_internalId":3928,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3946,"type":"object","description":"be an object","properties":{"type":{"_internalId":3933,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true,"tags":{"description":"Type of server to run behind the document (e.g. `shiny`)"},"documentation":"Run Jupyter kernels within a peristent daemon (to mitigate kernel\nstartup time)."},"ojs-export":{"_internalId":3939,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3938,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"OJS variables to export to server."},"documentation":"Restart any running Jupyter daemon before rendering."},"ojs-import":{"_internalId":3945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3944,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Server reactive values to import into OJS."},"documentation":"Enable code cell execution."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,ojs-export,ojs-import","type":"string","pattern":"(?!(^ojs_export$|^ojsExport$|^ojs_import$|^ojsImport$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: 'shiny', an object","documentation":"Server reactive values to import into OJS.","tags":{"description":"Document server","hidden":true},"$id":"quarto-resource-document-execute-server"},"quarto-resource-document-execute-daemon":{"_internalId":3954,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","documentation":"Execute code cell execution in Jupyter notebooks.","tags":{"description":{"short":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).","long":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).\nBy default a daemon with a timeout of 300 seconds will be used. Set `daemon`\nto another timeout value or to `false` to disable it altogether.\n"},"hidden":true},"$id":"quarto-resource-document-execute-daemon"},"quarto-resource-document-execute-daemon-restart":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Show code-execution related debug information.","tags":{"description":"Restart any running Jupyter daemon before rendering.","hidden":true},"$id":"quarto-resource-document-execute-daemon-restart"},"quarto-resource-document-execute-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Default width for figures generated by Matplotlib or R graphics","tags":{"description":"Enable code cell execution.","hidden":true},"$id":"quarto-resource-document-execute-enabled"},"quarto-resource-document-execute-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Default height for figures generated by Matplotlib or R graphics","tags":{"description":"Execute code cell execution in Jupyter notebooks.","hidden":true},"$id":"quarto-resource-document-execute-ipynb"},"quarto-resource-document-execute-debug":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Default format for figures generated by Matplotlib or R graphics\n(retina, png, jpeg,\nsvg, or pdf)","tags":{"description":"Show code-execution related debug information.","hidden":true},"$id":"quarto-resource-document-execute-debug"},"quarto-resource-document-figures-fig-width":{"type":"number","description":"be a number","documentation":"Default DPI for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default width for figures generated by Matplotlib or R graphics","long":"Default width for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-width"},"quarto-resource-document-figures-fig-height":{"type":"number","description":"be a number","documentation":"The aspect ratio of the plot, i.e., the ratio of height/width.","tags":{"description":{"short":"Default height for figures generated by Matplotlib or R graphics","long":"Default height for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-height"},"quarto-resource-document-figures-fig-format":{"_internalId":3969,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"documentation":"Whether to make images in this document responsive.","tags":{"description":"Default format for figures generated by Matplotlib or R graphics (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"$id":"quarto-resource-document-figures-fig-format"},"quarto-resource-document-figures-fig-dpi":{"type":"number","description":"be a number","documentation":"Sets the main font for the document.","tags":{"description":{"short":"Default DPI for figures generated by Matplotlib or R graphics","long":"Default DPI for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-dpi"},"quarto-resource-document-figures-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":{"short":"The aspect ratio of the plot, i.e., the ratio of height/width.\n","long":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified,\nthe height of a plot (the option `fig-height`) is calculated from `fig-width * fig-asp`.\n\nThe `fig-asp` option is only available within the knitr engine.\n"}},"documentation":"Sets the font used for when displaying code.","$id":"quarto-resource-document-figures-fig-asp"},"quarto-resource-document-figures-fig-responsive":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Whether to make images in this document responsive."},"documentation":"Sets the main font size for the document.","$id":"quarto-resource-document-figures-fig-responsive"},"quarto-resource-document-fonts-mainfont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font for the document.","long":"For HTML output, sets the CSS `font-family` on the HTML element.\n\nFor LaTeX output, the main font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the main font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Allows font encoding to be specified through fontenc\npackage.","$id":"quarto-resource-document-fonts-mainfont"},"quarto-resource-document-fonts-monofont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the font used for when displaying code.","long":"For HTML output, sets the CSS font-family property on code elements.\n\nFor PowerPoint output, sets the font used for code.\n\nFor LaTeX output, the monospace font family for use with `xelatex` or \n`lualatex`: take the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the monspace font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Font package to use when compiling a PDF with the\npdflatex pdf-engine.","$id":"quarto-resource-document-fonts-monofont"},"quarto-resource-document-fonts-fontsize":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font size for the document.","long":"For HTML output, sets the base CSS `font-size` property.\n\nFor LaTeX and ConTeXt output, sets the font size for the document body text.\n"}},"documentation":"Options for the package used as fontfamily.","$id":"quarto-resource-document-fonts-fontsize"},"quarto-resource-document-fonts-fontenc":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"Allows font encoding to be specified through `fontenc` package.","long":"Allows font encoding to be specified through [`fontenc`](https://www.ctan.org/pkg/fontenc) package.\n\nSee [LaTeX Font Encodings Guide](https://ctan.org/pkg/encguide) for addition information on font encoding.\n"}},"documentation":"The sans serif font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-fontenc"},"quarto-resource-document-fonts-fontfamily":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Font package to use when compiling a PDF with the `pdflatex` `pdf-engine`.","long":"Font package to use when compiling a PDf with the `pdflatex` `pdf-engine`. \n\nSee [The LaTeX Font Catalogue](https://tug.org/FontCatalogue/) for a \nsummary of font options available.\n\nFor groff (`ms`) files, the font family for example, `T` or `P`.\n"}},"documentation":"The math font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-fontfamily"},"quarto-resource-document-fonts-fontfamilyoptions":{"_internalId":3991,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3990,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the package used as `fontfamily`.","long":"Options for the package used as `fontfamily`.\n\nFor example, to use the Libertine font with proportional lowercase\n(old-style) figures through the [`libertinus`](https://ctan.org/pkg/libertinus) package:\n\n```yaml\nfontfamily: libertinus\nfontfamilyoptions:\n - osf\n - p\n```\n"}},"documentation":"The CJK main font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-fontfamilyoptions"},"quarto-resource-document-fonts-sansfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The sans serif font family for use with `xelatex` or `lualatex`.","long":"The sans serif font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The main font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfont"},"quarto-resource-document-fonts-mathfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The math font family for use with `xelatex` or `lualatex`.","long":"The math font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The sans serif font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mathfont"},"quarto-resource-document-fonts-CJKmainfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The CJK main font family for use with `xelatex` or `lualatex`.","long":"The CJK main font family for use with `xelatex` or \n`lualatex` using the [`xecjk`](https://ctan.org/pkg/xecjk) package.\n"}},"documentation":"The monospace font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKmainfont"},"quarto-resource-document-fonts-mainfontoptions":{"_internalId":4003,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4002,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The main font options for use with `xelatex` or `lualatex`.","long":"The main font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n\nFor example, to use the [TeX Gyre](http://www.gust.org.pl/projects/e-foundry/tex-gyre) \nversion of Palatino with lowercase figures:\n\n```yaml\nmainfont: TeX Gyre Pagella\nmainfontoptions:\n - Numbers=Lowercase\n - Numbers=Proportional \n```\n"}},"documentation":"The math font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mainfontoptions"},"quarto-resource-document-fonts-sansfontoptions":{"_internalId":4009,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4008,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The sans serif font options for use with `xelatex` or `lualatex`.","long":"The sans serif font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"Adds additional directories to search for fonts when compiling with\nTypst.","$id":"quarto-resource-document-fonts-sansfontoptions"},"quarto-resource-document-fonts-monofontoptions":{"_internalId":4015,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4014,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The monospace font options for use with `xelatex` or `lualatex`.","long":"The monospace font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The CJK font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-monofontoptions"},"quarto-resource-document-fonts-mathfontoptions":{"_internalId":4021,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4020,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The math font options for use with `xelatex` or `lualatex`.","long":"The math font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"Options to pass to the microtype package.","$id":"quarto-resource-document-fonts-mathfontoptions"},"quarto-resource-document-fonts-font-paths":{"_internalId":4027,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4026,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["typst"],"description":{"short":"Adds additional directories to search for fonts when compiling with Typst.","long":"Locally, Typst uses installed system fonts. In addition, some custom path \ncan be specified to add directories that should be scanned for fonts.\nSetting this configuration will take precedence over any path set in TYPST_FONT_PATHS environment variable.\n"}},"documentation":"The point size, for example, 10p.","$id":"quarto-resource-document-fonts-font-paths"},"quarto-resource-document-fonts-CJKoptions":{"_internalId":4033,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4032,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The CJK font options for use with `xelatex` or `lualatex`.","long":"The CJK font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The line height, for example, 12p.","$id":"quarto-resource-document-fonts-CJKoptions"},"quarto-resource-document-fonts-microtypeoptions":{"_internalId":4039,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4038,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options to pass to the microtype package.","long":"Options to pass to the [microtype](https://ctan.org/pkg/microtype) package."}},"documentation":"Sets the line height or spacing for text in the document.","$id":"quarto-resource-document-fonts-microtypeoptions"},"quarto-resource-document-fonts-pointsize":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The point size, for example, `10p`."},"documentation":"Adjusts line spacing using the \\setupinterlinespace\ncommand.","$id":"quarto-resource-document-fonts-pointsize"},"quarto-resource-document-fonts-lineheight":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The line height, for example, `12p`."},"documentation":"The typeface style for links in the document.","$id":"quarto-resource-document-fonts-lineheight"},"quarto-resource-document-fonts-linestretch":{"_internalId":4050,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the line height or spacing for text in the document.","long":"For HTML output sets the CSS `line-height` property on the html \nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the \n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n"}},"documentation":"Set the spacing between paragraphs, for example none,\n`small.","$id":"quarto-resource-document-fonts-linestretch"},"quarto-resource-document-fonts-interlinespace":{"_internalId":4056,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4055,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":"Adjusts line spacing using the `\\setupinterlinespace` command."},"documentation":"Enables a hover popup for footnotes that shows the footnote\ncontents.","$id":"quarto-resource-document-fonts-interlinespace"},"quarto-resource-document-fonts-linkstyle":{"type":"string","description":"be a string","completions":["normal","bold","slanted","boldslanted","type","cap","small"],"tags":{"formats":["context"],"description":"The typeface style for links in the document."},"documentation":"Causes links to be printed as footnotes.","$id":"quarto-resource-document-fonts-linkstyle"},"quarto-resource-document-fonts-whitespace":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Set the spacing between paragraphs, for example `none`, `small.","long":"Set the spacing between paragraphs, for example `none`, `small` \nusing the [`setupwhitespace`](https://wiki.contextgarden.net/Command/setupwhitespace) \ncommand.\n"}},"documentation":"Location for footnotes and references","$id":"quarto-resource-document-fonts-whitespace"},"quarto-resource-document-footnotes-footnotes-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for footnotes that shows the footnote contents."},"documentation":"Set the indentation of paragraphs with one or more options.","$id":"quarto-resource-document-footnotes-footnotes-hover"},"quarto-resource-document-footnotes-links-as-notes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Causes links to be printed as footnotes."},"documentation":"Adjusts text to the left, right, center, or both margins\n(l, r, c, or b).","$id":"quarto-resource-document-footnotes-links-as-notes"},"quarto-resource-document-footnotes-reference-location":{"_internalId":4067,"type":"enum","enum":["block","section","margin","document"],"description":"be one of: `block`, `section`, `margin`, `document`","completions":["block","section","margin","document"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","muse","$html-files","pdf","typst"],"description":{"short":"Location for footnotes and references\n","long":"Specify location for footnotes. Also controls the location of references, if `reference-links` is set.\n\n- `block`: Place at end of current top-level block\n- `section`: Place at end of current section\n- `margin`: Place at the margin\n- `document`: Place at end of document\n"}},"documentation":"Whether to hyphenate text at line breaks even in words that do not\ncontain hyphens.","$id":"quarto-resource-document-footnotes-reference-location"},"quarto-resource-document-formatting-indenting":{"_internalId":4073,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4072,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Set the indentation of paragraphs with one or more options.","long":"Set the indentation of paragraphs with one or more options.\n\nSee [ConTeXt Indentation](https://wiki.contextgarden.net/Indentation) for additional information.\n"}},"documentation":"If true, tables are formatted as RST list tables.","$id":"quarto-resource-document-formatting-indenting"},"quarto-resource-document-formatting-adjusting":{"_internalId":4076,"type":"enum","enum":["l","r","c","b"],"description":"be one of: `l`, `r`, `c`, `b`","completions":["l","r","c","b"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":"Adjusts text to the left, right, center, or both margins (`l`, `r`, `c`, or `b`)."},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-formatting-adjusting"},"quarto-resource-document-formatting-hyphenate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":{"short":"Whether to hyphenate text at line breaks even in words that do not contain hyphens.","long":"Whether to hyphenate text at line breaks even in words that do not contain \nhyphens if it is necessary to do so to lay out words on a line without excessive spacing\n"}},"documentation":"Information about the funding of the research reported in the article\n(for example, grants, contracts, sponsors) and any open access fees for\nthe article itself","$id":"quarto-resource-document-formatting-hyphenate"},"quarto-resource-document-formatting-list-tables":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["rst"],"description":"If true, tables are formatted as RST list tables."},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based.","$id":"quarto-resource-document-formatting-list-tables"},"quarto-resource-document-formatting-split-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all","chunkedhtml"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions.","$id":"quarto-resource-document-formatting-split-level"},"quarto-resource-document-funding-funding":{"_internalId":4185,"type":"anyOf","anyOf":[{"_internalId":4183,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4182,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"The name of this award"},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"The description for this award."},"awards":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The text describing the source of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Abbreviation for country where source of grant is located."},"source":{"_internalId":4120,"type":"anyOf","anyOf":[{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4119,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The text describing the source of the funding."},"recipient":{"_internalId":4149,"type":"anyOf","anyOf":[{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4148,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was the recipient of the funding."},"investigator":{"_internalId":4178,"type":"anyOf","anyOf":[{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4177,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{}},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4179,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The text describing the source of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Abbreviation for country where source of grant is located."},"source":{"_internalId":4120,"type":"anyOf","anyOf":[{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4119,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The text describing the source of the funding."},"recipient":{"_internalId":4149,"type":"anyOf","anyOf":[{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4148,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was the recipient of the funding."},"investigator":{"_internalId":4178,"type":"anyOf","anyOf":[{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4177,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4184,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4183,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4182,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"The name of this award"},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"The description for this award."},"awards":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The text describing the source of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Abbreviation for country where source of grant is located."},"source":{"_internalId":4120,"type":"anyOf","anyOf":[{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4119,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The text describing the source of the funding."},"recipient":{"_internalId":4149,"type":"anyOf","anyOf":[{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4148,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was the recipient of the funding."},"investigator":{"_internalId":4178,"type":"anyOf","anyOf":[{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4177,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{}},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4179,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The text describing the source of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Abbreviation for country where source of grant is located."},"source":{"_internalId":4120,"type":"anyOf","anyOf":[{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4119,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4118,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4117,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The text describing the source of the funding."},"recipient":{"_internalId":4149,"type":"anyOf","anyOf":[{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4148,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4147,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4136,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4146,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4145,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4143,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was the recipient of the funding."},"investigator":{"_internalId":4178,"type":"anyOf","anyOf":[{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4177,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4176,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4165,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4175,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4174,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4172,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Information about the funding of the research reported in the article \n(for example, grants, contracts, sponsors) and any open access fees for the article itself\n"},"documentation":"Unique identifier assigned to an award, contract, or grant.","$id":"quarto-resource-document-funding-funding"},"quarto-resource-document-hidden-to":{"type":"string","description":"be a string","documentation":"Input files to read from","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-to"},"quarto-resource-document-hidden-writer":{"type":"string","description":"be a string","documentation":"Include options from the specified defaults files","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-writer"},"quarto-resource-document-hidden-input-file":{"type":"string","description":"be a string","documentation":"Pandoc metadata variables","tags":{"description":"Input file to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-file"},"quarto-resource-document-hidden-input-files":{"_internalId":4194,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Pandoc metadata variables","tags":{"description":"Input files to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-files"},"quarto-resource-document-hidden-defaults":{"_internalId":4199,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Headers to include with HTTP requests by Pandoc","tags":{"description":"Include options from the specified defaults files","hidden":true},"$id":"quarto-resource-document-hidden-defaults"},"quarto-resource-document-hidden-variables":{"_internalId":4200,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Display trace debug output.","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-variables"},"quarto-resource-document-hidden-metadata":{"_internalId":4202,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Exit with error status if there are any warnings.","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-metadata"},"quarto-resource-document-hidden-request-headers":{"_internalId":4206,"type":"ref","$ref":"pandoc-format-request-headers","description":"be pandoc-format-request-headers","documentation":"Print information about command-line arguments to stdout,\nthen exit.","tags":{"description":"Headers to include with HTTP requests by Pandoc","hidden":true},"$id":"quarto-resource-document-hidden-request-headers"},"quarto-resource-document-hidden-trace":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Ignore command-line arguments (for use in wrapper scripts).","tags":{"description":"Display trace debug output."},"$id":"quarto-resource-document-hidden-trace"},"quarto-resource-document-hidden-fail-if-warnings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Parse each file individually before combining for multifile\ndocuments.","tags":{"description":"Exit with error status if there are any warnings."},"$id":"quarto-resource-document-hidden-fail-if-warnings"},"quarto-resource-document-hidden-dump-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Specify the user data directory to search for pandoc data files.","tags":{"description":"Print information about command-line arguments to *stdout*, then exit.","hidden":true},"$id":"quarto-resource-document-hidden-dump-args"},"quarto-resource-document-hidden-ignore-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Level of program output (INFO, ERROR, or\nWARNING)","tags":{"description":"Ignore command-line arguments (for use in wrapper scripts).","hidden":true},"$id":"quarto-resource-document-hidden-ignore-args"},"quarto-resource-document-hidden-file-scope":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Write log messages in machine-readable JSON format to FILE.","tags":{"description":"Parse each file individually before combining for multifile documents.","hidden":true},"$id":"quarto-resource-document-hidden-file-scope"},"quarto-resource-document-hidden-data-dir":{"type":"string","description":"be a string","documentation":"Specify what to do with insertions, deletions, and comments produced\nby the MS Word “Track Changes” feature.","tags":{"description":"Specify the user data directory to search for pandoc data files.","hidden":true},"$id":"quarto-resource-document-hidden-data-dir"},"quarto-resource-document-hidden-verbosity":{"_internalId":4221,"type":"enum","enum":["ERROR","WARNING","INFO"],"description":"be one of: `ERROR`, `WARNING`, `INFO`","completions":["ERROR","WARNING","INFO"],"exhaustiveCompletions":true,"documentation":"Embed the input file source code in the generated HTML","tags":{"description":"Level of program output (`INFO`, `ERROR`, or `WARNING`)","hidden":true},"$id":"quarto-resource-document-hidden-verbosity"},"quarto-resource-document-hidden-log-file":{"type":"string","description":"be a string","documentation":"Keep hidden source code and output (marked with class\n.hidden)","tags":{"description":"Write log messages in machine-readable JSON format to FILE.","hidden":true},"$id":"quarto-resource-document-hidden-log-file"},"quarto-resource-document-hidden-track-changes":{"_internalId":4226,"type":"enum","enum":["accept","reject","all"],"description":"be one of: `accept`, `reject`, `all`","completions":["accept","reject","all"],"exhaustiveCompletions":true,"tags":{"formats":["docx"],"description":{"short":"Specify what to do with insertions, deletions, and comments produced by \nthe MS Word “Track Changes” feature.\n","long":"Specify what to do with insertions, deletions, and comments\nproduced by the MS Word \"Track Changes\" feature. \n\n- `accept` (default): Process all insertions and deletions.\n- `reject`: Ignore them.\n- `all`: Include all insertions, deletions, and comments, wrapped\n in spans with `insertion`, `deletion`, `comment-start`, and\n `comment-end` classes, respectively. The author and time of\n change is included. \n\nNotes:\n\n- Both `accept` and `reject` ignore comments.\n\n- `all` is useful for scripting: only\n accepting changes from a certain reviewer, say, or before a\n certain date. If a paragraph is inserted or deleted,\n `track-changes: all` produces a span with the class\n `paragraph-insertion`/`paragraph-deletion` before the\n affected paragraph break. \n\n- This option only affects the docx reader.\n"},"hidden":true},"documentation":"Generate HTML output (if necessary) even when targeting markdown.","$id":"quarto-resource-document-hidden-track-changes"},"quarto-resource-document-hidden-keep-source":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Embed the input file source code in the generated HTML","long":"Embed the input file source code in the generated HTML. A hidden div with \nclass `quarto-embedded-source-code` will be added to the document. This\noption is not normally used directly but rather in the implementation\nof the `code-tools` option.\n"},"hidden":true},"documentation":"Indicates that computational output should not be written within\ndivs. This is necessary for some formats (e.g. pptx) to\nproperly layout figures.","$id":"quarto-resource-document-hidden-keep-source"},"quarto-resource-document-hidden-keep-hidden":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Keep hidden source code and output (marked with class `.hidden`)","hidden":true},"documentation":"Disable merging of string based and file based includes (some\nformats, specifically ePub, do not correctly handle this merging)","$id":"quarto-resource-document-hidden-keep-hidden"},"quarto-resource-document-hidden-prefer-html":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all"],"description":{"short":"Generate HTML output (if necessary) even when targeting markdown.","long":"Generate HTML output (if necessary) even when targeting markdown. Enables the \nembedding of more sophisticated output (e.g. Jupyter widgets) in markdown.\n"},"hidden":true},"documentation":"Content to include at the end of the document header.","$id":"quarto-resource-document-hidden-prefer-html"},"quarto-resource-document-hidden-output-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Content to include at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).","tags":{"description":"Indicates that computational output should not be written within divs. \nThis is necessary for some formats (e.g. `pptx`) to properly layout\nfigures.\n","hidden":true},"$id":"quarto-resource-document-hidden-output-divs"},"quarto-resource-document-hidden-merge-includes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Content to include at the end of the document body (before the\n</body> tag in HTML, or the\n\\end{document} command in LaTeX).","tags":{"description":"Disable merging of string based and file based includes (some formats, \nspecifically ePub, do not correctly handle this merging)\n","hidden":true},"$id":"quarto-resource-document-hidden-merge-includes"},"quarto-resource-document-includes-header-includes":{"_internalId":4242,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4241,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document header.","hidden":true},"documentation":"Include contents at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-header-includes"},"quarto-resource-document-includes-include-before":{"_internalId":4248,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4247,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the beginning of the document body (e.g. after the `` tag in HTML, or the `\\begin{document}` command in LaTeX).","hidden":true},"documentation":"Include content at the end of the document body immediately after the\nmarkdown content. While it will be included before the closing\n</body> tag in HTML and the\n\\end{document} command in LaTeX, this option refers to the\nend of the markdown content.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-before"},"quarto-resource-document-includes-include-after":{"_internalId":4254,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4253,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document body (before the `` tag in HTML, or the `\\end{document}` command in LaTeX).","hidden":true},"documentation":"Include contents at the end of the header. This can be used, for\nexample, to include special CSS or JavaScript in HTML documents.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-after"},"quarto-resource-document-includes-include-before-body":{"_internalId":4266,"type":"anyOf","anyOf":[{"_internalId":4264,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4263,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4265,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4264,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4263,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the beginning of the document body\n(e.g. after the `` tag in HTML, or the `\\begin{document}` command\nin LaTeX).\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Path (or glob) to files to publish with this document.","$id":"quarto-resource-document-includes-include-before-body"},"quarto-resource-document-includes-include-after-body":{"_internalId":4278,"type":"anyOf","anyOf":[{"_internalId":4276,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4275,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4277,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4276,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4275,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include content at the end of the document body immediately after the markdown content. While it will be included before the closing `` tag in HTML and the `\\end{document}` command in LaTeX, this option refers to the end of the markdown content.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Text to be in a running header.","$id":"quarto-resource-document-includes-include-after-body"},"quarto-resource-document-includes-include-in-header":{"_internalId":4290,"type":"anyOf","anyOf":[{"_internalId":4288,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4287,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4289,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4288,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4287,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the end of the header. This can\nbe used, for example, to include special CSS or JavaScript in HTML\ndocuments.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Text to be in a running footer.","$id":"quarto-resource-document-includes-include-in-header"},"quarto-resource-document-includes-resources":{"_internalId":4296,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4295,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Path (or glob) to files to publish with this document."},"documentation":"Whether to include all source documents as file attachments in the\nPDF file.","$id":"quarto-resource-document-includes-resources"},"quarto-resource-document-includes-headertext":{"_internalId":4302,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4301,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running header.","long":"Text to be in a running header.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n"}},"documentation":"The footer for man pages.","$id":"quarto-resource-document-includes-headertext"},"quarto-resource-document-includes-footertext":{"_internalId":4308,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4307,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running footer.","long":"Text to be in a running footer.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n\nSee [ConTeXt Headers and Footers](https://wiki.contextgarden.net/Headers_and_Footers) for more information.\n"}},"documentation":"The header for man pages.","$id":"quarto-resource-document-includes-footertext"},"quarto-resource-document-includes-includesource":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["context"],"description":"Whether to include all source documents as file attachments in the PDF file."},"documentation":"Include file with YAML metadata","$id":"quarto-resource-document-includes-includesource"},"quarto-resource-document-includes-footer":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The footer for man pages."},"documentation":"Include files with YAML metadata","$id":"quarto-resource-document-includes-footer"},"quarto-resource-document-includes-header":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The header for man pages."},"documentation":"Identifies the main language of the document (e.g. en or\nen-GB).","$id":"quarto-resource-document-includes-header"},"quarto-resource-document-includes-metadata-file":{"type":"string","description":"be a string","documentation":"YAML file containing custom language translations","tags":{"description":{"short":"Include file with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) file. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nMetadata values specified inside the document, or by using `-M`,\noverwrite values specified with this option.\n"},"hidden":true},"$id":"quarto-resource-document-includes-metadata-file"},"quarto-resource-document-includes-metadata-files":{"_internalId":4321,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Enable babel language-specific shorthands in LaTeX output.","tags":{"description":{"short":"Include files with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) files. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nValues in files specified later in the list will be preferred\nover those specified earlier. Metadata values specified inside\nthe document, or by using `-M`, overwrite values specified with\nthis option.\n"}},"$id":"quarto-resource-document-includes-metadata-files"},"quarto-resource-document-language-lang":{"type":"string","description":"be a string","documentation":"The base script direction for the document (rtl or\nltr).","tags":{"description":{"short":"Identifies the main language of the document (e.g. `en` or `en-GB`).","long":"Identifies the main language of the document using IETF language tags \n(following the [BCP 47](https://www.rfc-editor.org/info/bcp47) standard), \nsuch as `en` or `en-GB`. The [Language subtag lookup](https://r12a.github.io/app-subtags/) \ntool can look up or verify these tags. \n\nThis affects most formats, and controls hyphenation \nin PDF output when using LaTeX (through [`babel`](https://ctan.org/pkg/babel) \nand [`polyglossia`](https://ctan.org/pkg/polyglossia)) or ConTeXt.\n"}},"$id":"quarto-resource-document-language-lang"},"quarto-resource-document-language-language":{"_internalId":4330,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4328,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","documentation":"Use Quarto’s built-in PDF rendering wrapper","tags":{"description":"YAML file containing custom language translations"},"$id":"quarto-resource-document-language-language"},"quarto-resource-document-language-shorthands":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Enable babel language-specific shorthands in LaTeX output.","long":"Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"}},"documentation":"Enable/disable automatic LaTeX package installation","$id":"quarto-resource-document-language-shorthands"},"quarto-resource-document-language-dir":{"_internalId":4335,"type":"enum","enum":["rtl","ltr"],"description":"be one of: `rtl`, `ltr`","completions":["rtl","ltr"],"exhaustiveCompletions":true,"documentation":"Minimum number of compilation passes.","tags":{"description":{"short":"The base script direction for the document (`rtl` or `ltr`).","long":"The base script direction for the document (`rtl` or `ltr`).\n\nFor bidirectional documents, native pandoc `span`s and\n`div`s with the `dir` attribute can\nbe used to override the base direction in some output\nformats. This may not always be necessary if the final\nrenderer (e.g. the browser, when generating HTML) supports\nthe [Unicode Bidirectional Algorithm].\n\nWhen using LaTeX for bidirectional documents, only the\n`xelatex` engine is fully supported (use\n`--pdf-engine=xelatex`).\n"}},"$id":"quarto-resource-document-language-dir"},"quarto-resource-document-latexmk-latex-auto-mk":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Use Quarto's built-in PDF rendering wrapper","long":"Use Quarto's built-in PDF rendering wrapper (includes support \nfor automatically installing missing LaTeX packages)\n"}},"documentation":"Maximum number of compilation passes.","$id":"quarto-resource-document-latexmk-latex-auto-mk"},"quarto-resource-document-latexmk-latex-auto-install":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Enable/disable automatic LaTeX package installation"},"documentation":"Clean intermediates after compilation.","$id":"quarto-resource-document-latexmk-latex-auto-install"},"quarto-resource-document-latexmk-latex-min-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Minimum number of compilation passes."},"documentation":"Program to use for makeindex.","$id":"quarto-resource-document-latexmk-latex-min-runs"},"quarto-resource-document-latexmk-latex-max-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Maximum number of compilation passes."},"documentation":"Array of command line options for makeindex.","$id":"quarto-resource-document-latexmk-latex-max-runs"},"quarto-resource-document-latexmk-latex-clean":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Clean intermediates after compilation."},"documentation":"Array of command line options for tlmgr.","$id":"quarto-resource-document-latexmk-latex-clean"},"quarto-resource-document-latexmk-latex-makeindex":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Program to use for `makeindex`."},"documentation":"Output directory for intermediates and PDF.","$id":"quarto-resource-document-latexmk-latex-makeindex"},"quarto-resource-document-latexmk-latex-makeindex-opts":{"_internalId":4352,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `makeindex`."},"documentation":"Set to false to prevent an installation of TinyTex from\nbeing used to compile PDF documents.","$id":"quarto-resource-document-latexmk-latex-makeindex-opts"},"quarto-resource-document-latexmk-latex-tlmgr-opts":{"_internalId":4357,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `tlmgr`."},"documentation":"Array of paths LaTeX should search for inputs.","$id":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"quarto-resource-document-latexmk-latex-output-dir":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Output directory for intermediates and PDF."},"documentation":"The document class.","$id":"quarto-resource-document-latexmk-latex-output-dir"},"quarto-resource-document-latexmk-latex-tinytex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Set to `false` to prevent an installation of TinyTex from being used to compile PDF documents."},"documentation":"Options for the document class,","$id":"quarto-resource-document-latexmk-latex-tinytex"},"quarto-resource-document-latexmk-latex-input-paths":{"_internalId":4366,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of paths LaTeX should search for inputs."},"documentation":"Control the \\pagestyle{} for the document.","$id":"quarto-resource-document-latexmk-latex-input-paths"},"quarto-resource-document-layout-documentclass":{"type":"string","description":"be a string","completions":["scrartcl","scrbook","scrreprt","scrlttr2","article","book","report","memoir"],"tags":{"formats":["$pdf-all"],"description":"The document class."},"documentation":"The paper size for the document.","$id":"quarto-resource-document-layout-documentclass"},"quarto-resource-document-layout-classoption":{"_internalId":4374,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4373,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-files","$pdf-all"],"description":{"short":"Options for the document class,","long":"For LaTeX/PDF output, the options set for the document\nclass.\n\nFor HTML output using KaTeX, you can render display\nmath equations flush left using `classoption: fleqn`\n"}},"documentation":"The brand mode to use for rendering the document, light\nor dark.","$id":"quarto-resource-document-layout-classoption"},"quarto-resource-document-layout-pagestyle":{"type":"string","description":"be a string","completions":["plain","empty","headings"],"tags":{"formats":["$pdf-all"],"description":"Control the `\\pagestyle{}` for the document."},"documentation":"The options for margins and text layout for this document.","$id":"quarto-resource-document-layout-pagestyle"},"quarto-resource-document-layout-papersize":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The paper size for the document.\n"},"documentation":"The page layout to use for this document (article,\nfull, or custom)","$id":"quarto-resource-document-layout-papersize"},"quarto-resource-document-layout-brand-mode":{"_internalId":4381,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"formats":["typst","revealjs"],"description":"The brand mode to use for rendering the document, `light` or `dark`.\n"},"documentation":"Target page width for output (used to compute columns widths for\nlayout divs)","$id":"quarto-resource-document-layout-brand-mode"},"quarto-resource-document-layout-layout":{"_internalId":4387,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4386,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"The options for margins and text layout for this document.","long":"The options for margins and text layout for this document.\n\nSee [ConTeXt Layout](https://wiki.contextgarden.net/Layout) for additional information.\n"}},"documentation":"Properties of the grid system used to layout Quarto HTML pages.","$id":"quarto-resource-document-layout-layout"},"quarto-resource-document-layout-page-layout":{"_internalId":4390,"type":"enum","enum":["article","full","custom"],"description":"be one of: `article`, `full`, `custom`","completions":["article","full","custom"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The page layout to use for this document (`article`, `full`, or `custom`)"},"documentation":"Defines whether to use the standard, slim, or full content grid or to\nautomatically select the most appropriate content grid.","$id":"quarto-resource-document-layout-page-layout"},"quarto-resource-document-layout-page-width":{"type":"number","description":"be a number","tags":{"formats":["docx","$odt-all"],"description":{"short":"Target page width for output (used to compute columns widths for `layout` divs)\n","long":"Target body page width for output (used to compute columns widths for `layout` divs).\nDefaults to 6.5 inches, which corresponds to default letter page settings in \ndocx and odt (8.5 inches with 1 inch for each margins).\n"}},"documentation":"The base width of the sidebar (left) column in an HTML page.","$id":"quarto-resource-document-layout-page-width"},"quarto-resource-document-layout-grid":{"_internalId":4406,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4397,"type":"enum","enum":["auto","standard","full","slim"],"description":"be one of: `auto`, `standard`, `full`, `slim`","completions":["auto","standard","full","slim"],"exhaustiveCompletions":true,"tags":{"description":"Defines whether to use the standard, slim, or full content grid or to automatically select the most appropriate content grid."},"documentation":"The base width of the body (center) column in an HTML page."},"sidebar-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the sidebar (left) column in an HTML page."},"documentation":"The width of the gutter that appears between columns in an HTML\npage."},"margin-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the margin (right) column. For Typst, this controls the width of the margin note column."},"documentation":"The layout of the appendix for this document (none,\nplain, or default)"},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column. For Typst, this is computed as the remainder after other columns."},"documentation":"Controls the formats which are provided in the citation section of\nthe appendix (false, display, or\nbibtex)."},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes."},"documentation":"The layout of the title block for this document (none,\nplain, or default)."}},"patternProperties":{},"closed":true,"tags":{"formats":["$html-doc","typst"],"description":{"short":"Properties of the grid system used to layout Quarto HTML and Typst pages."}},"documentation":"The base width of the margin (right) column in an HTML page.","$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4412,"type":"anyOf","anyOf":[{"_internalId":4411,"type":"enum","enum":["default","plain","none"],"description":"be one of: `default`, `plain`, `none`","completions":["default","plain","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the appendix for this document (`none`, `plain`, or `default`)","long":"The layout of the appendix for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the appendix, choose the appendix style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"Apply a banner style treatment to the title block.","$id":"quarto-resource-document-layout-appendix-style"},"quarto-resource-document-layout-appendix-cite-as":{"_internalId":4424,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4423,"type":"anyOf","anyOf":[{"_internalId":4421,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4422,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4421,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the formats which are provided in the citation section of the appendix (`false`, `display`, or `bibtex`).","long":"Controls the formats which are provided in the citation section of the appendix.\n\nUse `false` to disable the display of the 'cite as' appendix. Pass one or more of `display` or `bibtex` to enable that\nformat in 'cite as' appendix.\n"}},"documentation":"Sets the color of text elements in a banner style title block.","$id":"quarto-resource-document-layout-appendix-cite-as"},"quarto-resource-document-layout-title-block-style":{"_internalId":4430,"type":"anyOf","anyOf":[{"_internalId":4429,"type":"enum","enum":["default","plain","manuscript","none"],"description":"be one of: `default`, `plain`, `manuscript`, `none`","completions":["default","plain","manuscript","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `manuscript`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the title block for this document (`none`, `plain`, or `default`).","long":"The layout of the title block for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the title block, choose the style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"Enables or disables the display of categories in the title block.","$id":"quarto-resource-document-layout-title-block-style"},"quarto-resource-document-layout-title-block-banner":{"_internalId":4437,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"Apply a banner style treatment to the title block.","long":"Applies a banner style treatment for the title block. You may specify one of the following values:\n\n`true`\n: Will enable the banner style display and automatically select a background color based upon the theme.\n\n``\n: If you provide a CSS color value, the banner will be enabled and the background color set to the provided CSS color.\n\n``\n: If you provide the path to a file, the banner will be enabled and the background image will be set to the file path.\n\nSee `title-block-banner-color` if you'd like to control the color of the title block banner text.\n"}},"documentation":"Adds a css max-width to the body Element.","$id":"quarto-resource-document-layout-title-block-banner"},"quarto-resource-document-layout-title-block-banner-color":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":{"short":"Sets the color of text elements in a banner style title block.","long":"Sets the color of text elements in a banner style title block. Use one of the following values:\n\n`body` | `body-bg`\n: Will set the text color to the body text color or body background color, respectively.\n\n``\n: If you provide a CSS color value, the text color will be set to the provided CSS color.\n"}},"documentation":"Sets the left margin of the document.","$id":"quarto-resource-document-layout-title-block-banner-color"},"quarto-resource-document-layout-title-block-categories":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables or disables the display of categories in the title block."}},"documentation":"Sets the right margin of the document.","$id":"quarto-resource-document-layout-title-block-categories"},"quarto-resource-document-layout-max-width":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Adds a css `max-width` to the body Element."},"documentation":"Sets the top margin of the document.","$id":"quarto-resource-document-layout-max-width"},"quarto-resource-document-layout-margin-left":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the left margin of the document.","long":"For HTML output, sets the `margin-left` property on the Body element.\n\nFor LaTeX output, sets the left margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the left margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the left page margin.\n"}},"documentation":"Sets the bottom margin of the document.","$id":"quarto-resource-document-layout-margin-left"},"quarto-resource-document-layout-margin-right":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the right margin of the document.","long":"For HTML output, sets the `margin-right` property on the Body element.\n\nFor LaTeX output, sets the right margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the right margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the right page margin.\n"}},"documentation":"Options for the geometry package.","$id":"quarto-resource-document-layout-margin-right"},"quarto-resource-document-layout-margin-top":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the top margin of the document.","long":"For HTML output, sets the `margin-top` property on the Body element.\n\nFor LaTeX output, sets the top margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the top margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the top page margin.\n"}},"documentation":"Additional non-color options for the hyperref package.","$id":"quarto-resource-document-layout-margin-top"},"quarto-resource-document-layout-margin-bottom":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the bottom margin of the document.","long":"For HTML output, sets the `margin-bottom` property on the Body element.\n\nFor LaTeX output, sets the bottom margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the bottom margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the bottom page margin.\n"}},"documentation":"Whether to use document class settings for indentation.","$id":"quarto-resource-document-layout-margin-bottom"},"quarto-resource-document-layout-geometry":{"_internalId":4457,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4456,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the geometry package.","long":"Options for the [geometry](https://ctan.org/pkg/geometry) package. For example:\n\n```yaml\ngeometry:\n - top=30mm\n - left=20mm\n - heightrounded\n```\n"}},"documentation":"Make \\paragraph and \\subparagraph\nfree-standing rather than run-in.","$id":"quarto-resource-document-layout-geometry"},"quarto-resource-document-layout-hyperrefoptions":{"_internalId":4463,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4462,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Additional non-color options for the hyperref package.","long":"Options for the [hyperref](https://ctan.org/pkg/hyperref) package. For example:\n\n```yaml\nhyperrefoptions:\n - linktoc=all\n - pdfwindowui\n - pdfpagemode=FullScreen \n```\n\nTo customize link colors, please see the [Quarto PDF reference](https://quarto.org/docs/reference/formats/pdf.html#colors).\n"}},"documentation":"Directory containing reveal.js files.","$id":"quarto-resource-document-layout-hyperrefoptions"},"quarto-resource-document-layout-indent":{"_internalId":4470,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Whether to use document class settings for indentation.","long":"Whether to use document class settings for indentation. If the document \nclass settings are not used, the default LaTeX template removes indentation \nand adds space between paragraphs\n\nFor groff (`ms`) documents, the paragraph indent, for example, `2m`.\n"}},"documentation":"The base url for s5 presentations.","$id":"quarto-resource-document-layout-indent"},"quarto-resource-document-layout-block-headings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Make `\\paragraph` and `\\subparagraph` free-standing rather than run-in.","long":"Make `\\paragraph` and `\\subparagraph` (fourth- and\nfifth-level headings, or fifth- and sixth-level with book\nclasses) free-standing rather than run-in; requires further\nformatting to distinguish from `\\subsubsection` (third- or\nfourth-level headings). Instead of using this option,\n[KOMA-Script](https://ctan.org/pkg/koma-script) can adjust headings \nmore extensively:\n\n```yaml\nheader-includes: |\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\itshape]{paragraph}\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\scshape,\n indent=0pt]{subparagraph}\n```\n"}},"documentation":"The base url for Slidy presentations.","$id":"quarto-resource-document-layout-block-headings"},"quarto-resource-document-library-revealjs-url":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Directory containing reveal.js files."},"documentation":"The base url for Slideous presentations.","$id":"quarto-resource-document-library-revealjs-url"},"quarto-resource-document-library-s5-url":{"type":"string","description":"be a string","tags":{"formats":["s5"],"description":"The base url for s5 presentations."},"documentation":"Enable or disable lightbox treatment for images in this document. See\nLightbox\nFigures for more details.","$id":"quarto-resource-document-library-s5-url"},"quarto-resource-document-library-slidy-url":{"type":"string","description":"be a string","tags":{"formats":["slidy"],"description":"The base url for Slidy presentations."},"documentation":"Set this to auto if you’d like any image to be given\nlightbox treatment.","$id":"quarto-resource-document-library-slidy-url"},"quarto-resource-document-library-slideous-url":{"type":"string","description":"be a string","tags":{"formats":["slideous"],"description":"The base url for Slideous presentations."},"documentation":"The effect that should be used when opening and closing the lightbox.\nOne of fade, zoom, none. Defaults\nto zoom.","$id":"quarto-resource-document-library-slideous-url"},"quarto-resource-document-lightbox-lightbox":{"_internalId":4510,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4487,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4509,"type":"object","description":"be an object","properties":{"match":{"_internalId":4494,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Set this to `auto` if you'd like any image to be given lightbox treatment.","long":"Set this to `auto` if you'd like any image to be given lightbox treatment. If you omit this, only images with the class `lightbox` will be given the lightbox treatment.\n"}},"documentation":"Whether galleries should ‘loop’ to first image in the gallery if the\nuser continues past the last image of the gallery. Boolean that defaults\nto true."},"effect":{"_internalId":4499,"type":"enum","enum":["fade","zoom","none"],"description":"be one of: `fade`, `zoom`, `none`","completions":["fade","zoom","none"],"exhaustiveCompletions":true,"tags":{"description":"The effect that should be used when opening and closing the lightbox. One of `fade`, `zoom`, `none`. Defaults to `zoom`."},"documentation":"A class name to apply to the lightbox to allow css targeting. This\nwill replace the lightbox class with your custom class name."},"desc-position":{"_internalId":4504,"type":"enum","enum":["top","bottom","left","right"],"description":"be one of: `top`, `bottom`, `left`, `right`","completions":["top","bottom","left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the title and description when displaying a lightbox. One of `top`, `bottom`, `left`, `right`. Defaults to `bottom`."},"documentation":"Show a special icon next to links that leave the current site."},"loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether galleries should 'loop' to first image in the gallery if the user continues past the last image of the gallery. Boolean that defaults to `true`."},"documentation":"Open external links in a new browser window or tab (rather than\nnavigating the current tab)."},"css-class":{"type":"string","description":"be a string","tags":{"description":"A class name to apply to the lightbox to allow css targeting. This will replace the lightbox class with your custom class name."},"documentation":"A regular expression that can be used to determine whether a link is\nan internal link."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, 'auto', an object","tags":{"formats":["$html-doc"],"description":"Enable or disable lightbox treatment for images in this document. See [Lightbox Figures](https://quarto.org/docs/output-formats/html-lightbox-figures.html) for more details."},"documentation":"The position of the title and description when displaying a lightbox.\nOne of top, bottom, left,\nright. Defaults to bottom.","$id":"quarto-resource-document-lightbox-lightbox"},"quarto-resource-document-links-link-external-icon":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Show a special icon next to links that leave the current site."},"documentation":"Controls whether links to other rendered formats are displayed in\nHTML output.","$id":"quarto-resource-document-links-link-external-icon"},"quarto-resource-document-links-link-external-newwindow":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Open external links in a new browser window or tab (rather than navigating the current tab)."},"documentation":"The title for the link.","$id":"quarto-resource-document-links-link-external-newwindow"},"quarto-resource-document-links-link-external-filter":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","revealjs"],"description":{"short":"A regular expression that can be used to determine whether a link is an internal link.","long":"A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"}},"documentation":"The href for the link.","$id":"quarto-resource-document-links-link-external-filter"},"quarto-resource-document-links-format-links":{"_internalId":4548,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4547,"type":"anyOf","anyOf":[{"_internalId":4545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4535,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The format that this link represents."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4544,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"A list of links that should be displayed below the table of contents\nin an Other Links section."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"A list of links that should be displayed below the table of contents\nin an Code Links section."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"},{"_internalId":4546,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object","items":{"_internalId":4545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4535,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The format that this link represents."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4544,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"A list of links that should be displayed below the table of contents\nin an Other Links section."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"A list of links that should be displayed below the table of contents\nin an Code Links section."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"formats":["$html-doc"],"description":{"short":"Controls whether links to other rendered formats are displayed in HTML output.","long":"Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"}},"documentation":"The icon for the link.","$id":"quarto-resource-document-links-format-links"},"quarto-resource-document-links-notebook-links":{"_internalId":4556,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4555,"type":"enum","enum":["inline","global"],"description":"be one of: `inline`, `global`","completions":["inline","global"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `inline`, `global`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the display of links to notebooks that provided embedded content or are created from documents.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"}},"documentation":"Controls whether referenced notebooks are embedded in JATS output as\nsubarticles.","$id":"quarto-resource-document-links-notebook-links"},"quarto-resource-document-links-other-links":{"_internalId":4565,"type":"anyOf","anyOf":[{"_internalId":4561,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4564,"type":"ref","$ref":"other-links","description":"be other-links"}],"description":"be at least one of: 'false', other-links","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Other Links` section."},"documentation":"Configures the HTML viewer for notebooks that provide embedded\ncontent.","$id":"quarto-resource-document-links-other-links"},"quarto-resource-document-links-code-links":{"_internalId":4574,"type":"anyOf","anyOf":[{"_internalId":4570,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4573,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: 'false', code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Code Links` section."},"documentation":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances.","$id":"quarto-resource-document-links-code-links"},"quarto-resource-document-links-notebook-subarticles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$jats-all"],"description":{"short":"Controls whether referenced notebooks are embedded in JATS output as subarticles.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nDefaults to `true` - specify `false` to disable embedding Notebook as subarticles with the JATS output.\n"}},"documentation":"Options for controlling the display and behavior of Notebook\npreviews.","$id":"quarto-resource-document-links-notebook-subarticles"},"quarto-resource-document-links-notebook-view":{"_internalId":4593,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4592,"type":"anyOf","anyOf":[{"_internalId":4590,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4589,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4591,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4590,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4589,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}}],"description":"be at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"formats":["$html-doc"],"description":"Configures the HTML viewer for notebooks that provide embedded content."},"documentation":"Whether to show a back button in the notebook preview.","$id":"quarto-resource-document-links-notebook-view"},"quarto-resource-document-links-notebook-view-style":{"_internalId":4596,"type":"enum","enum":["document","notebook"],"description":"be one of: `document`, `notebook`","completions":["document","notebook"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The style of document to render. Setting this to `notebook` will create additional notebook style affordances.","hidden":true},"documentation":"Include a canonical link tag in website pages","$id":"quarto-resource-document-links-notebook-view-style"},"quarto-resource-document-links-notebook-preview-options":{"_internalId":4601,"type":"object","description":"be an object","properties":{"back":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a back button in the notebook preview."},"documentation":"Mermaid diagram options"}},"patternProperties":{},"tags":{"formats":["$html-doc"],"description":"Options for controlling the display and behavior of Notebook previews."},"documentation":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data.","$id":"quarto-resource-document-links-notebook-preview-options"},"quarto-resource-document-links-canonical-url":{"_internalId":4608,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$html-doc"],"description":{"short":"Include a canonical link tag in website pages","long":"Include a canonical link tag in website pages. You may pass either `true` to \nautomatically generate a canonical link, or pass a canonical url that you'd like\nto have placed in the `href` attribute of the tag.\n\nCanonical links can only be generated for websites with a known `site-url`.\n"}},"documentation":"The mermaid built-in theme to use.","$id":"quarto-resource-document-links-canonical-url"},"quarto-resource-document-listing-listing":{"_internalId":4625,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4624,"type":"anyOf","anyOf":[{"_internalId":4622,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4621,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4623,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4622,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4621,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"}}],"description":"be at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"formats":["$html-doc"],"description":"Automatically generate the contents of a page from a list of Quarto documents or other custom data."},"documentation":"List of keywords to be included in the document metadata.","$id":"quarto-resource-document-listing-listing"},"quarto-resource-document-mermaid-mermaid":{"_internalId":4631,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4630,"type":"enum","enum":["default","dark","forest","neutral"],"description":"be one of: `default`, `dark`, `forest`, `neutral`","completions":["default","dark","forest","neutral"],"exhaustiveCompletions":true,"tags":{"description":"The mermaid built-in theme to use."},"documentation":"The document description. Some applications show this as\nComments metadata."}},"patternProperties":{},"tags":{"formats":["$html-files"],"description":"Mermaid diagram options"},"documentation":"The document subject","$id":"quarto-resource-document-mermaid-mermaid"},"quarto-resource-document-metadata-keywords":{"_internalId":4637,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4636,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$asciidoc-all","$html-files","$pdf-all","context","odt","$office-all"],"description":"List of keywords to be included in the document metadata."},"documentation":"The document category.","$id":"quarto-resource-document-metadata-keywords"},"quarto-resource-document-metadata-subject":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$office-all","odt"],"description":"The document subject"},"documentation":"The copyright for this document, if any.","$id":"quarto-resource-document-metadata-subject"},"quarto-resource-document-metadata-description":{"type":"string","description":"be a string","tags":{"formats":["odt","$office-all"],"description":"The document description. Some applications show this as `Comments` metadata."},"documentation":"The year for this copyright","$id":"quarto-resource-document-metadata-description"},"quarto-resource-document-metadata-category":{"type":"string","description":"be a string","tags":{"formats":["$office-all"],"description":"The document category."},"documentation":"The holder of the copyright.","$id":"quarto-resource-document-metadata-category"},"quarto-resource-document-metadata-copyright":{"_internalId":4674,"type":"anyOf","anyOf":[{"_internalId":4671,"type":"object","description":"be an object","properties":{"year":{"_internalId":4658,"type":"anyOf","anyOf":[{"_internalId":4656,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"},{"_internalId":4657,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4656,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"}}],"description":"be at least one of: at least one of: a string, a number, an array of values, where each element must be at least one of: a string, a number","tags":{"complete-from":["anyOf",0],"description":"The year for this copyright"},"documentation":"The text to display for the license."},"holder":{"_internalId":4664,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The License for this document, if any. (e.g. CC BY)"},{"_internalId":4663,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The License for this document, if any. (e.g. CC BY)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"statement":{"_internalId":4670,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"A URL to the license."},{"_internalId":4669,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"A URL to the license."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-doc","$jats-all"],"description":"The copyright for this document, if any."},"documentation":"The holder of the copyright.","$id":"quarto-resource-document-metadata-copyright"},"quarto-resource-document-metadata-license":{"_internalId":4692,"type":"anyOf","anyOf":[{"_internalId":4690,"type":"anyOf","anyOf":[{"_internalId":4687,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"Sets the title metadata for the document"},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"Sets the title metadata for the document"},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)"}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":4691,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4690,"type":"anyOf","anyOf":[{"_internalId":4687,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"Sets the title metadata for the document"},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"Sets the title metadata for the document"},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)"}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-doc","$jats-all"],"description":{"short":"The License for this document, if any. (e.g. `CC BY`)","long":"The license for this document, if any. \n\nCreative Commons licenses `CC BY`, `CC BY-SA`, `CC BY-ND`, `CC BY-NC`, `CC BY-NC-SA`, and `CC BY-NC-ND` will automatically generate a license link\nin the document appendix. Other license text will be placed in the appendix verbatim.\n"}},"documentation":"The text to display for the license.","$id":"quarto-resource-document-metadata-license"},"quarto-resource-document-metadata-title-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"Sets the title metadata for the document"},"documentation":"Sets the description metadata for the document","$id":"quarto-resource-document-metadata-title-meta"},"quarto-resource-document-metadata-pagetitle":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the title metadata for the document"},"documentation":"Sets the author metadata for the document","$id":"quarto-resource-document-metadata-pagetitle"},"quarto-resource-document-metadata-title-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Specify STRING as a prefix at the beginning of the title that appears in \nthe HTML header (but not in the title as it appears at the beginning of the body)\n"},"documentation":"Sets the date metadata for the document","$id":"quarto-resource-document-metadata-title-prefix"},"quarto-resource-document-metadata-description-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the description metadata for the document"},"documentation":"Number section headings","$id":"quarto-resource-document-metadata-description-meta"},"quarto-resource-document-metadata-author-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-files"],"description":"Sets the author metadata for the document"},"documentation":"The depth to which sections should be numbered.","$id":"quarto-resource-document-metadata-author-meta"},"quarto-resource-document-metadata-date-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-all","$pdf-all"],"description":"Sets the date metadata for the document"},"documentation":"The numbering depth for sections. (Use number-depth\ninstead).","$id":"quarto-resource-document-metadata-date-meta"},"quarto-resource-document-numbering-number-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Offset for section headings in output (offsets are 0 by default)","tags":{"description":{"short":"Number section headings","long":"Number section headings rendered output. By default, sections are not numbered.\nSections with class `.unnumbered` will never be numbered, even if `number-sections`\nis specified.\n"}},"$id":"quarto-resource-document-numbering-number-sections"},"quarto-resource-document-numbering-number-depth":{"type":"number","description":"be a number","tags":{"formats":["$html-all","$pdf-all","docx"],"description":{"short":"The depth to which sections should be numbered.","long":"By default, all headings in your document create a \nnumbered section. You customize numbering depth using \nthe `number-depth` option. \n\nFor example, to only number sections immediately below \nthe chapter level, use this:\n\n```yaml \nnumber-depth: 1\n```\n"}},"documentation":"Schema to use for numbering sections, e.g. 1.A.1","$id":"quarto-resource-document-numbering-number-depth"},"quarto-resource-document-numbering-secnumdepth":{"type":"number","description":"be a number","tags":{"formats":["$pdf-all"],"description":"The numbering depth for sections. (Use `number-depth` instead).","hidden":true},"documentation":"Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.","$id":"quarto-resource-document-numbering-secnumdepth"},"quarto-resource-document-numbering-number-offset":{"_internalId":4716,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4715,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":{"short":"Offset for section headings in output (offsets are 0 by default)","long":"Offset for section headings in output (offsets are 0 by default)\nThe first number is added to the section number for\ntop-level headings, the second for second-level headings, and so on.\nSo, for example, if you want the first top-level heading in your\ndocument to be numbered \"6\", specify `number-offset: 5`. If your\ndocument starts with a level-2 heading which you want to be numbered\n\"1.5\", specify `number-offset: [1,4]`. Implies `number-sections`\n"}},"documentation":"Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.","$id":"quarto-resource-document-numbering-number-offset"},"quarto-resource-document-numbering-section-numbering":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"Schema to use for numbering sections, e.g. `1.A.1`"},"documentation":"Sets the page numbering style and location for the document.","$id":"quarto-resource-document-numbering-section-numbering"},"quarto-resource-document-numbering-shift-heading-level-by":{"type":"number","description":"be a number","documentation":"Treat top-level headings as the given division type\n(default, section, chapter, or\npart). The hierarchy order is part, chapter, then section;\nall headings are shifted such that the top-level heading becomes the\nspecified type.","tags":{"description":{"short":"Shift heading levels by a positive or negative integer. For example, with \n`shift-heading-level-by: -1`, level 2 headings become level 1 headings.\n","long":"Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"}},"$id":"quarto-resource-document-numbering-shift-heading-level-by"},"quarto-resource-document-numbering-page-numbering":{"_internalId":4727,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["typst"],"description":{"short":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n","long":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"}},"documentation":"If true, force the presence of the OJS runtime. If\nfalse, force the absence instead. If unset, the OJS runtime\nis included only if OJS cells are present in the document.","$id":"quarto-resource-document-numbering-page-numbering"},"quarto-resource-document-numbering-pagenumbering":{"_internalId":4733,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4732,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Sets the page numbering style and location for the document.","long":"Sets the page numbering style and location for the document using the\n`\\setuppagenumbering` command. \n\nSee [ConTeXt Page Numbering](https://wiki.contextgarden.net/Command/setuppagenumbering) \nfor additional information.\n"}},"documentation":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","$id":"quarto-resource-document-numbering-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4736,"type":"enum","enum":["default","section","chapter","part"],"description":"be one of: `default`, `section`, `chapter`, `part`","completions":["default","section","chapter","part"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","context","$docbook-all","tei"],"description":{"short":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type.\n","long":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type. \n\nThe default behavior is to determine the\nbest division type via heuristics: unless other conditions\napply, `section` is chosen. When the `documentclass`\nvariable is set to `report`, `book`, or `memoir` (unless the\n`article` option is specified), `chapter` is implied as the\nsetting for this option. If `beamer` is the output format,\nspecifying either `chapter` or `part` will cause top-level\nheadings to become `\\part{..}`, while second-level headings\nremain as their default type.\n"}},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.","$id":"quarto-resource-document-numbering-top-level-division"},"quarto-resource-document-ojs-ojs-engine":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"If `true`, force the presence of the OJS runtime. If `false`, force the absence instead.\nIf unset, the OJS runtime is included only if OJS cells are present in the document.\n"},"documentation":"Theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-ojs-ojs-engine"},"quarto-resource-document-options-reference-doc":{"type":"string","description":"be a string","tags":{"formats":["$office-all","odt"],"description":"Use the specified file as a style reference in producing a docx, \npptx, or odt file.\n"},"documentation":"The light theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4743,"type":"ref","$ref":"brand-path-bool-light-dark","description":"be brand-path-bool-light-dark","documentation":"The light theme name, theme scss file, or a mix of both.","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"$id":"quarto-resource-document-options-brand"},"quarto-resource-document-options-theme":{"_internalId":4768,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4752,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4767,"type":"object","description":"be an object","properties":{"light":{"_internalId":4760,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"Classes to apply to the body of the document."},{"_internalId":4759,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"Classes to apply to the body of the document."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"dark":{"_internalId":4766,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Enables inclusion of Pandoc default CSS for this document."},{"_internalId":4765,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Enables inclusion of Pandoc default CSS for this document."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an array of values, where each element must be a string, an object","tags":{"formats":["$html-doc","revealjs","beamer","dashboard"],"description":"Theme name, theme scss file, or a mix of both."},"documentation":"The dark theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-options-theme"},"quarto-resource-document-options-body-classes":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Classes to apply to the body of the document.\n"},"documentation":"One or more CSS style sheets.","$id":"quarto-resource-document-options-body-classes"},"quarto-resource-document-options-minimal":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Disables the built in html features like theming, anchor sections, code block behavior, and more."},"documentation":"Enables hover over a section title to see an anchor link.","$id":"quarto-resource-document-options-minimal"},"quarto-resource-document-options-document-css":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables inclusion of Pandoc default CSS for this document.","hidden":true},"documentation":"Enables tabsets to present content.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4780,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4779,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"One or more CSS style sheets."},"documentation":"Enables smooth scrolling within the page.","$id":"quarto-resource-document-options-css"},"quarto-resource-document-options-anchor-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables hover over a section title to see an anchor link."},"documentation":"Enables setting dark mode based on the\nprefers-color-scheme media query.","$id":"quarto-resource-document-options-anchor-sections"},"quarto-resource-document-options-tabsets":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables tabsets to present content."},"documentation":"Method use to render math in HTML output","$id":"quarto-resource-document-options-tabsets"},"quarto-resource-document-options-smooth-scroll":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables smooth scrolling within the page."},"documentation":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself.","$id":"quarto-resource-document-options-smooth-scroll"},"quarto-resource-document-options-respect-user-color-scheme":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables setting dark mode based on the `prefers-color-scheme` media query.","long":"If set, Quarto reads the `prefers-color-scheme` media query to determine whether to show\nthe user a dark or light page. Otherwise the author-preferred color scheme is shown.\n"}},"documentation":"Specify a prefix to be added to all identifiers and internal\nlinks.","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4802,"type":"anyOf","anyOf":[{"_internalId":4793,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4801,"type":"object","description":"be an object","properties":{"method":{"_internalId":4798,"type":"ref","$ref":"math-methods","description":"be math-methods"},"url":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["method"]}],"description":"be at least one of: math-methods, an object","tags":{"formats":["$html-doc","$epub-all","gfm"],"description":{"short":"Method use to render math in HTML output","long":"Method use to render math in HTML output (`plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`).\n\nSee the Pandoc documentation on [Math Rendering in HTML](https://pandoc.org/MANUAL.html#math-rendering-in-html)\nfor additional details.\n"}},"documentation":"Method for obfuscating mailto: links in HTML documents.","$id":"quarto-resource-document-options-html-math-method"},"quarto-resource-document-options-section-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Wrap sections in `
` tags and attach identifiers to the enclosing `
`\nrather than the heading itself.\n"},"documentation":"Use <q> tags for quotes in HTML.","$id":"quarto-resource-document-options-section-divs"},"quarto-resource-document-options-identifier-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files","$docbook-all","$markdown-all","haddock"],"description":{"short":"Specify a prefix to be added to all identifiers and internal links.","long":"Specify a prefix to be added to all identifiers and internal links in HTML and\nDocBook output, and to footnote numbers in Markdown and Haddock output. \nThis is useful for preventing duplicate identifiers when generating fragments\nto be included in other pages.\n"}},"documentation":"Use the specified engine when producing PDF output.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4809,"type":"enum","enum":["none","references","javascript"],"description":"be one of: `none`, `references`, `javascript`","completions":["none","references","javascript"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Method for obfuscating mailto: links in HTML documents.","long":"Specify a method for obfuscating `mailto:` links in HTML documents.\n\n- `javascript`: Obfuscate links using JavaScript.\n- `references`: Obfuscate links by printing their letters as decimal or hexadecimal character references.\n- `none` (default): Do not obfuscate links.\n"}},"documentation":"Use the given string as a command-line argument to the\npdf-engine.","$id":"quarto-resource-document-options-email-obfuscation"},"quarto-resource-document-options-html-q-tags":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Use `` tags for quotes in HTML."},"documentation":"Pass multiple command-line arguments to the\npdf-engine.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4814,"type":"enum","enum":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"description":"be one of: `pdflatex`, `lualatex`, `xelatex`, `latexmk`, `tectonic`, `wkhtmltopdf`, `weasyprint`, `pagedjs-cli`, `prince`, `context`, `pdfroff`, `typst`","completions":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the specified engine when producing PDF output.","long":"Use the specified engine when producing PDF output. If the engine is not\nin your PATH, the full path of the engine may be specified here. If this\noption is not specified, Quarto uses the following defaults\ndepending on the output format in use:\n\n- `latex`: `lualatex` (other options: `pdflatex`, `xelatex`,\n `tectonic`, `latexmk`)\n- `context`: `context`\n- `html`: `wkhtmltopdf` (other options: `prince`, `weasyprint`, `pagedjs-cli`;\n see [print-css.rocks](https://print-css.rocks) for a good\n introduction to PDF generation from HTML/CSS.)\n- `ms`: `pdfroff`\n- `typst`: `typst`\n"}},"documentation":"Whether to produce a Beamer article from this presentation.","$id":"quarto-resource-document-options-pdf-engine"},"quarto-resource-document-options-pdf-engine-opt":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the given string as a command-line argument to the `pdf-engine`.","long":"Use the given string as a command-line argument to the pdf-engine.\nFor example, to use a persistent directory foo for latexmk’s auxiliary\nfiles, use `pdf-engine-opt: -outdir=foo`. Note that no check for \nduplicate options is done.\n"}},"documentation":"Add an extra Beamer option using \\setbeameroption{}.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4821,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Pass multiple command-line arguments to the `pdf-engine`.","long":"Use the given strings passed as a array as command-line arguments to the pdf-engine.\nThis is an alternative to `pdf-engine-opt` for passing multiple options.\n"}},"documentation":"The aspect ratio for this presentation.","$id":"quarto-resource-document-options-pdf-engine-opts"},"quarto-resource-document-options-beamerarticle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf"],"description":"Whether to produce a Beamer article from this presentation."},"documentation":"The logo image.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Add an extra Beamer option using `\\setbeameroption{}`."},"documentation":"The image for the title slide.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4832,"type":"enum","enum":[43,169,1610,149,141,54,32],"description":"be one of: `43`, `169`, `1610`, `149`, `141`, `54`, `32`","completions":["43","169","1610","149","141","54","32"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"The aspect ratio for this presentation."},"documentation":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$id":"quarto-resource-document-options-aspectratio"},"quarto-resource-document-options-logo":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The logo image."},"documentation":"Whether to enable title pages for new sections.","$id":"quarto-resource-document-options-logo"},"quarto-resource-document-options-titlegraphic":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The image for the title slide."},"documentation":"The Beamer color theme for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4839,"type":"enum","enum":["empty","frame","vertical","horizontal"],"description":"be one of: `empty`, `frame`, `vertical`, `horizontal`","completions":["empty","frame","vertical","horizontal"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Controls navigation symbols for the presentation (`empty`, `frame`, `vertical`, or `horizontal`)"},"documentation":"The Beamer color theme options for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-navigation"},"quarto-resource-document-options-section-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Whether to enable title pages for new sections."},"documentation":"The Beamer font theme for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-section-titles"},"quarto-resource-document-options-colortheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer color theme for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer font theme options for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4848,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer color theme options for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer inner theme for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-colorthemeoptions"},"quarto-resource-document-options-fonttheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer font theme for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer inner theme options for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4857,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4856,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer font theme options for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer outer theme for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-fontthemeoptions"},"quarto-resource-document-options-innertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer inner theme for this presentation, passed to `\\useinnertheme`."},"documentation":"The Beamer outer theme options for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4865,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4864,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer inner theme options for this presentation, passed to `\\useinnertheme`."},"documentation":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-innerthemeoptions"},"quarto-resource-document-options-outertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer outer theme for this presentation, passed to `\\useoutertheme`."},"documentation":"The section number in man pages.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4873,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4872,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer outer theme options for this presentation, passed to `\\useoutertheme`."},"documentation":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_internalId":4879,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4878,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Options passed to LaTeX Beamer themes inside `\\usetheme`."},"documentation":"Specify whether to use atx (#-prefixed) or\nsetext (underlined) headings for level 1 and 2 headings\n(atx or setext).","$id":"quarto-resource-document-options-themeoptions"},"quarto-resource-document-options-section":{"type":"number","description":"be a number","tags":{"formats":["man"],"description":"The section number in man pages."},"documentation":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-section"},"quarto-resource-document-options-variant":{"type":"string","description":"be a string","tags":{"formats":["$markdown-all"],"description":"Enable and disable extensions for markdown output (e.g. \"+emoji\")\n"},"documentation":"semver version range for required quarto version","$id":"quarto-resource-document-options-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4886,"type":"enum","enum":["setext","atx"],"description":"be one of: `setext`, `atx`","completions":["setext","atx"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","ipynb"],"description":"Specify whether to use `atx` (`#`-prefixed) or\n`setext` (underlined) headings for level 1 and 2\nheadings (`atx` or `setext`).\n"},"documentation":"The mode to use when previewing this document.","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4889,"type":"enum","enum":["none","all","best"],"description":"be one of: `none`, `all`, `best`","completions":["none","all","best"],"exhaustiveCompletions":true,"tags":{"formats":["ipynb"],"description":{"short":"Determines which ipynb cell output formats are rendered (`none`, `all`, or `best`).","long":"Determines which ipynb cell output formats are rendered.\n\n- `all`: Preserve all of the data formats included in the original.\n- `none`: Omit the contents of data cells.\n- `best` (default): Instruct pandoc to try to pick the\n richest data block in each output cell that is compatible\n with the output format.\n"}},"documentation":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"When used in conjunction with pdfa, specifies the ICC\nprofile to use in the PDF, e.g. default.cmyk.","tags":{"description":{"short":"semver version range for required quarto version","long":"A semver version range describing the supported quarto versions for this document\nor project.\n\nExamples:\n\n- `>= 1.1.0`: Require at least quarto version 1.1\n- `1.*`: Require any quarto versions whose major version number is 1\n"}},"$id":"quarto-resource-document-options-quarto-required"},"quarto-resource-document-options-preview-mode":{"type":"string","description":"be a string","tags":{"formats":["$jats-all","gfm"],"description":{"short":"The mode to use when previewing this document.","long":"The mode to use when previewing this document. To disable any special\npreviewing features, pass `raw` as the preview-mode.\n"}},"documentation":"When used in conjunction with pdfa, specifies the output\nintent for the colors.","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4900,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["context"],"description":{"short":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.","long":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.\n\nIf the value is set to `true`, `1b:2005` will be used as default.\n\nTo successfully generate PDF/A the required\nICC color profiles have to be available and the content and all\nincluded files (such as images) have to be standard conforming.\nThe ICC profiles and output intent may be specified using the\nvariables `pdfaiccprofile` and `pdfaintent`. See also [ConTeXt\nPDFA](https://wiki.contextgarden.net/PDF/A) for more details.\n"}},"documentation":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4906,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4905,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n","long":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n\nIf left unspecified, `sRGB.icc` is used as default. May be repeated to \ninclude multiple profiles. Note that the profiles have to be available \non the system. They can be obtained from \n[ConTeXt ICC Profiles](https://wiki.contextgarden.net/PDFX#ICC_profiles).\n"}},"documentation":"Citation Style Language file to use for formatting references.","$id":"quarto-resource-document-pdfa-pdfaiccprofile"},"quarto-resource-document-pdfa-pdfaintent":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the output intent for the colors.","long":"When used in conjunction with `pdfa`, specifies the output intent for\nthe colors, for example `ISO coated v2 300\\letterpercent\\space (ECI)`\n\nIf left unspecified, `sRGB IEC61966-2.1` is used as default.\n"}},"documentation":"Enables a hover popup for citation that shows the reference\ninformation.","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-references-bibliography":{"_internalId":4914,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4913,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Document bibliography (BibTeX or CSL). May be a single file or a list of files\n"},"documentation":"Where citation information should be displayed (document\nor margin)","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Method used to format citations (citeproc,\nnatbib, or biblatex).","tags":{"description":"Citation Style Language file to use for formatting references."},"$id":"quarto-resource-document-references-csl"},"quarto-resource-document-references-citations-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for citation that shows the reference information."},"documentation":"Turn on built-in citation processing","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4921,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","typst"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"A list of options for BibLaTeX.","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":4924,"type":"enum","enum":["citeproc","natbib","biblatex"],"description":"be one of: `citeproc`, `natbib`, `biblatex`","completions":["citeproc","natbib","biblatex"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Method used to format citations (`citeproc`, `natbib`, or `biblatex`).\n"},"documentation":"One or more options to provide for natbib when\ngenerating a bibliography.","$id":"quarto-resource-document-references-cite-method"},"quarto-resource-document-references-citeproc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"The bibliography style to use\n(e.g. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","tags":{"description":{"short":"Turn on built-in citation processing","long":"Turn on built-in citation processing. To use this feature, you will need\nto have a document containing citations and a source of bibliographic data: \neither an external bibliography file or a list of `references` in the \ndocument's YAML metadata. You can optionally also include a `csl` \ncitation style file.\n"}},"$id":"quarto-resource-document-references-citeproc"},"quarto-resource-document-references-biblatexoptions":{"_internalId":4932,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4931,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"A list of options for BibLaTeX."},"documentation":"The bibliography style to use\n(e.g. #set bibliography(style: \"apa\")) when using typst\nbuilt-in citation system (e.g when not citeproc: true).","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":4938,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4937,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"One or more options to provide for `natbib` when generating a bibliography."},"documentation":"The bibliography title to use when using natbib or\nbiblatex.","$id":"quarto-resource-document-references-natbiboptions"},"quarto-resource-document-references-biblio-style":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography style to use (e.g. `\\bibliographystyle{dinat}`) when using `natbib` or `biblatex`."},"documentation":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","$id":"quarto-resource-document-references-biblio-style"},"quarto-resource-document-references-bibliographystyle":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The bibliography style to use (e.g. `#set bibliography(style: \"apa\")`) when using typst built-in citation system (e.g when not `citeproc: true`)."},"documentation":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","$id":"quarto-resource-document-references-bibliographystyle"},"quarto-resource-document-references-biblio-title":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography title to use when using `natbib` or `biblatex`."},"documentation":"If true, citations will be hyperlinked to the corresponding\nbibliography entries (for author-date and numerical styles only).\nDefaults to false.","$id":"quarto-resource-document-references-biblio-title"},"quarto-resource-document-references-biblio-config":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Controls whether to output bibliography configuration for `natbib` or `biblatex` when cite method is not `citeproc`."},"documentation":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","$id":"quarto-resource-document-references-biblio-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","tags":{"description":{"short":"JSON file containing abbreviations of journals that should be used in formatted bibliographies.","long":"JSON file containing abbreviations of journals that should be\nused in formatted bibliographies when `form=\"short\"` is\nspecified. The format of the file can be illustrated with an\nexample:\n\n```json\n{ \"default\": {\n \"container-title\": {\n \"Lloyd's Law Reports\": \"Lloyd's Rep\",\n \"Estates Gazette\": \"EG\",\n \"Scots Law Times\": \"SLT\"\n }\n }\n}\n```\n"}},"$id":"quarto-resource-document-references-citation-abbreviations"},"quarto-resource-document-references-link-citations":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":"If true, citations will be hyperlinked to the corresponding bibliography entries (for author-date and numerical styles only). Defaults to false."},"documentation":"Format to read from","$id":"quarto-resource-document-references-link-citations"},"quarto-resource-document-references-link-bibliography":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks.","long":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks. (If an entry contains a DOI, PMCID, PMID, or URL, but none of \nthese fields are rendered by the style, then the title, or in the absence of a title the whole entry, will be hyperlinked.) Defaults to true.\n"}},"documentation":"Format to read from","$id":"quarto-resource-document-references-link-bibliography"},"quarto-resource-document-references-notes-after-punctuation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"Places footnote references or superscripted numerical citations after following punctuation.","long":"If true (the default for note styles), Quarto (via Pandoc) will put footnote references or superscripted numerical citations after \nfollowing punctuation. For example, if the source contains `blah blah [@jones99]`., the result will look like `blah blah.[^1]`, with \nthe note moved after the period and the space collapsed. \n\nIf false, the space will still be collapsed, but the footnote will not be moved after the punctuation. The option may also be used \nin numerical styles that use superscripts for citation numbers (but for these styles the default is not to move the citation).\n"}},"documentation":"Output file to write to","$id":"quarto-resource-document-references-notes-after-punctuation"},"quarto-resource-document-render-from":{"type":"string","description":"be a string","documentation":"Extension to use for generated output file","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-from"},"quarto-resource-document-render-reader":{"type":"string","description":"be a string","documentation":"Use the specified file as a custom template for the generated\ndocument.","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-reader"},"quarto-resource-document-render-output-file":{"_internalId":4959,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Include the specified files as partials accessible to the template\nfor the generated content.","tags":{"description":"Output file to write to"},"$id":"quarto-resource-document-render-output-file"},"quarto-resource-document-render-output-ext":{"type":"string","description":"be a string","documentation":"Produce a standalone HTML file with no external dependencies","tags":{"description":"Extension to use for generated output file\n"},"$id":"quarto-resource-document-render-output-ext"},"quarto-resource-document-render-template":{"type":"string","description":"be a string","tags":{"formats":["!$office-all","!ipynb"],"description":"Use the specified file as a custom template for the generated document.\n"},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-render-template"},"quarto-resource-document-render-template-partials":{"_internalId":4969,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4968,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!ipynb"],"description":"Include the specified files as partials accessible to the template for the generated content.\n"},"documentation":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$id":"quarto-resource-document-render-template-partials"},"quarto-resource-document-render-embed-resources":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies, using\n`data:` URIs to incorporate the contents of linked scripts, stylesheets,\nimages, and videos. The resulting file should be \"self-contained,\" in the\nsense that it needs no external files and no net access to be displayed\nproperly by a browser. This option works only with HTML output formats,\nincluding `html4`, `html5`, `html+lhs`, `html5+lhs`, `s5`, `slidy`,\n`slideous`, `dzslides`, and `revealjs`. Scripts, images, and stylesheets at\nabsolute URLs will be downloaded; those at relative URLs will be sought\nrelative to the working directory (if the first source\nfile is local) or relative to the base URL (if the first source\nfile is remote). Elements with the attribute\n`data-external=\"1\"` will be left alone; the documents they\nlink to will not be incorporated in the document.\nLimitation: resources that are loaded dynamically through\nJavaScript cannot be incorporated; as a result, some\nadvanced features (e.g. zoom or speaker notes) may not work\nin an offline \"self-contained\" `reveal.js` slide show.\n"}},"documentation":"Specify executables or Lua scripts to be used as a filter\ntransforming the pandoc AST after the input is parsed and before the\noutput is written.","$id":"quarto-resource-document-render-embed-resources"},"quarto-resource-document-render-self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies. Note that\nthis option has been deprecated in favor of `embed-resources`.\n"},"hidden":true},"documentation":"Specify Lua scripts that implement shortcode handlers","$id":"quarto-resource-document-render-self-contained"},"quarto-resource-document-render-self-contained-math":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Embed math libraries (e.g. MathJax) within `self-contained` output.","long":"Embed math libraries (e.g. MathJax) within `self-contained` output.\nNote that math libraries are not embedded by default because they are \n quite large and often time consuming to download.\n"}},"documentation":"Keep the markdown file generated by executing code","$id":"quarto-resource-document-render-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":4978,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"Keep the notebook file generated from executing code.","tags":{"description":"Specify executables or Lua scripts to be used as a filter transforming\nthe pandoc AST after the input is parsed and before the output is written.\n"},"$id":"quarto-resource-document-render-filters"},"quarto-resource-document-render-shortcodes":{"_internalId":4981,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Filters to pre-process ipynb files before rendering to markdown","tags":{"description":"Specify Lua scripts that implement shortcode handlers\n"},"$id":"quarto-resource-document-render-shortcodes"},"quarto-resource-document-render-keep-md":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the markdown file generated by executing code"},"documentation":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-keep-md"},"quarto-resource-document-render-keep-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the notebook file generated from executing code."},"documentation":"If true, use the “notebook_connected” plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view.","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":4990,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"contexts":["document-execute"],"description":"Filters to pre-process ipynb files before rendering to markdown"},"documentation":"Keep the intermediate typst file used during render.","$id":"quarto-resource-document-render-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":4993,"type":"enum","enum":[null,"all","last","last_expr","none","last_expr_or_assign"],"description":"be one of: `null`, `all`, `last`, `last_expr`, `none`, `last_expr_or_assign`","completions":["null","all","last","last_expr","none","last_expr_or_assign"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"Specify which nodes should be run interactively (displaying output from expressions)\n"},"documentation":"Keep the intermediate tex file used during render.","$id":"quarto-resource-document-render-ipynb-shell-interactivity"},"quarto-resource-document-render-plotly-connected":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"If true, use the \"notebook_connected\" plotly renderer, which downloads\nits dependencies from a CDN and requires an internet connection to view.\n"},"documentation":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","$id":"quarto-resource-document-render-plotly-connected"},"quarto-resource-document-render-keep-typ":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"Keep the intermediate typst file used during render."},"documentation":"List of paths to search for images and other resources.","$id":"quarto-resource-document-render-keep-typ"},"quarto-resource-document-render-keep-tex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Keep the intermediate tex file used during render."},"documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","tags":{"description":{"short":"Extract images and other media contained in or linked from the source document to the\npath DIR.\n","long":"Extract images and other media contained in or linked from the source document to the\npath DIR, creating it if necessary, and adjust the images references in the document\nso they point to the extracted files. Media are downloaded, read from the file\nsystem, or extracted from a binary container (e.g. docx), as needed. The original\nfile paths are used if they are relative paths not containing ... Otherwise filenames\nare constructed from the SHA1 hash of the contents.\n"}},"$id":"quarto-resource-document-render-extract-media"},"quarto-resource-document-render-resource-path":{"_internalId":5006,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Specify the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","tags":{"description":"List of paths to search for images and other resources.\n"},"$id":"quarto-resource-document-render-resource-path"},"quarto-resource-document-render-default-image-extension":{"type":"string","description":"be a string","documentation":"If none, do not process tables in HTML input.","tags":{"description":{"short":"Specify a default extension to use when image paths/URLs have no extension.\n","long":"Specify a default extension to use when image paths/URLs have no\nextension. This allows you to use the same source for formats that\nrequire different kinds of images. Currently this option only affects\nthe Markdown and LaTeX readers.\n"}},"$id":"quarto-resource-document-render-default-image-extension"},"quarto-resource-document-render-abbreviations":{"type":"string","description":"be a string","documentation":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","tags":{"description":{"short":"Specifies a custom abbreviations file, with abbreviations one to a line.\n","long":"Specifies a custom abbreviations file, with abbreviations one to a line.\nThis list is used when reading Markdown input: strings found in this list\nwill be followed by a nonbreaking space, and the period will not produce sentence-ending space in formats like LaTeX. The strings may not contain\nspaces.\n"}},"$id":"quarto-resource-document-render-abbreviations"},"quarto-resource-document-render-dpi":{"type":"number","description":"be a number","documentation":"CSS property translation","tags":{"description":{"short":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n","long":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"}},"$id":"quarto-resource-document-render-dpi"},"quarto-resource-document-render-html-table-processing":{"_internalId":5015,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","tags":{"description":"If `none`, do not process tables in HTML input."},"$id":"quarto-resource-document-render-html-table-processing"},"quarto-resource-document-render-html-pre-tag-processing":{"_internalId":5018,"type":"enum","enum":["none","parse"],"description":"be one of: `none`, `parse`","completions":["none","parse"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"If `none`, ignore any divs with `html-pre-tag-processing=parse` enabled."},"documentation":"Logo image (placed in bottom right corner of slides)","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5021,"type":"enum","enum":["none","translate"],"description":"be one of: `none`, `translate`","completions":["none","translate"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"CSS property translation","long":"If `translate`, translate CSS properties into output format properties. If `none`, do not process css properties."}},"documentation":"Footer to include on all slides","$id":"quarto-resource-document-render-css-property-processing"},"quarto-resource-document-render-use-rsvg-convert":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"If `true`, attempt to use `rsvg-convert` to convert SVG images to PDF."},"documentation":"Allow content that overflows slides vertically to scroll","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5026,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["revealjs"],"description":"Logo image (placed in bottom right corner of slides)"},"documentation":"Use a smaller default font for slide content","$id":"quarto-resource-document-reveal-content-logo"},"quarto-resource-document-reveal-content-footer":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Footer to include on all slides","long":"Footer to include on all slides. Can also be set per-slide by including a\ndiv with class `.footer` on the slide.\n"}},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-document-reveal-content-footer"},"quarto-resource-document-reveal-content-scrollable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Allow content that overflows slides vertically to scroll","long":"`true` to allow content that overflows slides vertically to scroll. This can also\nbe set per-slide by including the `.scrollable` class on the slide title.\n"}},"documentation":"Flags if the presentation is running in an embedded mode","$id":"quarto-resource-document-reveal-content-scrollable"},"quarto-resource-document-reveal-content-smaller":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Use a smaller default font for slide content","long":"`true` to use a smaller default font for slide content. This can also\nbe set per-slide by including the `.smaller` class on the slide title.\n"}},"documentation":"The display mode that will be used to show slides","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5035,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$id":"quarto-resource-document-reveal-content-output-location"},"quarto-resource-document-reveal-hidden-embedded":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags if the presentation is running in an embedded mode\n","hidden":true},"documentation":"The ‘normal’ width of the presentation","$id":"quarto-resource-document-reveal-hidden-embedded"},"quarto-resource-document-reveal-hidden-display":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"The display mode that will be used to show slides","hidden":true},"documentation":"The ‘normal’ height of the presentation","$id":"quarto-resource-document-reveal-hidden-display"},"quarto-resource-document-reveal-layout-auto-stretch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"For slides with a single top-level image, automatically stretch it to fill the slide."},"documentation":"For revealjs, the factor of the display size that should\nremain empty around the content (e.g. 0.1).\nFor typst, a dictionary with the fields defined in the\nTypst documentation: x, y, top,\nbottom, left, right (margins are\nspecified in cm units, e.g. 5cm).","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5048,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' width of the presentation","long":"The \"normal\" width of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"Horizontal margin (e.g. 5cm)","$id":"quarto-resource-document-reveal-layout-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5055,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' height of the presentation","long":"The \"normal\" height of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"Vertical margin (e.g. 5cm)","$id":"quarto-resource-document-reveal-layout-height"},"quarto-resource-document-reveal-layout-margin":{"_internalId":5075,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5074,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 5cm)"},"documentation":"Bottom margin (e.g. 5cm)"},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 5cm)"},"documentation":"Left margin (e.g. 5cm)"},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 5cm)"},"documentation":"Right margin (e.g. 5cm)"},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 5cm)"},"documentation":"Bounds for smallest possible scale to apply to content"},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 5cm)"},"documentation":"Bounds for largest possible scale to apply to content"},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 5cm)"},"documentation":"Vertical centering of slides"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a number, an object","tags":{"formats":["revealjs","typst"],"description":"For `revealjs`, the factor of the display size that should remain empty around the content (e.g. 0.1).\n\nFor `typst`, a dictionary with the fields defined in the Typst documentation:\n`x`, `y`, `top`, `bottom`, `left`, `right` (margins are specified in `cm` units,\ne.g. `5cm`).\n"},"documentation":"Top margin (e.g. 5cm)","$id":"quarto-resource-document-reveal-layout-margin"},"quarto-resource-document-reveal-layout-min-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for smallest possible scale to apply to content"},"documentation":"Disables the default reveal.js slide layout (scaling and\ncentering)","$id":"quarto-resource-document-reveal-layout-min-scale"},"quarto-resource-document-reveal-layout-max-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for largest possible scale to apply to content"},"documentation":"Sets the maximum height for source code blocks that appear in the\npresentation.","$id":"quarto-resource-document-reveal-layout-max-scale"},"quarto-resource-document-reveal-layout-center":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of slides"},"documentation":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$id":"quarto-resource-document-reveal-layout-center"},"quarto-resource-document-reveal-layout-disable-layout":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Disables the default reveal.js slide layout (scaling and centering)\n"},"documentation":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-layout-disable-layout"},"quarto-resource-document-reveal-layout-code-block-height":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Sets the maximum height for source code blocks that appear in the presentation.\n"},"documentation":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5093,"type":"anyOf","anyOf":[{"_internalId":5090,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'auto', `true` or `false`","tags":{"formats":["revealjs"],"description":{"short":"Open links in an iframe preview overlay (`true`, `false`, or `auto`)","long":"Open links in an iframe preview overlay.\n\n- `true`: Open links in iframe preview overlay\n- `false`: Do not open links in iframe preview overlay\n- `auto` (default): Open links in iframe preview overlay, in fullscreen mode.\n"}},"documentation":"Number of slides away from the current slide to pre-load resources\nfor","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5096,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Autoplay embedded media (`null`, `true`, or `false`). Default is `null` (only when `autoplay` \nattribute is specified)\n"},"documentation":"Number of slides away from the current slide to pre-load resources\nfor (on mobile devices).","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5099,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Global override for preloading lazy-loaded iframes (`null`, `true`, or `false`).","long":"Global override for preloading lazy-loaded iframes\n\n- `null`: Iframes with data-src AND data-preload will be loaded when within\n the `viewDistance`, iframes with only data-src will be loaded when visible\n- `true`: All iframes with data-src will be loaded when within the viewDistance\n- `false`: All iframes with data-src will be loaded only when visible\n"}},"documentation":"Parallax background image","$id":"quarto-resource-document-reveal-media-preload-iframes"},"quarto-resource-document-reveal-media-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for"},"documentation":"Parallax background size (e.g. ‘2100px 900px’)","$id":"quarto-resource-document-reveal-media-view-distance"},"quarto-resource-document-reveal-media-mobile-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for (on mobile devices).\n"},"documentation":"Number of pixels to move the parallax background horizontally per\nslide.","$id":"quarto-resource-document-reveal-media-mobile-view-distance"},"quarto-resource-document-reveal-media-parallax-background-image":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background image"},"documentation":"Number of pixels to move the parallax background vertically per\nslide.","$id":"quarto-resource-document-reveal-media-parallax-background-image"},"quarto-resource-document-reveal-media-parallax-background-size":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background size (e.g. '2100px 900px')"},"documentation":"Display a presentation progress bar","$id":"quarto-resource-document-reveal-media-parallax-background-size"},"quarto-resource-document-reveal-media-parallax-background-horizontal":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background horizontally per slide."},"documentation":"Push each slide change to the browser history","$id":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"quarto-resource-document-reveal-media-parallax-background-vertical":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background vertically per slide."},"documentation":"Navigation progression (linear, vertical,\nor grid)","$id":"quarto-resource-document-reveal-media-parallax-background-vertical"},"quarto-resource-document-reveal-navigation-progress":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Display a presentation progress bar"},"documentation":"Enable touch navigation on devices with touch input","$id":"quarto-resource-document-reveal-navigation-progress"},"quarto-resource-document-reveal-navigation-history":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Push each slide change to the browser history\n"},"documentation":"Enable keyboard shortcuts for navigation","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5118,"type":"enum","enum":["linear","vertical","grid"],"description":"be one of: `linear`, `vertical`, `grid`","completions":["linear","vertical","grid"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Navigation progression (`linear`, `vertical`, or `grid`)","long":"Changes the behavior of navigation directions.\n\n- `linear`: Removes the up/down arrows. Left/right arrows step through all\n slides (both horizontal and vertical).\n\n- `vertical`: Left/right arrow keys step between horizontal slides, up/down\n arrow keys step between vertical slides. Space key steps through\n all slides (both horizontal and vertical).\n\n- `grid`: When this is enabled, stepping left/right from a vertical stack\n to an adjacent vertical stack will land you at the same vertical\n index.\n"}},"documentation":"Enable slide navigation via mouse wheel","$id":"quarto-resource-document-reveal-navigation-navigation-mode"},"quarto-resource-document-reveal-navigation-touch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable touch navigation on devices with touch input\n"},"documentation":"Hide cursor if inactive","$id":"quarto-resource-document-reveal-navigation-touch"},"quarto-resource-document-reveal-navigation-keyboard":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable keyboard shortcuts for navigation"},"documentation":"Time before the cursor is hidden (in ms)","$id":"quarto-resource-document-reveal-navigation-keyboard"},"quarto-resource-document-reveal-navigation-mouse-wheel":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable slide navigation via mouse wheel"},"documentation":"Loop the presentation","$id":"quarto-resource-document-reveal-navigation-mouse-wheel"},"quarto-resource-document-reveal-navigation-hide-inactive-cursor":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Hide cursor if inactive"},"documentation":"Randomize the order of slides each time the presentation loads","$id":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"quarto-resource-document-reveal-navigation-hide-cursor-time":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Time before the cursor is hidden (in ms)"},"documentation":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$id":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"quarto-resource-document-reveal-navigation-loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Loop the presentation"},"documentation":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-loop"},"quarto-resource-document-reveal-navigation-shuffle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Randomize the order of slides each time the presentation loads"},"documentation":"Help the user learn the controls by providing visual hints.","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5140,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5139,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"formats":["revealjs"],"description":{"short":"Show arrow controls for navigating through slides (`true`, `false`, or `auto`).","long":"Show arrow controls for navigating through slides.\n\n- `true`: Always show controls\n- `false`: Never show controls\n- `auto` (default): Show controls when vertical slides are present or when the deck is embedded in an iframe.\n"}},"documentation":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5143,"type":"enum","enum":["edges","bottom-right"],"description":"be one of: `edges`, `bottom-right`","completions":["edges","bottom-right"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Location for navigation controls (`edges` or `bottom-right`)"},"documentation":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-controls-layout"},"quarto-resource-document-reveal-navigation-controls-tutorial":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Help the user learn the controls by providing visual hints."},"documentation":"Stop auto-sliding after user input","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5148,"type":"enum","enum":["faded","hidden","visible"],"description":"be one of: `faded`, `hidden`, `visible`","completions":["faded","hidden","visible"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Visibility rule for backwards navigation arrows (`faded`, `hidden`, or `visible`).\n"},"documentation":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5156,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5155,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, 'false'","tags":{"formats":["revealjs"],"description":"Automatically progress all slides at the specified interval"},"documentation":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$id":"quarto-resource-document-reveal-navigation-auto-slide"},"quarto-resource-document-reveal-navigation-auto-slide-stoppable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Stop auto-sliding after user input"},"documentation":"Flags whether it should be possible to pause the presentation\n(blackout)","$id":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"quarto-resource-document-reveal-navigation-auto-slide-method":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Navigation method to use when auto sliding (defaults to navigateNext)"},"documentation":"Show a help overlay when the ? key is pressed","$id":"quarto-resource-document-reveal-navigation-auto-slide-method"},"quarto-resource-document-reveal-navigation-default-timing":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Expected average seconds per slide (used by pacing timer in speaker view)"},"documentation":"Add the current slide to the URL hash","$id":"quarto-resource-document-reveal-navigation-default-timing"},"quarto-resource-document-reveal-navigation-pause":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags whether it should be possible to pause the presentation (blackout)\n"},"documentation":"URL hash type (number or title)","$id":"quarto-resource-document-reveal-navigation-pause"},"quarto-resource-document-reveal-navigation-help":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Show a help overlay when the `?` key is pressed\n"},"documentation":"Use 1 based indexing for hash links to match slide number","$id":"quarto-resource-document-reveal-navigation-help"},"quarto-resource-document-reveal-navigation-hash":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Add the current slide to the URL hash"},"documentation":"Monitor the hash and change slides accordingly","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5171,"type":"enum","enum":["number","title"],"description":"be one of: `number`, `title`","completions":["number","title"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"URL hash type (`number` or `title`)"},"documentation":"Include the current fragment in the URL","$id":"quarto-resource-document-reveal-navigation-hash-type"},"quarto-resource-document-reveal-navigation-hash-one-based-index":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Use 1 based indexing for hash links to match slide number\n"},"documentation":"Play a subtle sound when changing slides","$id":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"quarto-resource-document-reveal-navigation-respond-to-hash-changes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Monitor the hash and change slides accordingly\n"},"documentation":"Deactivate jump to slide feature.","$id":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"quarto-resource-document-reveal-navigation-fragment-in-url":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Include the current fragment in the URL"},"documentation":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$id":"quarto-resource-document-reveal-navigation-fragment-in-url"},"quarto-resource-document-reveal-navigation-slide-tone":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Play a subtle sound when changing slides"},"documentation":"Prints each fragment on a separate slide","$id":"quarto-resource-document-reveal-navigation-slide-tone"},"quarto-resource-document-reveal-navigation-jump-to-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Deactivate jump to slide feature."},"documentation":"Offset used to reduce the height of content within exported PDF\npages.","$id":"quarto-resource-document-reveal-navigation-jump-to-slide"},"quarto-resource-document-reveal-print-pdf-max-pages-per-slide":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Slides that are too tall to fit within a single page will expand onto multiple pages","long":"Slides that are too tall to fit within a single page will expand onto multiple pages. You can limit how many pages a slide may expand to using this option.\n"}},"documentation":"Enable the slide overview mode","$id":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"quarto-resource-document-reveal-print-pdf-separate-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Prints each fragment on a separate slide"},"documentation":"Configuration for revealjs menu.","$id":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"quarto-resource-document-reveal-print-pdf-page-height-offset":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Offset used to reduce the height of content within exported PDF pages.","long":"Offset used to reduce the height of content within exported PDF pages.\nThis exists to account for environment differences based on how you\nprint to PDF. CLI printing options, like phantomjs and wkpdf, can end\non precisely the total height of the document whereas in-browser\nprinting has to end one pixel before.\n"}},"documentation":"Side of the presentation where the menu will be shown\n(left or right)","$id":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"quarto-resource-document-reveal-tools-overview":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable the slide overview mode"},"documentation":"Width of the menu","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5206,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5205,"type":"object","description":"be an object","properties":{"side":{"_internalId":5198,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"Side of the presentation where the menu will be shown (`left` or `right`)"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead."},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"Configuration for revealjs chalkboard."},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"Visual theme for drawing surface (chalkboard or\nwhiteboard)"},"use-text-content-for-missing-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"For slides with no title, attempt to use the start of the text content as the title instead.\n"},"documentation":"The drawing width of the boardmarker. Defaults to 3. Larger values\ndraw thicker lines."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention side,width,numbers,use-text-content-for-missing-titles","type":"string","pattern":"(?!(^use_text_content_for_missing_titles$|^useTextContentForMissingTitles$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs menu."},"documentation":"Add slide numbers to menu items","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5229,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5228,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5215,"type":"enum","enum":["chalkboard","whiteboard"],"description":"be one of: `chalkboard`, `whiteboard`","completions":["chalkboard","whiteboard"],"exhaustiveCompletions":true,"tags":{"description":"Visual theme for drawing surface (`chalkboard` or `whiteboard`)"},"documentation":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)"},"boardmarker-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the boardmarker. Defaults to 3. Larger values draw thicker lines.\n"},"documentation":"Configuration option to prevent changes to existing drawings"},"chalk-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the chalk. Defaults to 7. Larger values draw thicker lines.\n"},"documentation":"Add chalkboard buttons at the bottom of the slide"},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."},"read-only":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Configuration option to prevent changes to existing drawings\n"},"documentation":"Configuration for reveal presentation multiplexing."},"buttons":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add chalkboard buttons at the bottom of the slide\n"},"documentation":"Multiplex token server (defaults to Reveal-hosted server)"},"transition":{"type":"number","description":"be a number","tags":{"description":"Gives the duration (in ms) of the transition for a slide change, \nso that the notes canvas is drawn after the transition is completed.\n"},"documentation":"Unique presentation id provided by multiplex token server"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention theme,boardmarker-width,chalk-width,src,read-only,buttons,transition","type":"string","pattern":"(?!(^boardmarker_width$|^boardmarkerWidth$|^chalk_width$|^chalkWidth$|^read_only$|^readOnly$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs chalkboard."},"documentation":"The drawing width of the chalk. Defaults to 7. Larger values draw\nthicker lines.","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5243,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5242,"type":"object","description":"be an object","properties":{"url":{"type":"string","description":"be a string","tags":{"description":"Multiplex token server (defaults to Reveal-hosted server)\n"},"documentation":"Control the scroll view feature of Revealjs"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Activate scroll view by default for the presentation. Otherwise, it\nis manually avalaible by adding ?view=scroll to url."},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret provided by multiplex token server"},"documentation":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide."}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Secret provided by multiplex token server","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5269,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5268,"type":"object","description":"be an object","properties":{"activate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Activate scroll view by default for the presentation. Otherwise, it is manually avalaible by adding `?view=scroll` to url."},"documentation":"By default each slide will be sized to be as tall as the viewport. If\nyou prefer a more dense layout with multiple slides visible in parallel,\nset to compact."},"progress":{"_internalId":5259,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5258,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"description":"Show the scrollbar while scrolling, hide while idle (default `auto`). Set to 'true' to always show, `false` to always hide."},"documentation":"Control scroll view activation width. The scroll view is\nautomatically unable when the viewport reaches mobile widths. Set to\n0 to disable automatic scroll view."},"snap":{"_internalId":5262,"type":"enum","enum":["mandatory","proximity",false],"description":"be one of: `mandatory`, `proximity`, `false`","completions":["mandatory","proximity","false"],"exhaustiveCompletions":true,"tags":{"description":"When scrolling, it will automatically snap to the closest slide. Only snap when close to the top of a slide using `proximity`. Disable snapping altogether by setting to `false`.\n"},"documentation":"Transition style for slides"},"layout":{"_internalId":5265,"type":"enum","enum":["compact","full"],"description":"be one of: `compact`, `full`","completions":["compact","full"],"exhaustiveCompletions":true,"tags":{"description":"By default each slide will be sized to be as tall as the viewport. If you prefer a more dense layout with multiple slides visible in parallel, set to `compact`.\n"},"documentation":"Slide transition speed (default, fast, or\nslow)"},"activation-width":{"type":"number","description":"be a number","tags":{"description":"Control scroll view activation width. The scroll view is automatically unable when the viewport reaches mobile widths. Set to `0` to disable automatic scroll view.\n"},"documentation":"Transition style for full page slide backgrounds"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention activate,progress,snap,layout,activation-width","type":"string","pattern":"(?!(^activation_width$|^activationWidth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Control the scroll view feature of Revealjs"},"documentation":"When scrolling, it will automatically snap to the closest slide. Only\nsnap when close to the top of a slide using proximity.\nDisable snapping altogether by setting to false.","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5272,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for slides","long":"Transition style for slides backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Turns fragments on and off globally","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5275,"type":"enum","enum":["default","fast","slow"],"description":"be one of: `default`, `fast`, `slow`","completions":["default","fast","slow"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Slide transition speed (`default`, `fast`, or `slow`)"},"documentation":"Globally enable/disable auto-animate (enabled by default)","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5278,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for full page slide backgrounds","long":"Transition style for full page slide backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Default CSS easing function for auto-animation","$id":"quarto-resource-document-reveal-transitions-background-transition"},"quarto-resource-document-reveal-transitions-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Turns fragments on and off globally"},"documentation":"Duration (in seconds) of auto-animate transition","$id":"quarto-resource-document-reveal-transitions-fragments"},"quarto-resource-document-reveal-transitions-auto-animate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Globally enable/disable auto-animate (enabled by default)"},"documentation":"Auto-animate unmatched elements.","$id":"quarto-resource-document-reveal-transitions-auto-animate"},"quarto-resource-document-reveal-transitions-auto-animate-easing":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Default CSS easing function for auto-animation","long":"Default CSS easing function for auto-animation.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated).","$id":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"quarto-resource-document-reveal-transitions-auto-animate-duration":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Duration (in seconds) of auto-animate transition","long":"Duration (in seconds) of auto-animate transition.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Make list items in slide shows display incrementally (one by one).\nThe default is for lists to be displayed all at once.","$id":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"quarto-resource-document-reveal-transitions-auto-animate-unmatched":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Auto-animate unmatched elements.","long":"Auto-animate unmatched elements.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide the slide\nshow into sections.","$id":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5294,"type":"array","description":"be an array of values, where each element must be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","items":{"_internalId":5293,"type":"enum","enum":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"description":"be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","completions":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"exhaustiveCompletions":true},"tags":{"formats":["revealjs"],"description":{"short":"CSS properties that can be auto-animated (positional styles like top, left, etc.\nare always animated).\n"}},"documentation":"Display the page number of the current slide","$id":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"quarto-resource-document-slides-incremental":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pptx","beamer","$html-pres"],"description":"Make list items in slide shows display incrementally (one by one). \nThe default is for lists to be displayed all at once.\n"},"documentation":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-slides-incremental"},"quarto-resource-document-slides-slide-level":{"type":"number","description":"be a number","tags":{"formats":["pptx","beamer","$html-pres"],"description":{"short":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections.\n","long":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections; headings below this level create \nsubheads within a slide. Valid values are 0-6. If a slide level\nof 0 is specified, slides will not be split automatically on \nheadings, and horizontal rules must be used to indicate slide \nboundaries. If a slide level is not specified explicitly, the\nslide level will be set automatically based on the contents of\nthe document\n"}},"documentation":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5306,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5305,"type":"enum","enum":["h.v","h/v","c","c/t"],"description":"be one of: `h.v`, `h/v`, `c`, `c/t`","completions":["h.v","h/v","c","c/t"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `h.v`, `h/v`, `c`, `c/t`","tags":{"formats":["revealjs"],"description":{"short":"Display the page number of the current slide","long":"Display the page number of the current slide\n\n- `true`: Show slide number\n- `false`: Hide slide number\n\nCan optionally be set as a string that specifies the number formatting:\n\n- `h.v`: Horizontal . vertical slide number\n- `h/v`: Horizontal / vertical slide number\n- `c`: Flattened slide number\n- `c/t`: Flattened slide number / total slides (default)\n"}},"documentation":"CSS color for title slide background","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5309,"type":"enum","enum":["all","print","speaker"],"description":"be one of: `all`, `print`, `speaker`","completions":["all","print","speaker"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Contexts in which the slide number appears (`all`, `print`, or `speaker`)"},"documentation":"URL or path to the background image.","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5324,"type":"object","description":"be an object","properties":{"data-background-color":{"type":"string","description":"be a string","tags":{"description":"CSS color for title slide background"},"documentation":"CSS background position (defaults to center)"},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"CSS background repeat (defaults to no-repeat)"},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque."},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style."},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"Vertical centering of title slide"},"data-background-opacity":{"type":"string","description":"be a string","tags":{"description":"Opacity of the background image on a 0-1 scale. \n0 is transparent and 1 is fully opaque.\n"},"documentation":"Make speaker notes visible to all viewers"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention data-background-color,data-background-image,data-background-size,data-background-position,data-background-repeat,data-background-opacity","type":"string","pattern":"(?!(^data_background_color$|^dataBackgroundColor$|^data_background_image$|^dataBackgroundImage$|^data_background_size$|^dataBackgroundSize$|^data_background_position$|^dataBackgroundPosition$|^data_background_repeat$|^dataBackgroundRepeat$|^data_background_opacity$|^dataBackgroundOpacity$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"formats":["revealjs"],"description":{"short":"Additional attributes for the title slide of a reveal.js presentation.","long":"Additional attributes for the title slide of a reveal.js presentation as a map of \nattribute names and values. For example\n\n```yaml\n title-slide-attributes:\n data-background-image: /path/to/title_image.png\n data-background-size: contain \n```\n\n(Note that the data- prefix is required here, as it isn’t added automatically.)\n"}},"documentation":"CSS background size (defaults to cover)","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5327,"type":"enum","enum":["pandoc","default"],"description":"be one of: `pandoc`, `default`","completions":["pandoc","default"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"The title slide style. Use `pandoc` to select the Pandoc default title slide style."},"documentation":"Change the presentation direction to be RTL","$id":"quarto-resource-document-slides-title-slide-style"},"quarto-resource-document-slides-center-title-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of title slide"},"documentation":"Method used to print tables in Knitr engine documents\n(default, kable, tibble, or\npaged). Uses default if not specified.","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5337,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5336,"type":"enum","enum":["separate-page"],"description":"be 'separate-page'","completions":["separate-page"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'separate-page'","tags":{"formats":["revealjs"],"description":"Make speaker notes visible to all viewers\n"},"documentation":"Determine how text is wrapped in the output (auto,\nnone, or preserve).","$id":"quarto-resource-document-slides-show-notes"},"quarto-resource-document-slides-rtl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Change the presentation direction to be RTL\n"},"documentation":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text.","$id":"quarto-resource-document-slides-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5342,"type":"enum","enum":["default","kable","tibble","paged"],"description":"be one of: `default`, `kable`, `tibble`, `paged`","completions":["default","kable","tibble","paged"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Uses `default` if not specified.\n","long":"Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"}},"documentation":"Specify the number of spaces per tab (default is 4).","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5345,"type":"enum","enum":["auto","none","preserve"],"description":"be one of: `auto`, `none`, `preserve`","completions":["auto","none","preserve"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Determine how text is wrapped in the output (`auto`, `none`, or `preserve`).","long":"Determine how text is wrapped in the output (the source code, not the rendered\nversion). \n\n- `auto` (default): Pandoc will attempt to wrap lines to the column width specified by `columns` (default 72). \n- `none`: Pandoc will not wrap lines at all. \n- `preserve`: Pandoc will attempt to preserve the wrapping from the source\n document. Where there are nonsemantic newlines in the source, there will be\n nonsemantic newlines in the output as well.\n"}},"documentation":"Preserve tabs within code instead of converting them to spaces.","$id":"quarto-resource-document-text-wrap"},"quarto-resource-document-text-columns":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all","typst"],"description":{"short":"For text formats, specify length of lines in characters. For `typst`, number of columns for body text.","long":"Specify length of lines in characters. This affects text wrapping in generated source\ncode (see `wrap`). It also affects calculation of column widths for plain text\ntables. \n\nFor `typst`, number of columns for body text.\n"}},"documentation":"Manually specify line endings (lf, crlf, or\nnative).","$id":"quarto-resource-document-text-columns"},"quarto-resource-document-text-tab-stop":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Specify the number of spaces per tab (default is 4).","long":"Specify the number of spaces per tab (default is 4). Note that tabs\nwithin normal textual input are always converted to spaces. Tabs \nwithin code are also converted, however this can be disabled with\n`preserve-tabs: false`.\n"}},"documentation":"Strip out HTML comments in source, rather than passing them on to\noutput.","$id":"quarto-resource-document-text-tab-stop"},"quarto-resource-document-text-preserve-tabs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Preserve tabs within code instead of converting them to spaces.\n","long":"Preserve tabs within code instead of converting them to spaces.\n(By default, pandoc converts tabs to spaces before parsing its input.) \nNote that this will only affect tabs in literal code spans and code blocks. \nTabs in regular text are always treated as spaces.\n"}},"documentation":"Use only ASCII characters in output.","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5354,"type":"enum","enum":["lf","crlf","native"],"description":"be one of: `lf`, `crlf`, `native`","completions":["lf","crlf","native"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Manually specify line endings (`lf`, `crlf`, or `native`).","long":"Manually specify line endings: \n\n- `crlf`: Use Windows line endings\n- `lf`: Use macOS/Linux/UNIX line endings\n- `native` (default): Use line endings appropriate to the OS on which pandoc is being run).\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-text-eol"},"quarto-resource-document-text-strip-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","textile","$html-files"],"description":{"short":"Strip out HTML comments in source, rather than passing them on to output.","long":"Strip out HTML comments in the Markdown source,\nrather than passing them on to Markdown, Textile or HTML\noutput as raw HTML. This does not apply to HTML comments\ninside raw HTML blocks when the `markdown_in_html_blocks`\nextension is not set.\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-text-strip-comments"},"quarto-resource-document-text-ascii":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all","$pdf-all","$markdown-all","ms"],"description":{"short":"Use only ASCII characters in output.","long":"Use only ASCII characters in output. Currently supported for XML\nand HTML formats (which use entities instead of UTF-8 when this\noption is selected), CommonMark, gfm, and Markdown (which use\nentities), roff ms (which use hexadecimal escapes), and to a\nlimited degree LaTeX (which uses standard commands for accented\ncharacters when possible). roff man output uses ASCII by default.\n"}},"documentation":"The amount of indentation to use for each level of the table of\ncontents. The default is “1.5em”.","$id":"quarto-resource-document-text-ascii"},"quarto-resource-document-toc-toc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$id":"quarto-resource-document-toc-toc"},"quarto-resource-document-toc-table-of-contents":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$id":"quarto-resource-document-toc-table-of-contents"},"quarto-resource-document-toc-toc-indent":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The amount of indentation to use for each level of the table of contents.\nThe default is \"1.5em\".\n"},"documentation":"The title used for the table of contents.","$id":"quarto-resource-document-toc-toc-indent"},"quarto-resource-document-toc-toc-depth":{"type":"number","description":"be a number","tags":{"formats":["!man","!$docbook-all","!$jats-all","!beamer"],"description":"Specify the number of section levels to include in the table of contents.\nThe default is 3\n"},"documentation":"Specifies the depth of items in the table of contents that should be\ndisplayed as expanded in HTML output. Use true to expand\nall or false to collapse all.","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5367,"type":"enum","enum":["body","left","right","left-body","right-body"],"description":"be one of: `body`, `left`, `right`, `left-body`, `right-body`","completions":["body","left","right","left-body","right-body"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Location for table of contents (`body`, `left`, `right` (default), `left-body`, `right-body`).\n","long":"Location for table of contents:\n\n- `body`: Show the Table of Contents in the center body of the document. \n- `left`: Show the Table of Contents in left margin of the document.\n- `right`(default): Show the Table of Contents in right margin of the document.\n- `left-body`: Show two Tables of Contents in both the center body and the left margin of the document.\n- `right-body`: Show two Tables of Contents in both the center body and the right margin of the document.\n"}},"documentation":"Print a list of figures in the document.","$id":"quarto-resource-document-toc-toc-location"},"quarto-resource-document-toc-toc-title":{"type":"string","description":"be a string","tags":{"formats":["$epub-all","$odt-all","$office-all","$pdf-all","$html-doc","revealjs"],"description":"The title used for the table of contents."},"documentation":"Print a list of tables in the document.","$id":"quarto-resource-document-toc-toc-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5376,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","tags":{"formats":["$html-doc"],"description":"Specifies the depth of items in the table of contents that should be displayed as expanded in HTML output. Use `true` to expand all or `false` to collapse all.\n"},"documentation":"Setting this to false prevents this document from being included in\nsearches.","$id":"quarto-resource-document-toc-toc-expand"},"quarto-resource-document-toc-lof":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Print a list of figures in the document."},"documentation":"Setting this to false prevents the repo-actions from\nappearing on this page. Other possible values are none or\none or more of edit, source, and\nissue, e.g.\n[edit, source, issue].","$id":"quarto-resource-document-toc-lof"},"quarto-resource-document-toc-lot":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Print a list of tables in the document."},"documentation":"Links to source repository actions","$id":"quarto-resource-document-toc-lot"},"quarto-resource-document-website-search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Setting this to false prevents this document from being included in searches."},"documentation":"Links to source repository actions","$id":"quarto-resource-document-website-search"},"quarto-resource-document-website-repo-actions":{"_internalId":5394,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5393,"type":"anyOf","anyOf":[{"_internalId":5391,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"The height of the preview image for this document."},{"_internalId":5392,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5391,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"The height of the preview image for this document."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"formats":["$html-doc"],"description":"Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"},"documentation":"URLs that alias this document, when included in a website.","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5399,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-doc"],"description":"URLs that alias this document, when included in a website."},"documentation":"The width of the preview image for this document.","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5406,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"The path to a preview image for this document.","long":"The path to a preview image for this content. By default, \nQuarto will use the image value from the site: metadata. \nIf you provide an image, you may also optionally provide \nan image-width and image-height to improve \nthe appearance of your Twitter Card.\n\nIf image is not provided, Quarto will automatically attempt \nto locate a preview image.\n"}},"documentation":"The alt text for preview image on this page.","$id":"quarto-resource-document-website-image"},"quarto-resource-document-website-image-height":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The height of the preview image for this document."},"documentation":"If true, the preview image will only load when it comes into\nview.","$id":"quarto-resource-document-website-image-height"},"quarto-resource-document-website-image-width":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The width of the preview image for this document."},"documentation":"Project configuration.","$id":"quarto-resource-document-website-image-width"},"quarto-resource-document-website-image-alt":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The alt text for preview image on this page."},"documentation":"Project type (default, website,\nbook, or manuscript)","$id":"quarto-resource-document-website-image-alt"},"quarto-resource-document-website-image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"If true, the preview image will only load when it comes into view.","long":"Enables lazy loading for the preview image. If true, the preview image element \nwill have `loading=\"lazy\"`, and will only load when it comes into view.\n\nIf false, the preview image will load immediately.\n"}},"documentation":"Files to render (defaults to all files)","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5479,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Output directory"},"render":{"_internalId":5427,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"HTML library (JS/CSS/etc.) directory"},"execute-dir":{"_internalId":5430,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Additional file resources to be copied to output directory"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Additional file resources to be copied to output directory"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},"resources":{"_internalId":5442,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Scripts to run as a pre-render step"},{"_internalId":5441,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Scripts to run as a pre-render step"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":5447,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Scripts to run as a post-render step"},"preview":{"_internalId":5452,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Array of paths used to detect the project type within a directory"},"pre-render":{"_internalId":5460,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5459,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Website configuration."},"post-render":{"_internalId":5468,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5467,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Book configuration."},"detect":{"_internalId":5478,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":5477,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Book title"}},"patternProperties":{},"closed":true,"documentation":"Working directory for computations","tags":{"description":"Project configuration."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5482,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Description metadata for HTML version of book","tags":{"description":"Website configuration."},"$id":"quarto-resource-project-website"},"quarto-resource-project-book":{"_internalId":1701,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"The value of the rel attribute for repo links"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Subdirectory of repository containing website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Branch of website source code (defaults to main)"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Links to source repository actions"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Links to source repository actions"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Enable Google Analytics for this website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Storage options for Google Analytics data"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Anonymize the user ip address."},"repo-actions":{"_internalId":508,"type":"anyOf","anyOf":[{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},{"_internalId":507,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"google-analytics":{"_internalId":532,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":531,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The content of the announcement"},"storage":{"_internalId":523,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Whether this announcement may be dismissed by the user."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The icon to display in the announcement"},"version":{"_internalId":530,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The position of the announcement."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Provides an announcement displayed at the top of the page."},"plausible-analytics":{"_internalId":542,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":541,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"announcement":{"_internalId":572,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":571,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The style of the consent banner that is displayed"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The url to the website’s cookie or privacy policy."},"position":{"_internalId":565,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"type":{"_internalId":570,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The type of consent that should be requested"},"cookie-consent":{"_internalId":604,"type":"anyOf","anyOf":[{"_internalId":577,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":603,"type":"object","description":"be an object","properties":{"type":{"_internalId":584,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"style":{"_internalId":587,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Type of search UI (overlay or textbox)"},"palette":{"_internalId":590,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Number of matches to display (defaults to 20)"},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"Matches after which to collapse additional results"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"Provide button for copying search link"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Provide full text search for website"},"search":{"_internalId":691,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":690,"type":"object","description":"be an object","properties":{"location":{"_internalId":613,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"type":{"_internalId":616,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Use external Algolia search index"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"The name of the index to use when performing a search"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"The unique ID used by Algolia to identify your application"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"The Search-Only API key to use to connect to Algolia"},"keyboard-shortcut":{"_internalId":638,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},{"_internalId":637,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":648,"type":"anyOf","anyOf":[{"_internalId":645,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the URL of index entries"},"algolia":{"_internalId":689,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Field that contains the text of index entries"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Field that contains the section of index entries"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Additional parameters to pass when executing a search"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Top navigation options"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"The navbar title. Uses the project title if none is specified."},"index-fields":{"_internalId":685,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Alternate text for the logo image."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"The navbar’s background color (named or hex color)."}},"patternProperties":{},"closed":true},"params":{"_internalId":688,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"The navbar’s foreground color (named or hex color)."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Field that contains the title of index entries"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"navbar":{"_internalId":745,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":744,"type":"object","description":"be an object","properties":{"title":{"_internalId":704,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Always show the navbar (keeping it pinned)."},"logo":{"_internalId":707,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"List of items for the left side of the navbar."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"List of items for the right side of the navbar."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Side navigation options"},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The identifier for this sidebar."},"collapse-below":{"_internalId":724,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The sidebar title. Uses the project title if none is specified."},"left":{"_internalId":730,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":729,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Specification of image that will be displayed in the sidebar."},"right":{"_internalId":736,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":735,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"Alternate text for the logo image."},"toggle-position":{"_internalId":741,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Include a search control in the sidebar."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Include a search box in the navbar."},"sidebar":{"_internalId":816,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":815,"type":"anyOf","anyOf":[{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"List of sidebar tools"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Shared page footer"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"margin-header":{"_internalId":826,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":825,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"margin-footer":{"_internalId":832,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Publish open graph metadata"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Publish twitter card metadata"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"A list of other links to appear below the TOC."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"A list of code links to appear with this document."},"page-footer":{"_internalId":846,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":845,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"A list of input documents that should be treated as drafts"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"How to handle drafts that are encountered."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book subtitle"},"comments":{"_internalId":855,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":863,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":862,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Author or authors of the book"},"twitter-card":{"_internalId":871,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":870,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Author or authors of the book"},"other-links":{"_internalId":876,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book publication date"},"code-links":{"_internalId":886,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":885,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Format string for dates in the book"},"drafts":{"_internalId":894,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":893,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book abstract"},"draft-mode":{"_internalId":899,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book part and chapter files"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book appendix files"},"author":{"_internalId":919,"type":"anyOf","anyOf":[{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},{"_internalId":918,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Cover image (used in HTML and ePub formats)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Alternative text for cover image (used in HTML format)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Custom tools for navbar or sidebar"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"The Digital Object Identifier for this book."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"A url to the abstract for this item."},"sharing":{"_internalId":952,"type":"anyOf","anyOf":[{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},{"_internalId":951,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":959,"type":"anyOf","anyOf":[{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."},{"_internalId":958,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":965,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":964,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Geographic location of the archive."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item was initially available"},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Call number (to locate the item in a library)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"available-date":{"_internalId":1433,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"chair":{"_internalId":1438,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"chapter-number":{"_internalId":1441,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Composer (e.g. of a musical score)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"citation-number":{"_internalId":1450,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Title of the container holding the item.","completions":[]},"collection-editor":{"_internalId":1453,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Short/abbreviated form of container-title;"},"collection-number":{"_internalId":1456,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"compiler":{"_internalId":1461,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Director (e.g. of a film)."},"container-author":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"The editor of the item.","completions":[]},"contributor":{"_internalId":1474,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"curator":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Combined editor and translator of a work."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Date the event related to an item took place."},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1491,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"A url to the full text for this item."},"editor-translator":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Type, class, or subtype of the item"},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1507,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Guest (e.g. on a TV show or podcast)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"A value which uniquely identifies this item."},"executive-producer":{"_internalId":1514,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"first-reference-note-number":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Interviewer (e.g. of an interview)."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"International Standard Serial Number."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Issue number of the item or container holding the item"},"host":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Date the item was issued/published."},"id":{"_internalId":1536,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"illustrator":{"_internalId":1539,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"The language of the item (used only for citation of the item)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"The license information applicable to an item."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"A cite-specific pinpointer within the item."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1557,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Narrator (e.g. of an audio book)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Number identifying the item (e.g. a report number)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"Total number of pages of the cited item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"locator":{"_internalId":1571,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"The original creator of a work."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Issue date of the original version."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"number-of-pages":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"number-of-volumes":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"organizer":{"_internalId":1590,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-author":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Title of the specific part of an item being cited."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"A url to the pdf for this item."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"page":{"_internalId":1605,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed Central reference number."},"page-first":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed reference number."},"page-last":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Printing number of the item or container holding the item."},"part-number":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Producer (e.g. of a television or radio broadcast)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A public url for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"The publisher of the item."},"performer":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"The geographic location of the publisher."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Recipient (e.g. of a letter)."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Author of the item reviewed by the current item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Title of the item reviewed by the current item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Scale of e.g. a map or model."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Creator of a series (e.g. of a television series)."},"reviewed-author":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"script-writer":{"_internalId":1660,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Short/abbreviated form oftitle."},"section":{"_internalId":1663,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Translator"},"series-creator":{"_internalId":1666,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"The type\nof the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"submitted":{"_internalId":1673,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"supplement-number":{"_internalId":1676,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Title of the volume of the item or container holding the item."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Manuscript configuration"},"type":{"_internalId":1684,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"internal-schema-hack"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1693,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Distance from page edge to wideblock boundary."},"volume":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Width of the margin note column."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Gap between margin column and body text."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Advanced geometry settings for Typst margin layout."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"The path to the favicon for this website","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5492,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"When defined, run axe-core accessibility tests on the document.","tags":{"description":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5495,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself.","tags":{"description":"internal-schema-hack","hidden":true},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5506,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5505,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5504,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"The logo image.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."},"$id":"quarto-resource-project-engines"},"quarto-resource-document-a11y-axe":{"_internalId":5517,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5516,"type":"object","description":"be an object","properties":{"output":{"_internalId":5515,"type":"enum","enum":["json","console","document"],"description":"be one of: `json`, `console`, `document`","completions":["json","console","document"],"exhaustiveCompletions":true,"tags":{"description":"If set, output axe-core results on console. `json`: produce structured output; `console`: print output to javascript console; `document`: produce a visual report of violations in the document itself."},"documentation":"Project type (default, website,\nbook, or manuscript)"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-files"],"description":"When defined, run axe-core accessibility tests on the document."},"documentation":"Project configuration.","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5520,"type":"ref","$ref":"logo-light-dark-specifier-path-optional","description":"be logo-light-dark-specifier-path-optional","tags":{"formats":["typst"],"description":"The logo image."},"documentation":"Files to render (defaults to all files)","$id":"quarto-resource-document-typst-logo"},"quarto-resource-document-typst-margin-geometry":{"_internalId":5531,"type":"object","description":"be an object","properties":{"inner":{"_internalId":5525,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Inner (left) margin geometry."},"documentation":"Output directory"},"outer":{"_internalId":5528,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Outer (right) margin geometry."},"documentation":"HTML library (JS/CSS/etc.) directory"},"clearance":{"type":"string","description":"be a string","tags":{"description":"Minimum vertical spacing between margin notes (default: 8pt)."},"documentation":"Additional file resources to be copied to output directory"}},"patternProperties":{},"closed":true,"tags":{"formats":["typst"],"description":{"short":"Advanced geometry settings for Typst margin layout.","long":"Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n"}},"documentation":"Working directory for computations","$id":"quarto-resource-document-typst-margin-geometry"},"front-matter-execute":{"_internalId":5555,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5532,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5533,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5534,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5535,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5536,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5537,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5538,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5539,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5540,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5541,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5542,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5543,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5544,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5545,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5546,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5547,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5548,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5549,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5550,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5551,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5552,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5553,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5554,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected","type":"string","pattern":"(?!(^daemon_restart$|^daemonRestart$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"front-matter-execute"},"front-matter-format":{"_internalId":213610,"type":"anyOf","anyOf":[{"_internalId":213606,"type":"anyOf","anyOf":[{"_internalId":213526,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":213527,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":213528,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":213529,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":213530,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":213531,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":213532,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":213533,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":213534,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":213535,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":213536,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":213537,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":213538,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":213539,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":213540,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":213541,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":213542,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":213543,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":213544,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":213545,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":213546,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":213547,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":213548,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":213549,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":213550,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":213551,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":213552,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":213553,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":213554,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":213555,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":213556,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":213557,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":213558,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":213559,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":213560,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":213561,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":213562,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":213563,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":213564,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":213565,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":213566,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":213567,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":213568,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":213569,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":213570,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":213571,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":213572,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":213573,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":213574,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":213575,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":213576,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":213577,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":213578,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":213579,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":213580,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":213581,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":213582,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":213583,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":213584,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":213585,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":213586,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":213587,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":213588,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":213589,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":213590,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":213591,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":213592,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":213593,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":213594,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":213595,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":213596,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":213597,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":213598,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":213599,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":213600,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":213601,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":213602,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":213603,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":213604,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":213605,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":213607,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":213605,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":213609,"type":"allOf","allOf":[{"_internalId":213608,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8173,"type":"anyOf","anyOf":[{"_internalId":8171,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8076,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8077,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8078,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8079,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8080,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8081,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8082,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8083,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8084,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8085,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8086,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8087,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8088,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8089,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8090,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":8091,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8092,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8093,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8094,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8095,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8096,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8097,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8098,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8099,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8100,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8101,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8102,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8103,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8104,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8105,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8106,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8107,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8108,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8109,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8110,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8110,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8111,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8112,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8113,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8114,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8115,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8116,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8117,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8118,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8119,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8120,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8121,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8122,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8123,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8124,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8125,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8126,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8127,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8128,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8129,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8130,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8131,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8132,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8133,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8134,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8135,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8136,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8137,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":8138,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8139,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8140,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8141,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8142,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8143,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8144,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8145,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8146,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8146,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8147,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8148,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8149,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8150,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8151,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8152,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8153,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8154,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8155,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8156,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8157,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8158,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8159,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8160,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8161,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8162,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8163,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8164,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8165,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8166,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8167,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8168,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8170,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":8172,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10792,"type":"anyOf","anyOf":[{"_internalId":10790,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10693,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10694,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10695,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10696,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10697,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10698,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10699,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10700,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10701,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10702,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10703,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10704,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10705,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10706,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10707,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10708,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":10709,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10710,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10711,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10712,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10713,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10714,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10715,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10716,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10717,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10718,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10719,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10720,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10721,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10722,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10723,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10724,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10725,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10726,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10727,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10728,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10728,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10729,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10730,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10731,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10732,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10733,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10734,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10735,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10736,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10737,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10738,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10739,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10740,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10741,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10742,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10743,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10744,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10745,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10746,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10747,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10748,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10749,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10750,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10751,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10752,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10753,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10754,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10755,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":10756,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10757,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10758,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10759,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10760,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10761,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10762,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10763,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10764,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10765,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10765,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10766,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10767,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10768,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10769,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10770,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10771,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10772,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10773,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10774,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10775,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10776,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10777,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10778,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10779,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10780,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10781,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10782,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10783,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10784,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10785,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10786,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10787,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10788,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10788,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10789,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":10791,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13409,"type":"anyOf","anyOf":[{"_internalId":13407,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13312,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13313,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13314,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13315,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13316,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13317,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13318,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13319,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13320,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13321,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13322,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13323,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13324,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13325,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13326,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":13327,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13328,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13329,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13330,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13331,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13332,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13333,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13334,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13335,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13336,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13337,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13338,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13339,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13340,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13341,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13342,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13343,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13344,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13345,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13346,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13346,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13347,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13348,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13349,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13350,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13351,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13352,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13353,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13354,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13355,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13356,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13357,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13358,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13359,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13360,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13361,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13362,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13363,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13364,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13365,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13366,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13367,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13368,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13369,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13370,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13371,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13372,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13373,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":13374,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13375,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13376,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13377,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13378,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13379,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13380,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13381,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13383,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13384,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13385,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13386,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13387,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13388,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13389,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13390,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13391,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13392,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13393,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13394,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13395,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13396,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13397,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13398,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13399,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13400,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13401,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13402,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13403,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13404,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13406,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":13408,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":16028,"type":"anyOf","anyOf":[{"_internalId":16026,"type":"object","description":"be an object","properties":{"eval":{"_internalId":15929,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":15930,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":15931,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":15932,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":15933,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":15934,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":15935,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":15936,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":15937,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":15938,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":15939,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":15940,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":15941,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":15942,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":15943,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":15944,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":15945,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":15946,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":15947,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":15948,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":15949,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":15950,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":15951,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":15952,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":15953,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":15954,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":15955,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":15956,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":15957,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":15958,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":15959,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":15960,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":15961,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":15962,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":15963,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":15964,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":15964,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":15965,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":15966,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":15967,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":15968,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":15969,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":15970,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":15971,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":15972,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":15973,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":15974,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":15975,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":15976,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":15977,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":15978,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":15979,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":15980,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":15981,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":15982,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":15983,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":15984,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":15985,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":15986,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":15987,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":15988,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":15989,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":15990,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":15991,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":15992,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":15993,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":15994,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":15995,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":15996,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":15997,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":15998,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":15999,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":16000,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":16001,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":16001,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":16002,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":16003,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":16004,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":16005,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":16006,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":16007,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":16008,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":16009,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":16010,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":16011,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":16012,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":16013,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":16014,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":16015,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":16016,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":16017,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":16018,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":16019,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":16020,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":16021,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":16022,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":16023,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":16024,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":16024,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":16025,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":16027,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18645,"type":"anyOf","anyOf":[{"_internalId":18643,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18548,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18549,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18550,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18551,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18552,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18553,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18554,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18555,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18556,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18557,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18558,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18559,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18560,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18561,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18562,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":18563,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18564,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18565,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18566,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18567,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18568,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18569,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18570,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18571,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18572,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18573,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18574,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18575,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18576,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18577,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18578,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18579,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18580,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18581,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18582,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18582,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18583,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18584,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18585,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18586,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18587,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18588,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18589,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18590,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18591,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18592,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18593,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18594,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18595,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18596,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18597,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18598,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18599,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18600,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18601,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18602,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18603,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18604,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18605,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18606,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18607,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18608,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18609,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":18610,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18611,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18612,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18613,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18614,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18615,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18616,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18617,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18618,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18618,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18619,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18620,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18621,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18622,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18623,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18624,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18625,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18626,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18627,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18628,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18629,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18630,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18631,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18632,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18633,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18634,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18635,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18636,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18637,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18638,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18639,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18640,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18641,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18641,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18642,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":18644,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21262,"type":"anyOf","anyOf":[{"_internalId":21260,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21165,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21166,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21167,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21168,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21169,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21170,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21171,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21172,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21173,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21174,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21175,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21176,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21177,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21178,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21179,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":21180,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21181,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21182,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21183,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21184,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21185,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21186,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21187,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21188,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21189,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21190,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21191,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21192,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21193,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21194,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21195,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21196,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21197,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21198,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21199,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21199,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21200,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21201,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21202,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21203,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21204,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21205,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21206,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21207,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21208,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21209,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21210,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21211,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21212,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21213,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21214,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21215,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21216,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21217,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21218,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21219,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21220,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21221,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21222,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21223,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21224,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21225,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21226,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":21227,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21228,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21229,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21230,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21231,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21232,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21233,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21234,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21235,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21235,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21236,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21237,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21238,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21239,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21240,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21241,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21242,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21243,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21244,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21245,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21246,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21247,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21248,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21249,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21250,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21251,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21252,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21253,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21254,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21255,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21256,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21257,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21258,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21258,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21259,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":21261,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":23879,"type":"anyOf","anyOf":[{"_internalId":23877,"type":"object","description":"be an object","properties":{"eval":{"_internalId":23782,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":23783,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":23784,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":23785,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":23786,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":23787,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":23788,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":23789,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":23790,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":23791,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":23792,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":23793,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":23794,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":23795,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":23796,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":23797,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":23798,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":23799,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":23800,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":23801,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":23802,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":23803,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":23804,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":23805,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":23806,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":23807,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":23808,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":23809,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":23810,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":23811,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":23812,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":23813,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":23814,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":23815,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":23816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":23816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":23817,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":23818,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":23819,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":23820,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":23821,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":23822,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":23823,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":23824,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":23825,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":23826,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":23827,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":23828,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":23829,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":23830,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":23831,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":23832,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":23833,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":23834,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":23835,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":23836,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":23837,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":23838,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":23839,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":23840,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":23841,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":23842,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":23843,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":23844,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":23845,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":23846,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":23847,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":23848,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":23849,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":23850,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":23851,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":23852,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":23852,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":23853,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":23854,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":23855,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":23856,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":23857,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":23858,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":23859,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":23860,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":23861,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":23862,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":23863,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":23864,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":23865,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":23866,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":23867,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":23868,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":23869,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":23870,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":23871,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":23872,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":23873,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":23874,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":23875,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":23875,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":23876,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":23878,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26496,"type":"anyOf","anyOf":[{"_internalId":26494,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26399,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26400,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26401,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26402,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26403,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26404,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26405,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26406,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26407,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26408,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26409,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26410,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26411,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26412,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26413,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":26414,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26415,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26416,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26417,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26418,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26419,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26420,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26421,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26422,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26423,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26424,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26425,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26426,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26427,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26428,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26429,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26430,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26431,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26432,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26433,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26433,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26434,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26435,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26436,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26437,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26438,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26439,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26440,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26441,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26442,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26443,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26444,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26445,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26446,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26447,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26448,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26449,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26450,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26451,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26452,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26453,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26454,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26455,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26456,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26457,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26458,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26459,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26460,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":26461,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26462,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26463,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26464,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26465,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26466,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26467,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26468,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26469,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26469,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26470,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26471,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26472,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26473,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26474,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26475,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26476,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26477,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26478,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26479,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26480,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26481,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26482,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26483,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26484,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26485,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26486,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26487,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26488,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26489,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26490,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26491,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26492,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26492,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26493,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":26495,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":29113,"type":"anyOf","anyOf":[{"_internalId":29111,"type":"object","description":"be an object","properties":{"eval":{"_internalId":29016,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":29017,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":29018,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":29019,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":29020,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":29021,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":29022,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":29023,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":29024,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":29025,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":29026,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":29027,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":29028,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":29029,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":29030,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":29031,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":29032,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":29033,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":29034,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":29035,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":29036,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":29037,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":29038,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":29039,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":29040,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":29041,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":29042,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":29043,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":29044,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":29045,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":29046,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":29047,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":29048,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":29049,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":29050,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":29050,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":29051,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":29052,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":29053,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":29054,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":29055,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":29056,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":29057,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":29058,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":29059,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":29060,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":29061,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":29062,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":29063,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":29064,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":29065,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":29066,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":29067,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":29068,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":29069,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":29070,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":29071,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":29072,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":29073,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":29074,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":29075,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":29076,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":29077,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":29078,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":29079,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":29080,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":29081,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":29082,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":29083,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":29084,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":29085,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":29086,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":29086,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":29087,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":29088,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":29089,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":29090,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":29091,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":29092,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":29093,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":29094,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":29095,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":29096,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":29097,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":29098,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":29099,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":29100,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":29101,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":29102,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":29103,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":29104,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":29105,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":29106,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":29107,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":29108,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":29109,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":29109,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":29110,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":29112,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":31730,"type":"anyOf","anyOf":[{"_internalId":31728,"type":"object","description":"be an object","properties":{"eval":{"_internalId":31633,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":31634,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":31635,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":31636,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":31637,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":31638,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":31639,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":31640,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":31641,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":31642,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":31643,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":31644,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":31645,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":31646,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":31647,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":31648,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":31649,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":31650,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":31651,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":31652,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":31653,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":31654,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":31655,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":31656,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":31657,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":31658,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":31659,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":31660,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":31661,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":31662,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":31663,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":31664,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":31665,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":31666,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":31667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":31667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":31668,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":31669,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":31670,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":31671,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":31672,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":31673,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":31674,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":31675,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":31676,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":31677,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":31678,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":31679,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":31680,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":31681,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":31682,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":31683,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":31684,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":31685,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":31686,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":31687,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":31688,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":31689,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":31690,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":31691,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":31692,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":31693,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":31694,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":31695,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":31696,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":31697,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":31698,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":31699,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":31700,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":31701,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":31702,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":31703,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":31703,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":31704,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":31705,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":31706,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":31707,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":31708,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":31709,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":31710,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":31711,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":31712,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":31713,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":31714,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":31715,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":31716,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":31717,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":31718,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":31719,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":31720,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":31721,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":31722,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":31723,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":31724,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":31725,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":31726,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":31726,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":31727,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":31729,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34452,"type":"anyOf","anyOf":[{"_internalId":34450,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34250,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34251,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34252,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34253,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34254,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34255,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34256,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34257,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34258,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34259,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34260,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34261,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34262,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34263,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34264,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34265,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34266,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34267,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34268,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34269,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34270,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34271,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34272,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34273,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34274,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34275,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34276,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":34277,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34278,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34279,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34280,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34281,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34282,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34283,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34284,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34285,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34286,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34287,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34288,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34289,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":34290,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34291,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34292,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34293,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34294,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34295,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34296,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34297,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34298,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34299,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34300,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34301,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34302,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34303,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34304,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34305,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34306,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34307,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34308,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34309,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34310,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34311,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34312,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34313,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34314,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34315,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34316,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34317,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34318,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34319,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34320,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34321,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34322,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34323,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34324,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34325,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34326,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34326,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34327,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34328,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34329,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34330,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34331,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34332,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34333,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34334,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34335,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34336,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34337,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34338,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34339,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34340,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34341,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34342,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34343,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34344,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34345,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34346,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34347,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34348,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34349,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34350,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34351,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34352,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34353,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34354,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34355,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34356,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34357,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34358,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34359,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34360,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34361,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34362,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34363,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34364,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34365,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34366,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34367,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34368,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34369,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":34370,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34371,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34372,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34373,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34374,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34375,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34376,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34377,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34378,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34379,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34380,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34381,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34382,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34383,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34384,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34385,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34386,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34387,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34388,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34389,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34390,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34391,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34392,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34393,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34394,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34395,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34396,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34397,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34398,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34399,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34400,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34401,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34402,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34403,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34404,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34405,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34406,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34407,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34408,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":34409,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34410,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34411,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34412,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34413,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34414,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34415,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34416,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34417,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34418,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34419,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34420,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34421,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34422,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34422,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34423,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34424,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34425,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34426,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34427,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34428,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34429,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34430,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34431,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34432,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34433,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34434,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34435,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34436,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34437,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34438,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34439,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34440,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34441,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34442,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34443,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34444,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34445,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34446,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34446,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34447,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34448,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34449,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,theme,pdf-engine,pdf-engine-opt,pdf-engine-opts,beameroption,aspectratio,logo,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,quarto-required,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,incremental,slide-level,df-print,ascii,toc,table-of-contents,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^quarto_required$|^quartoRequired$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":34451,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":37069,"type":"anyOf","anyOf":[{"_internalId":37067,"type":"object","description":"be an object","properties":{"eval":{"_internalId":36972,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":36973,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":36974,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":36975,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":36976,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":36977,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":36978,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":36979,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":36980,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":36981,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":36982,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":36983,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":36984,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":36985,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":36986,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":36987,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":36988,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":36989,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":36990,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":36991,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":36992,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":36993,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":36994,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":36995,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":36996,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":36997,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":36998,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":36999,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":37000,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":37001,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":37002,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":37003,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":37004,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":37005,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":37006,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":37006,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":37007,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":37008,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":37009,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":37010,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":37011,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":37012,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":37013,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":37014,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":37015,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":37016,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":37017,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":37018,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":37019,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":37020,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":37021,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":37022,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":37023,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":37024,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":37025,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":37026,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":37027,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":37028,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":37029,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":37030,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":37031,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":37032,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":37033,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":37034,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":37035,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":37036,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":37037,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":37038,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":37039,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":37040,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":37041,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":37042,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":37042,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":37043,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":37044,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":37045,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":37046,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":37047,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":37048,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":37049,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":37050,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":37051,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":37052,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":37053,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":37054,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":37055,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":37056,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":37057,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":37058,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":37059,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":37060,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":37061,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":37062,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":37063,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":37064,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":37065,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":37065,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":37066,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":37068,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":39686,"type":"anyOf","anyOf":[{"_internalId":39684,"type":"object","description":"be an object","properties":{"eval":{"_internalId":39589,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":39590,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":39591,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":39592,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":39593,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":39594,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":39595,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":39596,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":39597,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":39598,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":39599,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":39600,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":39601,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":39602,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":39603,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":39604,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":39605,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":39606,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":39607,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":39608,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":39609,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":39610,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":39611,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":39612,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":39613,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":39614,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":39615,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":39616,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":39617,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":39618,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":39619,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":39620,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":39621,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":39622,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":39623,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":39623,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":39624,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":39625,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":39626,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":39627,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":39628,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":39629,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":39630,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":39631,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":39632,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":39633,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":39634,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":39635,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":39636,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":39637,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":39638,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":39639,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":39640,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":39641,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":39642,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":39643,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":39644,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":39645,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":39646,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":39647,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":39648,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":39649,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":39650,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":39651,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":39652,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":39653,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":39654,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":39655,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":39656,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":39657,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":39658,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":39659,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":39659,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":39660,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":39661,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":39662,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":39663,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":39664,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":39665,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":39666,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":39667,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":39668,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":39669,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":39670,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":39671,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":39672,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":39673,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":39674,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":39675,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":39676,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":39677,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":39678,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":39679,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":39680,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":39681,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":39682,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":39682,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":39683,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":39685,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42304,"type":"anyOf","anyOf":[{"_internalId":42302,"type":"object","description":"be an object","properties":{"eval":{"_internalId":42206,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":42207,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":42208,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":42209,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":42210,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":42211,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":42212,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":42213,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":42214,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":42215,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":42216,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":42217,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":42218,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":42219,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":42220,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":42221,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":42222,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":42223,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":42224,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":42225,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":42226,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":42227,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":42228,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":42229,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":42230,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":42231,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":42232,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":42233,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":42234,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":42235,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":42236,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":42237,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":42238,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":42239,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":42240,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":42241,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":42241,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":42242,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":42243,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":42244,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":42245,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":42246,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":42247,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":42248,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":42249,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":42250,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":42251,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":42252,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":42253,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":42254,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":42255,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":42256,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":42257,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":42258,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":42259,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":42260,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":42261,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":42262,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":42263,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":42264,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":42265,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":42266,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":42267,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":42268,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":42269,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42270,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42271,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42272,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42273,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42274,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42275,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42276,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42277,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42277,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42278,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42279,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42280,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42281,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42282,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42283,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42284,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42285,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42286,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42287,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42288,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42289,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42290,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42291,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42292,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42293,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42294,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42295,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42296,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42297,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42298,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42299,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42300,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42300,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42301,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":42303,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":44928,"type":"anyOf","anyOf":[{"_internalId":44926,"type":"object","description":"be an object","properties":{"eval":{"_internalId":44824,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":44825,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":44826,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":44827,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":44828,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":44829,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":44830,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":44831,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":44832,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":44833,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":44834,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":44835,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":44836,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":44837,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":44838,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":44839,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":44840,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":44841,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":44842,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":44843,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":44844,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":44845,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":44846,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":44847,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":44848,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":44849,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":44850,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":44851,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":44852,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":44853,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":44854,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":44855,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":44856,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":44857,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":44858,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":44859,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":44859,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":44860,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":44861,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":44862,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":44863,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":44864,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":44865,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":44866,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":44867,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":44868,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":44869,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":44870,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":44871,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":44872,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":44873,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":44874,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":44875,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":44876,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":44877,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":44878,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":44879,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":44880,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":44881,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":44882,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":44883,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":44884,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":44885,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":44886,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":44887,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":44888,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":44889,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":44890,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":44891,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":44892,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":44893,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":44894,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":44895,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":44896,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":44897,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":44898,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":44899,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":44899,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":44900,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":44901,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":44902,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":44903,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":44904,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":44905,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":44906,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":44907,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":44908,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":44909,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":44910,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":44911,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":44912,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":44913,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":44914,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":44915,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":44916,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":44917,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":44918,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":44919,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":44920,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":44921,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":44922,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":44923,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":44924,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":44924,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":44925,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":44927,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":47552,"type":"anyOf","anyOf":[{"_internalId":47550,"type":"object","description":"be an object","properties":{"eval":{"_internalId":47448,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":47449,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":47450,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":47451,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":47452,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":47453,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":47454,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":47455,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":47456,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":47457,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":47458,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":47459,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":47460,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":47461,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":47462,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":47463,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":47464,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":47465,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":47466,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":47467,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":47468,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":47469,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":47470,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":47471,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":47472,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":47473,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":47474,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":47475,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":47476,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":47477,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":47478,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":47479,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":47480,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":47481,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":47482,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":47483,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":47483,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":47484,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":47485,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":47486,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":47487,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":47488,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":47489,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":47490,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":47491,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":47492,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":47493,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":47494,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":47495,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":47496,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":47497,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":47498,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":47499,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":47500,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":47501,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":47502,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":47503,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":47504,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":47505,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":47506,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":47507,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":47508,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":47509,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":47510,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":47511,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":47512,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":47513,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":47514,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":47515,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":47516,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":47517,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":47518,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":47519,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":47520,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":47521,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":47522,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":47523,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":47523,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":47524,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":47525,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":47526,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":47527,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":47528,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":47529,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":47530,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":47531,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":47532,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":47533,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":47534,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":47535,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":47536,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":47537,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":47538,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":47539,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":47540,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":47541,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":47542,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":47543,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":47544,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":47545,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":47546,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":47547,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":47548,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":47548,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":47549,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":47551,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":50198,"type":"anyOf","anyOf":[{"_internalId":50196,"type":"object","description":"be an object","properties":{"eval":{"_internalId":50072,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":50073,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":50074,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":50075,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":50076,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":50077,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":50078,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":50079,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":50080,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":50081,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":50082,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":50083,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":50084,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":50085,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":50086,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":50087,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":50088,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":50089,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":50090,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":50091,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":50092,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":50093,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":50094,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":50095,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":50096,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":50097,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":50098,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":50099,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":50100,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":50101,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":50102,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":50103,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":50104,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":50105,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":50106,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":50107,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":50108,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":50109,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":50110,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":50111,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":50112,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":50113,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":50114,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":50115,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":50116,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":50117,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":50118,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":50118,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":50119,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":50120,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":50121,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":50122,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":50123,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":50124,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":50125,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":50126,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":50127,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":50128,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":50129,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":50130,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":50131,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":50132,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":50133,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":50134,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":50135,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":50136,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":50137,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":50138,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":50139,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":50140,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":50141,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":50142,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":50143,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":50144,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":50145,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":50146,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":50147,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":50148,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":50149,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"margin-left":{"_internalId":50150,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":50151,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":50152,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":50153,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":50154,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":50155,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":50156,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":50157,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":50158,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":50159,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":50160,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":50161,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":50162,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":50163,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":50164,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":50165,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":50166,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":50167,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":50168,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":50169,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":50170,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":50171,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":50171,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":50172,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":50173,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":50174,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":50175,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":50176,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":50177,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":50178,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":50179,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":50180,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":50181,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":50182,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":50183,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":50184,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":50185,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":50186,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":50187,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":50188,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":50189,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":50190,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":50191,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":50192,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":50193,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":50194,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":50194,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":50195,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,linkcolor,contrastcolor,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,linestretch,interlinespace,linkstyle,whitespace,indenting,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,headertext,footertext,includesource,metadata-file,metadata-files,lang,language,dir,layout,margin-left,margin-right,margin-top,margin-bottom,keywords,number-sections,shift-heading-level-by,pagenumbering,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdfa,pdfaiccprofile,pdfaintent,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":50197,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":52815,"type":"anyOf","anyOf":[{"_internalId":52813,"type":"object","description":"be an object","properties":{"eval":{"_internalId":52718,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":52719,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":52720,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":52721,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":52722,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":52723,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":52724,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":52725,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":52726,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":52727,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":52728,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":52729,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":52730,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":52731,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":52732,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":52733,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":52734,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":52735,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":52736,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":52737,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":52738,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":52739,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":52740,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":52741,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":52742,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":52743,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":52744,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":52745,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":52746,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":52747,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":52748,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":52749,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":52750,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":52751,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":52752,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":52752,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":52753,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":52754,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":52755,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":52756,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":52757,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":52758,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":52759,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":52760,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":52761,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":52762,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":52763,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":52764,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":52765,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":52766,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":52767,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":52768,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":52769,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":52770,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":52771,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":52772,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":52773,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":52774,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":52775,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":52776,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":52777,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":52778,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":52779,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":52780,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":52781,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":52782,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":52783,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":52784,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":52785,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":52786,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":52787,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":52788,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":52788,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":52789,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":52790,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":52791,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":52792,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":52793,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":52794,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":52795,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":52796,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":52797,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":52798,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":52799,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":52800,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":52801,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":52802,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":52803,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":52804,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":52805,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":52806,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":52807,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":52808,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":52809,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":52810,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":52811,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":52811,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":52812,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":52814,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":55432,"type":"anyOf","anyOf":[{"_internalId":55430,"type":"object","description":"be an object","properties":{"eval":{"_internalId":55335,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":55336,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":55337,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":55338,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":55339,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":55340,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":55341,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":55342,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":55343,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":55344,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":55345,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":55346,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":55347,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":55348,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":55349,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":55350,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":55351,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":55352,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":55353,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":55354,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":55355,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":55356,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":55357,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":55358,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":55359,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":55360,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":55361,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":55362,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":55363,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":55364,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":55365,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":55366,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":55367,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":55368,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":55369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":55369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":55370,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":55371,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":55372,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":55373,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":55374,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":55375,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":55376,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":55377,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":55378,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":55379,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":55380,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":55381,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":55382,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":55383,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":55384,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":55385,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":55386,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":55387,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":55388,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":55389,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":55390,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":55391,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":55392,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":55393,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":55394,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":55395,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":55396,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":55397,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":55398,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":55399,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":55400,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":55401,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":55402,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":55403,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":55404,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":55405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":55405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":55406,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":55407,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":55408,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":55409,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":55410,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":55411,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":55412,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":55413,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":55414,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":55415,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":55416,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":55417,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":55418,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":55419,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":55420,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":55421,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":55422,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":55423,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":55424,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":55425,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":55426,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":55427,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":55428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":55428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":55429,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":55431,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":58045,"type":"anyOf","anyOf":[{"_internalId":58043,"type":"object","description":"be an object","properties":{"eval":{"_internalId":57952,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":57953,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":57954,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":57955,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":57956,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":57957,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":57958,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":57959,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":57960,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":57961,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":57962,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":57963,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":57964,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":57965,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":57966,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":57967,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":57968,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":57969,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":57970,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":57971,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":57972,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":57973,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":57974,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":57975,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":57976,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":57977,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":57978,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":57979,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":57980,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":57981,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":57982,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":57983,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":57984,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":57985,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":57986,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":57986,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":57987,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":57988,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":57989,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":57990,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":57991,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":57992,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":57993,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":57994,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":57995,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":57996,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":57997,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":57998,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":57999,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":58000,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":58001,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":58002,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":58003,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":58004,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":58005,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":58006,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":58007,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":58008,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":58009,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":58010,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":58011,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":58012,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":58013,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":58014,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":58015,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":58016,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":58017,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":58018,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":58019,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":58020,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":58021,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":58022,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":58023,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":58024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":58024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":58025,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":58026,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":58027,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":58028,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":58029,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":58030,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":58031,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":58032,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":58033,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":58034,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":58035,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":58036,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":58037,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":58038,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":58039,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":58040,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":58041,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":58042,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":58044,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":60658,"type":"anyOf","anyOf":[{"_internalId":60656,"type":"object","description":"be an object","properties":{"eval":{"_internalId":60565,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":60566,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":60567,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":60568,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":60569,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":60570,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":60571,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":60572,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":60573,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":60574,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":60575,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":60576,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":60577,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":60578,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":60579,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":60580,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":60581,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":60582,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":60583,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":60584,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":60585,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":60586,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":60587,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":60588,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":60589,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":60590,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":60591,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":60592,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":60593,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":60594,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":60595,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":60596,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":60597,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":60598,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":60599,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":60599,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":60600,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":60601,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":60602,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":60603,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":60604,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":60605,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":60606,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":60607,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":60608,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":60609,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":60610,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":60611,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":60612,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":60613,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":60614,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":60615,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":60616,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":60617,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":60618,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":60619,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":60620,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":60621,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":60622,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":60623,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":60624,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":60625,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":60626,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":60627,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":60628,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":60629,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":60630,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":60631,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":60632,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":60633,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":60634,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":60635,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":60636,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":60637,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":60637,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":60638,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":60639,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":60640,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":60641,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":60642,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":60643,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":60644,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":60645,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":60646,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":60647,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":60648,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":60649,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":60650,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":60651,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":60652,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":60653,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":60654,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":60655,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":60657,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":63271,"type":"anyOf","anyOf":[{"_internalId":63269,"type":"object","description":"be an object","properties":{"eval":{"_internalId":63178,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":63179,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":63180,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":63181,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":63182,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":63183,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":63184,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":63185,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":63186,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":63187,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":63188,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":63189,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":63190,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":63191,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":63192,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":63193,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":63194,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":63195,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":63196,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":63197,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":63198,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":63199,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":63200,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":63201,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":63202,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":63203,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":63204,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":63205,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":63206,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":63207,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":63208,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":63209,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":63210,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":63211,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":63212,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":63212,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":63213,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":63214,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":63215,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":63216,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":63217,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":63218,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":63219,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":63220,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":63221,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":63222,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":63223,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":63224,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":63225,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":63226,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":63227,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":63228,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":63229,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":63230,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":63231,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":63232,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":63233,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":63234,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":63235,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":63236,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":63237,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":63238,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":63239,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":63240,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":63241,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":63242,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":63243,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":63244,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":63245,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":63246,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":63247,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":63248,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":63249,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":63250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":63250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":63251,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":63252,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":63253,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":63254,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":63255,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":63256,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":63257,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":63258,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":63259,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":63260,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":63261,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":63262,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":63263,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":63264,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":63265,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":63266,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":63267,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":63268,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":63270,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":65896,"type":"anyOf","anyOf":[{"_internalId":65894,"type":"object","description":"be an object","properties":{"eval":{"_internalId":65791,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":65792,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":65793,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":65794,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":65795,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":65796,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":65797,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":65798,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":65799,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":65800,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":65801,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":65802,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":65803,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":65804,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":65805,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":65806,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":65807,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":65808,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":65809,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":65810,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":65811,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":65812,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":65813,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":65814,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":65815,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":65816,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":65817,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":65818,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":65819,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":65820,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":65821,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":65822,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":65823,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":65824,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":65825,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":65826,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":65827,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":65828,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":65829,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":65830,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":65831,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":65832,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":65833,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":65833,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":65834,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":65835,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":65836,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":65837,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":65838,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":65839,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":65840,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":65841,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":65842,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":65843,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":65844,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":65845,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":65846,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":65847,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":65848,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":65849,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":65850,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":65851,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":65852,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":65853,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":65854,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":65855,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":65856,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":65857,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":65858,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":65859,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":65860,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":65861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":65862,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":65863,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":65864,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":65865,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":65866,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":65867,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":65868,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":65869,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":65870,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":65871,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":65872,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":65873,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":65874,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":65874,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":65875,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":65876,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":65877,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":65878,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":65879,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":65880,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":65881,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":65882,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":65883,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":65884,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":65885,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":65886,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":65887,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":65888,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":65889,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":65890,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":65891,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":65891,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":65892,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":65893,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,category,number-sections,number-depth,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":65895,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":68513,"type":"anyOf","anyOf":[{"_internalId":68511,"type":"object","description":"be an object","properties":{"eval":{"_internalId":68416,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":68417,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":68418,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":68419,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":68420,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":68421,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":68422,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":68423,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":68424,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":68425,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":68426,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":68427,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":68428,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":68429,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":68430,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":68431,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":68432,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":68433,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":68434,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":68435,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":68436,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":68437,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":68438,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":68439,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":68440,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":68441,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":68442,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":68443,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":68444,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":68445,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":68446,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":68447,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":68448,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":68449,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":68450,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":68450,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":68451,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":68452,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":68453,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":68454,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":68455,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":68456,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":68457,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":68458,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":68459,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":68460,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":68461,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":68462,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":68463,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":68464,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":68465,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":68466,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":68467,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":68468,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":68469,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":68470,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":68471,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":68472,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":68473,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":68474,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":68475,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":68476,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":68477,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":68478,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":68479,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":68480,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":68481,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":68482,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":68483,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":68484,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":68485,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":68486,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":68486,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":68487,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":68488,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":68489,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":68490,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":68491,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":68492,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":68493,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":68494,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":68495,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":68496,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":68497,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":68498,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":68499,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":68500,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":68501,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":68502,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":68503,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":68504,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":68505,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":68506,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":68507,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":68508,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":68509,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":68509,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":68510,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":68512,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":71180,"type":"anyOf","anyOf":[{"_internalId":71178,"type":"object","description":"be an object","properties":{"eval":{"_internalId":71033,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":71034,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":71035,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":71036,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":71037,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":71038,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":71039,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":71040,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":71041,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":71042,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":71043,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":71044,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":71045,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":71046,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":71047,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":71048,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":71049,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":71050,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":71051,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":71052,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":71053,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":71054,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":71055,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":71056,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":71057,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":71058,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":71059,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":71060,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":71061,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":71062,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":71063,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":71064,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":71065,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":71066,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":71067,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":71068,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":71069,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":71070,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":71071,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":71072,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":71073,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":71074,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":71075,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":71076,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":71077,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":71078,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":71079,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":71080,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":71081,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":71082,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":71083,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":71084,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":71085,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":71086,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":71087,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":71088,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":71089,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":71090,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":71090,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":71091,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":71092,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":71093,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":71094,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":71095,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":71096,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":71097,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":71098,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":71099,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":71100,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":71101,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":71102,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":71103,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":71104,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":71105,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":71106,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":71107,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":71108,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":71109,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":71110,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":71111,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":71112,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":71113,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":71114,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":71115,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":71116,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":71117,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":71118,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":71119,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":71120,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":71121,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":71122,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":71123,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":71124,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":71125,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":71126,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":71127,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":71128,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":71129,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":71130,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":71131,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":71132,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":71133,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":71134,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":71135,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":71136,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":71137,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":71138,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":71139,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":71140,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":71141,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":71142,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":71143,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":71144,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":71145,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":71146,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":71147,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":71148,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":71149,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":71149,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":71150,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":71151,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":71152,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":71153,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":71154,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":71155,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":71156,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":71157,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":71158,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":71159,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":71160,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":71161,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":71162,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":71163,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":71164,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":71165,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":71166,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":71167,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":71168,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":71169,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":71170,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":71171,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":71172,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":71173,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":71174,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":71175,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":71175,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":71176,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":71177,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":71179,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":73837,"type":"anyOf","anyOf":[{"_internalId":73835,"type":"object","description":"be an object","properties":{"eval":{"_internalId":73700,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":73701,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":73702,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":73703,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":73704,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":73705,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":73706,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":73707,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":73708,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":73709,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":73710,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":73711,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":73712,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":73713,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":73714,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":73715,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":73716,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":73717,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":73718,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":73719,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":73720,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":73721,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":73722,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":73723,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":73724,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":73725,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":73726,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":73727,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":73728,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":73729,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":73730,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":73731,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":73732,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":73733,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":73734,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":73735,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":73736,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":73737,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":73738,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":73739,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":73740,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":73741,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":73742,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":73743,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":73744,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":73745,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":73746,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":73747,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":73748,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":73749,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":73750,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":73751,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":73752,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":73753,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":73754,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":73755,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":73756,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":73757,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":73758,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":73759,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":73760,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":73761,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":73762,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":73763,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":73764,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":73765,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":73766,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":73767,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":73768,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":73769,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":73769,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":73770,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":73771,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":73772,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":73773,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":73774,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":73775,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":73776,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":73777,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":73778,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":73779,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":73780,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":73781,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":73782,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":73783,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":73784,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":73785,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":73786,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":73787,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":73788,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":73789,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":73790,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":73791,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":73792,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":73793,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":73794,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":73795,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":73796,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":73797,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":73798,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":73799,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":73800,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":73801,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":73802,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":73803,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":73804,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":73805,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":73806,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":73807,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":73808,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":73809,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":73810,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":73811,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":73812,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":73812,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":73813,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":73814,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":73815,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":73816,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":73817,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":73818,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":73819,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":73820,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":73821,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":73822,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":73823,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":73824,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":73825,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":73826,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":73827,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":73828,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":73829,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":73830,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":73831,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":73832,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":73832,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":73833,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":73834,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":73836,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":76494,"type":"anyOf","anyOf":[{"_internalId":76492,"type":"object","description":"be an object","properties":{"eval":{"_internalId":76357,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":76358,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":76359,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":76360,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":76361,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":76362,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":76363,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":76364,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":76365,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":76366,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":76367,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":76368,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":76369,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":76370,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":76371,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":76372,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":76373,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":76374,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":76375,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":76376,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":76377,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":76378,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":76379,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":76380,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":76381,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":76382,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":76383,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":76384,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":76385,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":76386,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":76387,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":76388,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":76389,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":76390,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":76391,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":76392,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":76393,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":76394,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":76395,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":76396,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":76397,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":76398,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":76399,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":76400,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":76401,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":76402,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":76403,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":76404,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":76405,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":76406,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":76407,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":76408,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":76409,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":76410,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":76411,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":76412,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":76413,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":76414,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":76415,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":76416,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":76417,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":76418,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":76419,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":76420,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":76421,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":76422,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":76423,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":76424,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":76425,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":76426,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":76426,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":76427,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":76428,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":76429,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":76430,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":76431,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":76432,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":76433,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":76434,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":76435,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":76436,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":76437,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":76438,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":76439,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":76440,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":76441,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":76442,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":76443,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":76444,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":76445,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":76446,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":76447,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":76448,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":76449,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":76450,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":76451,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":76452,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":76453,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":76454,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":76455,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":76456,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":76457,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":76458,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":76459,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":76460,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":76461,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":76462,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":76463,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":76464,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":76465,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":76466,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":76467,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":76468,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":76469,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":76469,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":76470,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":76471,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":76472,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":76473,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":76474,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":76475,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":76476,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":76477,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":76478,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":76479,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":76480,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":76481,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":76482,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":76483,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":76484,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":76485,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":76486,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":76487,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":76488,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":76489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":76489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":76490,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":76491,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":76493,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":79151,"type":"anyOf","anyOf":[{"_internalId":79149,"type":"object","description":"be an object","properties":{"eval":{"_internalId":79014,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":79015,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":79016,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":79017,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":79018,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":79019,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":79020,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":79021,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":79022,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":79023,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":79024,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":79025,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":79026,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":79027,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":79028,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":79029,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":79030,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":79031,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":79032,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":79033,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":79034,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":79035,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":79036,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":79037,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":79038,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":79039,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":79040,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":79041,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":79042,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":79043,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":79044,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":79045,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":79046,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":79047,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":79048,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":79049,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":79050,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":79051,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":79052,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":79053,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":79054,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":79055,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":79056,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":79057,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":79058,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":79059,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":79060,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":79061,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":79062,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":79063,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":79064,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":79065,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":79066,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":79067,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":79068,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":79069,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":79070,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":79071,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":79072,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":79073,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":79074,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":79075,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":79076,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":79077,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":79078,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":79079,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":79080,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":79081,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":79082,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":79083,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":79083,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":79084,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":79085,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":79086,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":79087,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":79088,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":79089,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":79090,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":79091,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":79092,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":79093,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":79094,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":79095,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":79096,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":79097,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":79098,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":79099,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":79100,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":79101,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":79102,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":79103,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":79104,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":79105,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":79106,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":79107,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":79108,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":79109,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":79110,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":79111,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":79112,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":79113,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":79114,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":79115,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":79116,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":79117,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":79118,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":79119,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":79120,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":79121,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":79122,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":79123,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":79124,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":79125,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":79126,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":79126,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":79127,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":79128,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":79129,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":79130,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":79131,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":79132,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":79133,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":79134,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":79135,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":79136,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":79137,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":79138,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":79139,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":79140,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":79141,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":79142,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":79143,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":79144,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":79145,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":79146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":79146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":79147,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":79148,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":79150,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":81768,"type":"anyOf","anyOf":[{"_internalId":81766,"type":"object","description":"be an object","properties":{"eval":{"_internalId":81671,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":81672,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":81673,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":81674,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":81675,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":81676,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":81677,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":81678,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":81679,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":81680,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":81681,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":81682,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":81683,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":81684,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":81685,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":81686,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":81687,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":81688,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":81689,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":81690,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":81691,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":81692,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":81693,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":81694,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":81695,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":81696,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":81697,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":81698,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":81699,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":81700,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":81701,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":81702,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":81703,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":81704,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":81705,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":81705,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":81706,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":81707,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":81708,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":81709,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":81710,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":81711,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":81712,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":81713,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":81714,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":81715,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":81716,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":81717,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":81718,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":81719,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":81720,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":81721,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":81722,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":81723,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":81724,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":81725,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":81726,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":81727,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":81728,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":81729,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":81730,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":81731,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":81732,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":81733,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":81734,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":81735,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":81736,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":81737,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":81738,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":81739,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":81740,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":81741,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":81741,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":81742,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":81743,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":81744,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":81745,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":81746,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":81747,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":81748,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":81749,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":81750,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":81751,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":81752,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":81753,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":81754,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":81755,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":81756,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":81757,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":81758,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":81759,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":81760,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":81761,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":81762,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":81763,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":81764,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":81764,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":81765,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":81767,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":84394,"type":"anyOf","anyOf":[{"_internalId":84392,"type":"object","description":"be an object","properties":{"eval":{"_internalId":84288,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":84289,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":84290,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":84291,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":84292,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":84293,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":84294,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":84295,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":84296,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":84297,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":84298,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":84299,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":84300,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":84301,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":84302,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":84303,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":84304,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":84305,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":84306,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":84307,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":84308,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":84309,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":84310,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":84311,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":84312,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":84313,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":84314,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":84315,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":84316,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":84317,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":84318,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":84319,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":84320,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":84321,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":84322,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":84323,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":84323,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":84324,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":84325,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":84326,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":84327,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":84328,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":84329,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":84330,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":84331,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":84332,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":84333,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":84334,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":84335,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":84336,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":84337,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":84338,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":84339,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":84340,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":84341,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":84342,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":84343,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":84344,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":84345,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":84346,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":84347,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":84348,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":84349,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":84350,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":84351,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":84352,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":84353,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":84354,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":84355,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":84356,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":84357,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":84358,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":84359,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":84360,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":84361,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":84362,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":84363,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":84364,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":84365,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":84365,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":84366,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":84367,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":84368,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":84369,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":84370,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":84371,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":84372,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":84373,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":84374,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":84375,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":84376,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":84377,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":84378,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":84379,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":84380,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":84381,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":84382,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":84383,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":84384,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":84385,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":84386,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":84387,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":84388,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":84389,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":84390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":84390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":84391,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,html-math-method,identifier-prefix,variant,markdown-headings,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":84393,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":87012,"type":"anyOf","anyOf":[{"_internalId":87010,"type":"object","description":"be an object","properties":{"eval":{"_internalId":86914,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":86915,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":86916,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":86917,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":86918,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":86919,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":86920,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":86921,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":86922,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":86923,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":86924,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":86925,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":86926,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":86927,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":86928,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":86929,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":86930,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":86931,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":86932,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":86933,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":86934,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":86935,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":86936,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":86937,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":86938,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":86939,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":86940,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":86941,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":86942,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":86943,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":86944,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":86945,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":86946,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":86947,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":86948,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":86948,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":86949,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":86950,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":86951,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":86952,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":86953,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":86954,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":86955,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":86956,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":86957,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":86958,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":86959,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":86960,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":86961,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":86962,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":86963,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":86964,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":86965,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":86966,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":86967,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":86968,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":86969,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":86970,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":86971,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":86972,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":86973,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":86974,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":86975,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":86976,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":86977,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":86978,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":86979,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":86980,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":86981,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":86982,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":86983,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":86984,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":86985,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":86985,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":86986,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":86987,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":86988,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":86989,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":86990,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":86991,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":86992,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":86993,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":86994,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":86995,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":86996,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":86997,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":86998,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":86999,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":87000,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":87001,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":87002,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":87003,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":87004,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":87005,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":87006,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":87007,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":87008,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":87008,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":87009,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":87011,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":89737,"type":"anyOf","anyOf":[{"_internalId":89735,"type":"object","description":"be an object","properties":{"eval":{"_internalId":89532,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":89533,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":89534,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":89535,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":89536,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":89537,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":89538,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":89539,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":89540,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":89541,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":89542,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":89543,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":89544,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":89545,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":89546,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":89547,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":89548,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":89549,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":89550,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":89551,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":89552,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":89553,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":89554,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":89555,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":89556,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":89557,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":89558,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":89559,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":89560,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":89561,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":89562,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":89563,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":89564,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":89565,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":89566,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":89567,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":89568,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":89569,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":89570,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":89571,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":89572,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":89573,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":89574,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":89575,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":89576,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":89577,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":89578,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":89579,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":89580,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":89581,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":89582,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":89583,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":89584,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":89585,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":89586,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":89587,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":89588,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":89589,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":89590,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":89591,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":89592,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":89593,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":89594,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":89595,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":89596,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":89597,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":89598,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":89599,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":89600,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":89601,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":89602,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":89603,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":89603,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":89604,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":89605,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":89606,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":89607,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":89608,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":89609,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":89610,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":89611,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":89612,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":89613,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":89614,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":89615,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":89616,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":89617,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":89618,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":89619,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":89620,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":89621,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":89622,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":89623,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":89624,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":89625,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":89626,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":89627,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":89628,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":89629,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":89630,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":89631,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":89632,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":89633,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":89634,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":89635,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":89636,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":89637,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":89638,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":89639,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":89640,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":89641,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":89642,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":89643,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":89644,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":89645,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":89646,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":89647,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":89648,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":89649,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":89650,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":89651,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":89652,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":89653,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":89654,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":89655,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":89656,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":89657,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":89658,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":89659,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":89660,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":89661,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":89662,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":89663,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":89664,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":89665,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":89666,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":89667,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":89668,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":89669,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":89670,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":89671,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":89672,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":89673,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":89674,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":89675,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":89676,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":89677,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":89678,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":89679,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":89680,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":89681,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":89682,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":89683,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":89684,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":89685,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":89686,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":89687,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":89688,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":89689,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":89690,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":89691,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":89692,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":89693,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":89694,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":89695,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":89696,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":89697,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":89697,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":89698,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":89699,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":89700,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":89701,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":89702,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":89703,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":89704,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":89705,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":89706,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":89707,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":89708,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":89709,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":89710,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":89711,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":89712,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":89713,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":89714,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":89715,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":89716,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":89717,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":89718,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":89719,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":89720,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":89721,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":89721,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":89722,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":89723,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":89724,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":89725,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":89726,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":89727,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":89728,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":89729,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":89730,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":89731,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":89732,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":89733,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":89734,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":89736,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":92462,"type":"anyOf","anyOf":[{"_internalId":92460,"type":"object","description":"be an object","properties":{"eval":{"_internalId":92257,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":92258,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":92259,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":92260,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":92261,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":92262,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":92263,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":92264,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":92265,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":92266,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":92267,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":92268,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":92269,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":92270,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":92271,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":92272,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":92273,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":92274,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":92275,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":92276,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":92277,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":92278,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":92279,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":92280,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":92281,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":92282,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":92283,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":92284,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":92285,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":92286,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":92287,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":92288,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":92289,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":92290,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":92291,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":92292,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":92293,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":92294,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":92295,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":92296,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":92297,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":92298,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":92299,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":92300,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":92301,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":92302,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":92303,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":92304,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":92305,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":92306,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":92307,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":92308,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":92309,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":92310,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":92311,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":92312,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":92313,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":92314,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":92315,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":92316,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":92317,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":92318,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":92319,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":92320,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":92321,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":92322,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":92323,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":92324,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":92325,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":92326,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":92327,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":92328,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":92328,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":92329,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":92330,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":92331,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":92332,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":92333,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":92334,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":92335,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":92336,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":92337,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":92338,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":92339,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":92340,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":92341,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":92342,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":92343,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":92344,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":92345,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":92346,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":92347,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":92348,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":92349,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":92350,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":92351,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":92352,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":92353,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":92354,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":92355,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":92356,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":92357,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":92358,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":92359,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":92360,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":92361,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":92362,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":92363,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":92364,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":92365,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":92366,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":92367,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":92368,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":92369,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":92370,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":92371,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":92372,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":92373,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":92374,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":92375,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":92376,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":92377,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":92378,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":92379,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":92380,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":92381,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":92382,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":92383,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":92384,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":92385,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":92386,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":92387,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":92388,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":92389,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":92390,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":92391,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":92392,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":92393,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":92394,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":92395,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":92396,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":92397,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":92398,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":92399,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":92400,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":92401,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":92402,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":92403,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":92404,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":92405,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":92406,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":92407,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":92408,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":92409,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":92410,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":92411,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":92412,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":92413,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":92414,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":92415,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":92416,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":92417,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":92418,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":92419,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":92420,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":92421,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":92422,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":92422,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":92423,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":92424,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":92425,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":92426,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":92427,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":92428,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":92429,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":92430,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":92431,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":92432,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":92433,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":92434,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":92435,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":92436,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":92437,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":92438,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":92439,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":92440,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":92441,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":92442,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":92443,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":92444,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":92445,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":92446,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":92446,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":92447,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":92448,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":92449,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":92450,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":92451,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":92452,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":92453,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":92454,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":92455,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":92456,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":92457,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":92458,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":92459,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":92461,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":95187,"type":"anyOf","anyOf":[{"_internalId":95185,"type":"object","description":"be an object","properties":{"eval":{"_internalId":94982,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":94983,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":94984,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":94985,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":94986,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":94987,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":94988,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":94989,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":94990,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":94991,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":94992,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":94993,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":94994,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":94995,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":94996,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":94997,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":94998,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":94999,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":95000,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":95001,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":95002,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":95003,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":95004,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":95005,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":95006,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":95007,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":95008,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":95009,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":95010,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":95011,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":95012,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":95013,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":95014,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":95015,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":95016,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":95017,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":95018,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":95019,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":95020,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":95021,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":95022,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":95023,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":95024,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":95025,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":95026,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":95027,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":95028,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":95029,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":95030,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":95031,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":95032,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":95033,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":95034,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":95035,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":95036,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":95037,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":95038,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":95039,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":95040,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":95041,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":95042,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":95043,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":95044,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":95045,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":95046,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":95047,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":95048,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":95049,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":95050,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":95051,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":95052,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":95053,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":95053,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":95054,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":95055,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":95056,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":95057,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":95058,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":95059,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":95060,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":95061,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":95062,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":95063,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":95064,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":95065,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":95066,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":95067,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":95068,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":95069,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":95070,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":95071,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":95072,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":95073,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":95074,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":95075,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":95076,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":95077,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":95078,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":95079,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":95080,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":95081,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":95082,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":95083,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":95084,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":95085,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":95086,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":95087,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":95088,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":95089,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":95090,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":95091,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":95092,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":95093,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":95094,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":95095,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":95096,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":95097,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":95098,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":95099,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":95100,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":95101,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":95102,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":95103,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":95104,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":95105,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":95106,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":95107,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":95108,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":95109,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":95110,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":95111,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":95112,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":95113,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":95114,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":95115,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":95116,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":95117,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":95118,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":95119,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":95120,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":95121,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":95122,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":95123,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":95124,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":95125,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":95126,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":95127,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":95128,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":95129,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":95130,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":95131,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":95132,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":95133,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":95134,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":95135,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":95136,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":95137,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":95138,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":95139,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":95140,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":95141,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":95142,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":95143,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":95144,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":95145,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":95146,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":95147,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":95147,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":95148,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":95149,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":95150,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":95151,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":95152,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":95153,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":95154,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":95155,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":95156,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":95157,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":95158,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":95159,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":95160,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":95161,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":95162,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":95163,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":95164,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":95165,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":95166,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":95167,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":95168,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":95169,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":95170,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":95171,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":95171,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":95172,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":95173,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":95174,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":95175,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":95176,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":95177,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":95178,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":95179,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":95180,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":95181,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":95182,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":95183,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":95184,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":95186,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":97804,"type":"anyOf","anyOf":[{"_internalId":97802,"type":"object","description":"be an object","properties":{"eval":{"_internalId":97707,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":97708,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":97709,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":97710,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":97711,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":97712,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":97713,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":97714,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":97715,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":97716,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":97717,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":97718,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":97719,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":97720,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":97721,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":97722,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":97723,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":97724,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":97725,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":97726,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":97727,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":97728,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":97729,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":97730,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":97731,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":97732,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":97733,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":97734,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":97735,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":97736,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":97737,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":97738,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":97739,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":97740,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":97741,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":97741,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":97742,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":97743,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":97744,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":97745,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":97746,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":97747,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":97748,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":97749,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":97750,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":97751,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":97752,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":97753,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":97754,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":97755,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":97756,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":97757,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":97758,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":97759,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":97760,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":97761,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":97762,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":97763,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":97764,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":97765,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":97766,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":97767,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":97768,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":97769,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":97770,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":97771,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":97772,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":97773,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":97774,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":97775,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":97776,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":97777,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":97777,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":97778,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":97779,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":97780,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":97781,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":97782,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":97783,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":97784,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":97785,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":97786,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":97787,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":97788,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":97789,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":97790,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":97791,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":97792,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":97793,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":97794,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":97795,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":97796,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":97797,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":97798,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":97799,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":97800,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":97800,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":97801,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":97803,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":100415,"type":"anyOf","anyOf":[{"_internalId":100413,"type":"object","description":"be an object","properties":{"eval":{"_internalId":100324,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":100325,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":100326,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":100327,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":100328,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":100329,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":100330,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":100331,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":100332,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":100333,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":100334,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":100335,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":100336,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":100337,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":100338,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":100339,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":100340,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":100341,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":100342,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":100343,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":100344,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":100345,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":100346,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":100347,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":100348,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":100349,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":100350,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":100351,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":100352,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":100353,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":100354,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":100355,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":100356,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":100357,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":100358,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":100358,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":100359,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":100360,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":100361,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":100362,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":100363,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":100364,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":100365,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":100366,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":100367,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":100368,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":100369,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":100370,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":100371,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":100372,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":100373,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":100374,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":100375,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":100376,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":100377,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":100378,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":100379,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":100380,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":100381,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":100382,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":100383,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":100384,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":100385,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":100386,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":100387,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":100388,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":100389,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":100390,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":100390,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":100391,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":100392,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":100393,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":100394,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":100395,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":100396,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":100397,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":100398,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":100399,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":100400,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":100401,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":100402,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":100403,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":100404,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":100405,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":100406,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":100407,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":100408,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":100409,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":100410,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":100411,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":100411,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":100412,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,markdown-headings,ipynb-output,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":100414,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":103035,"type":"anyOf","anyOf":[{"_internalId":103033,"type":"object","description":"be an object","properties":{"eval":{"_internalId":102935,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":102936,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":102937,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":102938,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":102939,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":102940,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":102941,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":102942,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":102943,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":102944,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":102945,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":102999,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":102947,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":102948,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":102949,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":102950,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":102951,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":102952,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":102953,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":102954,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":102955,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":102956,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":102957,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":102958,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":102959,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":102960,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":102961,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":102962,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":102963,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":102964,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":102965,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":102966,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":102967,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":102968,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":102969,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":102970,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":102971,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":102972,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":102973,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":102974,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":102975,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":102976,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":102976,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":102977,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":102978,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":102979,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":102980,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":102981,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":102982,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":102983,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":102984,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":102985,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":102986,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":102987,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":102988,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":102989,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":102990,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":102991,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":102992,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":102993,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":102994,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":102995,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":102996,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":102997,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":102998,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":103000,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":103001,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":103002,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":103003,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":103004,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":103005,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":103006,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":103007,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":103008,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":103009,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":103010,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":103010,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":103011,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":103012,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":103013,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":103014,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":103015,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":103016,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":103017,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":103018,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":103019,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":103020,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":103021,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":103022,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":103023,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":103024,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":103025,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":103026,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":103027,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":103028,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":103029,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":103030,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":103031,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":103032,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":103034,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":105655,"type":"anyOf","anyOf":[{"_internalId":105653,"type":"object","description":"be an object","properties":{"eval":{"_internalId":105555,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":105556,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":105557,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":105558,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":105559,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":105560,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":105561,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":105562,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":105563,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":105564,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":105565,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":105619,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":105567,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":105568,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":105569,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":105570,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":105571,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":105572,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":105573,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":105574,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":105575,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":105576,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":105577,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":105578,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":105579,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":105580,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":105581,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":105582,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":105583,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":105584,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":105585,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":105586,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":105587,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":105588,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":105589,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":105590,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":105591,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":105592,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":105593,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":105594,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":105595,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":105596,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":105596,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":105597,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":105598,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":105599,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":105600,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":105601,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":105602,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":105603,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":105604,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":105605,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":105606,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":105607,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":105608,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":105609,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":105610,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":105611,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":105612,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":105613,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":105614,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":105615,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":105616,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":105617,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":105618,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":105620,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":105621,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":105622,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":105623,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":105624,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":105625,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":105626,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":105627,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":105628,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":105629,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":105630,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":105630,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":105631,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":105632,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":105633,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":105634,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":105635,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":105636,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":105637,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":105638,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":105639,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":105640,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":105641,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":105642,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":105643,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":105644,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":105645,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":105646,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":105647,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":105648,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":105649,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":105650,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":105651,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":105652,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":105654,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":108275,"type":"anyOf","anyOf":[{"_internalId":108273,"type":"object","description":"be an object","properties":{"eval":{"_internalId":108175,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":108176,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":108177,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":108178,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":108179,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":108180,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":108181,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":108182,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":108183,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":108184,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":108185,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":108239,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":108187,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":108188,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":108189,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":108190,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":108191,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":108192,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":108193,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":108194,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":108195,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":108196,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":108197,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":108198,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":108199,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":108200,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":108201,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":108202,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":108203,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":108204,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":108205,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":108206,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":108207,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":108208,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":108209,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":108210,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":108211,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":108212,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":108213,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":108214,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":108215,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":108216,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":108216,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":108217,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":108218,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":108219,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":108220,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":108221,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":108222,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":108223,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":108224,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":108225,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":108226,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":108227,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":108228,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":108229,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":108230,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":108231,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":108232,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":108233,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":108234,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":108235,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":108236,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":108237,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":108238,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":108240,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":108241,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":108242,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":108243,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":108244,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":108245,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":108246,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":108247,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":108248,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":108249,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":108250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":108250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":108251,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":108252,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":108253,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":108254,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":108255,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":108256,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":108257,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":108258,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":108259,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":108260,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":108261,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":108262,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":108263,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":108264,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":108265,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":108266,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":108267,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":108268,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":108269,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":108270,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":108271,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":108272,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":108274,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":110895,"type":"anyOf","anyOf":[{"_internalId":110893,"type":"object","description":"be an object","properties":{"eval":{"_internalId":110795,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":110796,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":110797,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":110798,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":110799,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":110800,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":110801,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":110802,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":110803,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":110804,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":110805,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":110859,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":110807,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":110808,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":110809,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":110810,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":110811,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":110812,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":110813,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":110814,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":110815,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":110816,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":110817,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":110818,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":110819,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":110820,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":110821,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":110822,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":110823,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":110824,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":110825,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":110826,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":110827,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":110828,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":110829,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":110830,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":110831,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":110832,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":110833,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":110834,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":110835,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":110836,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":110836,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":110837,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":110838,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":110839,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":110840,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":110841,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":110842,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":110843,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":110844,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":110845,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":110846,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":110847,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":110848,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":110849,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":110850,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":110851,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":110852,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":110853,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":110854,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":110855,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":110856,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":110857,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":110858,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":110860,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":110861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":110862,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":110863,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":110864,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":110865,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":110866,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":110867,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":110868,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":110869,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":110870,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":110870,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":110871,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":110872,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":110873,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":110874,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":110875,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":110876,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":110877,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":110878,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":110879,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":110880,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":110881,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":110882,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":110883,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":110884,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":110885,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":110886,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":110887,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":110888,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":110889,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":110890,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":110891,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":110892,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":110894,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":113512,"type":"anyOf","anyOf":[{"_internalId":113510,"type":"object","description":"be an object","properties":{"eval":{"_internalId":113415,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":113416,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":113417,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":113418,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":113419,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":113420,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":113421,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":113422,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":113423,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":113424,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":113425,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":113426,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":113427,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":113428,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":113429,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":113430,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":113431,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":113432,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":113433,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":113434,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":113435,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":113436,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":113437,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":113438,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":113439,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":113440,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":113441,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":113442,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":113443,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":113444,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":113445,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":113446,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":113447,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":113448,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":113449,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":113449,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":113450,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":113451,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":113452,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":113453,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":113454,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":113455,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":113456,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":113457,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":113458,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":113459,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":113460,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":113461,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":113462,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":113463,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":113464,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":113465,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":113466,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":113467,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":113468,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":113469,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":113470,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":113471,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":113472,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":113473,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":113474,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":113475,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":113476,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":113477,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":113478,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":113479,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":113480,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":113481,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":113482,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":113483,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":113484,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":113485,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":113485,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":113486,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":113487,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":113488,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":113489,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":113490,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":113491,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":113492,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":113493,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":113494,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":113495,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":113496,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":113497,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":113498,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":113499,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":113500,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":113501,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":113502,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":113503,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":113504,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":113505,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":113506,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":113507,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":113508,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":113508,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":113509,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":113511,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":116129,"type":"anyOf","anyOf":[{"_internalId":116127,"type":"object","description":"be an object","properties":{"eval":{"_internalId":116032,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":116033,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":116034,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":116035,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":116036,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":116037,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":116038,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":116039,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":116040,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":116041,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":116042,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":116043,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":116044,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":116045,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":116046,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":116047,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":116048,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":116049,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":116050,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":116051,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":116052,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":116053,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":116054,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":116055,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":116056,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":116057,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":116058,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":116059,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":116060,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":116061,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":116062,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":116063,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":116064,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":116065,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":116066,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":116066,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":116067,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":116068,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":116069,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":116070,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":116071,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":116072,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":116073,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":116074,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":116075,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":116076,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":116077,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":116078,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":116079,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":116080,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":116081,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":116082,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":116083,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":116084,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":116085,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":116086,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":116087,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":116088,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":116089,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":116090,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":116091,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":116092,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":116093,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":116094,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":116095,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":116096,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":116097,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":116098,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":116099,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":116100,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":116101,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":116102,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":116102,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":116103,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":116104,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":116105,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":116106,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":116107,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":116108,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":116109,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":116110,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":116111,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":116112,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":116113,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":116114,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":116115,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":116116,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":116117,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":116118,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":116119,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":116120,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":116121,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":116122,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":116123,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":116124,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":116125,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":116125,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":116126,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":116128,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":118820,"type":"anyOf","anyOf":[{"_internalId":118818,"type":"object","description":"be an object","properties":{"eval":{"_internalId":118649,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":118650,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":118651,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":118652,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":118653,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":118654,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":118655,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":118656,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":118657,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":118658,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":118659,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":118660,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":118661,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":118662,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":118663,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":118664,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":118665,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":118666,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":118667,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":118668,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":118669,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":118670,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":118671,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":118672,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":118673,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":118674,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":118675,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":118676,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":118677,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":118678,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":118679,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":118680,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":118681,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":118682,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":118683,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":118684,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":118685,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":118686,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":118687,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":118688,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":118689,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":118690,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":118691,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":118692,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":118693,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":118694,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":118695,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":118696,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":118697,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":118698,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":118699,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":118700,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":118701,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":118702,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":118703,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":118704,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":118705,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":118706,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":118707,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":118708,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":118709,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":118710,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":118711,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":118712,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":118713,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":118714,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":118715,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":118716,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":118717,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":118718,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":118719,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":118720,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":118721,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":118722,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":118723,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":118724,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":118724,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":118725,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":118726,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":118727,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":118728,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":118729,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":118730,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":118731,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":118732,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":118733,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":118734,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":118735,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":118736,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":118737,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":118738,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":118739,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":118740,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":118741,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":118742,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":118743,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":118744,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":118745,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":118746,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":118747,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":118748,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":118749,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":118750,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":118751,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":118752,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":118753,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":118754,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":118755,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":118756,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":118757,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":118758,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":118759,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":118760,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":118761,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":118762,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":118763,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":118764,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":118765,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":118766,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":118767,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":118768,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":118769,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":118770,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":118771,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":118772,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":118773,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":118774,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":118775,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":118776,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":118777,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":118778,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":118779,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":118780,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":118781,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":118782,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":118783,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":118784,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":118785,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":118786,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":118787,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":118788,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":118789,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":118790,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":118791,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":118792,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":118792,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":118793,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":118794,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":118795,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":118796,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":118797,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":118798,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":118799,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":118800,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":118801,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":118802,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":118803,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":118804,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":118805,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":118806,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":118807,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":118808,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":118809,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":118810,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":118811,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":118812,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":118813,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":118813,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":118814,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":118815,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":118816,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":118817,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":118819,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":121440,"type":"anyOf","anyOf":[{"_internalId":121438,"type":"object","description":"be an object","properties":{"eval":{"_internalId":121340,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":121341,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":121342,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":121343,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":121344,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":121345,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":121346,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":121347,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":121348,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":121349,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":121350,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":121351,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":121352,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":121353,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":121354,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":121355,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":121356,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":121357,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":121358,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":121359,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":121360,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":121361,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":121362,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":121363,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":121364,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":121365,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":121366,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":121367,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":121368,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":121369,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":121370,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":121371,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":121372,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":121373,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":121374,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":121375,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":121376,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":121376,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":121377,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":121378,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":121379,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":121380,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":121381,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":121382,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":121383,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":121384,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":121385,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":121386,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":121387,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":121388,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":121389,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":121390,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":121391,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":121392,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":121393,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":121394,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":121395,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":121396,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":121397,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":121398,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":121399,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":121400,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":121401,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":121402,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":121403,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":121404,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":121405,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":121406,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":121407,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":121408,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":121409,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":121410,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":121411,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":121412,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":121413,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":121414,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":121415,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":121415,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":121416,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":121417,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":121418,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":121419,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":121420,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":121421,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":121422,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":121423,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":121424,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":121425,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":121426,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":121427,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":121428,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":121429,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":121430,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":121431,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":121432,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":121433,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":121434,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":121435,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":121436,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":121437,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,adjusting,hyphenate,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,footer,header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,section,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":121439,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":124064,"type":"anyOf","anyOf":[{"_internalId":124062,"type":"object","description":"be an object","properties":{"eval":{"_internalId":123960,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":123961,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":123962,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":123963,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":123964,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":123965,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":123966,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":123967,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":123968,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":123969,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":123970,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":123971,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":123972,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":123973,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":123974,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":123975,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":123976,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":123977,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":123978,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":123979,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":123980,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":123981,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":123982,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":123983,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":123984,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":123985,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":123986,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":123987,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":123988,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":123989,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":123990,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":123991,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":123992,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":123993,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":123994,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":123995,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":123995,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":123996,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":123997,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":123998,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":123999,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":124000,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":124001,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":124002,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":124003,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":124004,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":124005,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":124006,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":124007,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":124008,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":124009,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":124010,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":124011,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":124012,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":124013,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":124014,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":124015,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":124016,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":124017,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":124018,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":124019,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":124020,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":124021,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":124022,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":124023,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":124024,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":124025,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":124026,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":124027,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":124028,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":124029,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":124030,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":124031,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":124032,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":124033,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":124034,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":124035,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":124035,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":124036,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":124037,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":124038,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":124039,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":124040,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":124041,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":124042,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":124043,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":124044,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":124045,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":124046,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":124047,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":124048,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":124049,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":124050,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":124051,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":124052,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":124053,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":124054,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":124055,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":124056,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":124057,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":124058,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":124059,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":124060,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":124060,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":124061,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":124063,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":126681,"type":"anyOf","anyOf":[{"_internalId":126679,"type":"object","description":"be an object","properties":{"eval":{"_internalId":126584,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":126585,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":126586,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":126587,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":126588,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":126589,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":126590,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":126591,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":126592,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":126593,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":126594,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":126595,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":126596,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":126597,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":126598,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":126599,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":126600,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":126601,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":126602,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":126603,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":126604,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":126605,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":126606,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":126607,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":126608,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":126609,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":126610,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":126611,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":126612,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":126613,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":126614,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":126615,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":126616,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":126617,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":126618,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":126618,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":126619,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":126620,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":126621,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":126622,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":126623,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":126624,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":126625,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":126626,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":126627,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":126628,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":126629,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":126630,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":126631,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":126632,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":126633,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":126634,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":126635,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":126636,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":126637,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":126638,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":126639,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":126640,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":126641,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":126642,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":126643,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":126644,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":126645,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":126646,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":126647,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":126648,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":126649,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":126650,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":126651,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":126652,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":126653,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":126654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":126654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":126655,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":126656,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":126657,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":126658,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":126659,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":126660,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":126661,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":126662,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":126663,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":126664,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":126665,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":126666,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":126667,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":126668,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":126669,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":126670,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":126671,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":126672,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":126673,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":126674,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":126675,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":126676,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":126677,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":126677,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":126678,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":126680,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":129298,"type":"anyOf","anyOf":[{"_internalId":129296,"type":"object","description":"be an object","properties":{"eval":{"_internalId":129201,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":129202,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":129203,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":129204,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":129205,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":129206,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":129207,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":129208,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":129209,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":129210,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":129211,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":129212,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":129213,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":129214,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":129215,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":129216,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":129217,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":129218,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":129219,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":129220,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":129221,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":129222,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":129223,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":129224,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":129225,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":129226,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":129227,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":129228,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":129229,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":129230,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":129231,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":129232,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":129233,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":129234,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":129235,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":129235,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":129236,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":129237,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":129238,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":129239,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":129240,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":129241,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":129242,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":129243,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":129244,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":129245,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":129246,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":129247,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":129248,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":129249,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":129250,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":129251,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":129252,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":129253,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":129254,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":129255,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":129256,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":129257,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":129258,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":129259,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":129260,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":129261,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":129262,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":129263,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":129264,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":129265,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":129266,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":129267,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":129268,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":129269,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":129270,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":129271,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":129271,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":129272,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":129273,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":129274,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":129275,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":129276,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":129277,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":129278,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":129279,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":129280,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":129281,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":129282,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":129283,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":129284,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":129285,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":129286,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":129287,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":129288,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":129289,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":129290,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":129291,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":129292,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":129293,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":129294,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":129294,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":129295,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":129297,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":131915,"type":"anyOf","anyOf":[{"_internalId":131913,"type":"object","description":"be an object","properties":{"eval":{"_internalId":131818,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":131819,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":131820,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":131821,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":131822,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":131823,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":131824,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":131825,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":131826,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":131827,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":131828,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":131829,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":131830,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":131831,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":131832,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":131833,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":131834,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":131835,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":131836,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":131837,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":131838,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":131839,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":131840,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":131841,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":131842,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":131843,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":131844,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":131845,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":131846,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":131847,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":131848,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":131849,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":131850,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":131851,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":131852,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":131852,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":131853,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":131854,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":131855,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":131856,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":131857,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":131858,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":131859,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":131860,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":131861,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":131862,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":131863,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":131864,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":131865,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":131866,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":131867,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":131868,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":131869,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":131870,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":131871,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":131872,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":131873,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":131874,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":131875,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":131876,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":131877,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":131878,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":131879,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":131880,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":131881,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":131882,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":131883,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":131884,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":131885,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":131886,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":131887,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":131888,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":131888,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":131889,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":131890,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":131891,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":131892,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":131893,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":131894,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":131895,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":131896,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":131897,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":131898,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":131899,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":131900,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":131901,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":131902,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":131903,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":131904,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":131905,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":131906,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":131907,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":131908,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":131909,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":131910,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":131911,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":131911,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":131912,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":131914,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":134532,"type":"anyOf","anyOf":[{"_internalId":134530,"type":"object","description":"be an object","properties":{"eval":{"_internalId":134435,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":134436,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":134437,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":134438,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":134439,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":134440,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":134441,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":134442,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":134443,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":134444,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":134445,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":134446,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":134447,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":134448,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":134449,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":134450,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":134451,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":134452,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":134453,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":134454,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":134455,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":134456,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":134457,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":134458,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":134459,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":134460,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":134461,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":134462,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":134463,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":134464,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":134465,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":134466,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":134467,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":134468,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":134469,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":134469,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":134470,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":134471,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":134472,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":134473,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":134474,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":134475,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":134476,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":134477,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":134478,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":134479,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":134480,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":134481,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":134482,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":134483,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":134484,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":134485,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":134486,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":134487,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":134488,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":134489,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":134490,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":134491,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":134492,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":134493,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":134494,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":134495,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":134496,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":134497,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":134498,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":134499,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":134500,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":134501,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":134502,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":134503,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":134504,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":134505,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":134505,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":134506,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":134507,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":134508,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":134509,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":134510,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":134511,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":134512,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":134513,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":134514,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":134515,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":134516,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":134517,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":134518,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":134519,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":134520,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":134521,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":134522,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":134523,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":134524,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":134525,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":134526,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":134527,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":134528,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":134528,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":134529,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":134531,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":137156,"type":"anyOf","anyOf":[{"_internalId":137154,"type":"object","description":"be an object","properties":{"eval":{"_internalId":137052,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":137053,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":137054,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":137055,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":137056,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":137057,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":137058,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":137059,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":137060,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":137061,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":137062,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":137063,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":137064,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":137065,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":137066,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":137067,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":137068,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":137069,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":137070,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":137071,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":137072,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":137073,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":137074,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":137075,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":137076,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":137077,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":137078,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":137079,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":137080,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":137081,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":137082,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":137083,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":137084,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":137085,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":137086,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":137087,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":137087,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":137088,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":137089,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":137090,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":137091,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":137092,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":137093,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":137094,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":137095,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":137096,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":137097,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":137098,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":137099,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":137100,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":137101,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":137102,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":137103,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":137104,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":137105,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":137106,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":137107,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":137108,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":137109,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":137110,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":137111,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":137112,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":137113,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":137114,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":137115,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":137116,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":137117,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":137118,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":137119,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":137120,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":137121,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":137122,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":137123,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":137124,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":137125,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":137126,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":137127,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":137127,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":137128,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":137129,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":137130,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":137131,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":137132,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":137133,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":137134,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":137135,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":137136,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":137137,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":137138,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":137139,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":137140,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":137141,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":137142,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":137143,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":137144,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":137145,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":137146,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":137147,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":137148,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":137149,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":137150,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":137151,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":137152,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":137152,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":137153,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":137155,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":139773,"type":"anyOf","anyOf":[{"_internalId":139771,"type":"object","description":"be an object","properties":{"eval":{"_internalId":139676,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":139677,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":139678,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":139679,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":139680,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":139681,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":139682,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":139683,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":139684,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":139685,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":139686,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":139687,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":139688,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":139689,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":139690,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":139691,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":139692,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":139693,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":139694,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":139695,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":139696,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":139697,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":139698,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":139699,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":139700,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":139701,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":139702,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":139703,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":139704,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":139705,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":139706,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":139707,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":139708,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":139709,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":139710,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":139710,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":139711,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":139712,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":139713,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":139714,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":139715,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":139716,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":139717,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":139718,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":139719,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":139720,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":139721,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":139722,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":139723,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":139724,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":139725,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":139726,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":139727,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":139728,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":139729,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":139730,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":139731,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":139732,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":139733,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":139734,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":139735,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":139736,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":139737,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":139738,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":139739,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":139740,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":139741,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":139742,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":139743,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":139744,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":139745,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":139746,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":139746,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":139747,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":139748,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":139749,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":139750,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":139751,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":139752,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":139753,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":139754,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":139755,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":139756,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":139757,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":139758,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":139759,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":139760,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":139761,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":139762,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":139763,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":139764,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":139765,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":139766,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":139767,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":139768,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":139769,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":139769,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":139770,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":139772,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":142404,"type":"anyOf","anyOf":[{"_internalId":142402,"type":"object","description":"be an object","properties":{"eval":{"_internalId":142293,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":142294,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":142295,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":142296,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":142297,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":142298,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":142299,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":142300,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":142301,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":142302,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":142303,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":142304,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":142305,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":142306,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":142307,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":142308,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":142309,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":142310,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":142311,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":142312,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":142313,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":142314,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":142315,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":142316,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":142317,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":142318,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":142319,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":142320,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":142321,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":142322,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":142323,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":142324,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":142325,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":142326,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":142327,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":142328,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":142329,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":142330,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":142331,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":142332,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":142333,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":142334,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":142335,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":142336,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":142336,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":142337,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":142338,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":142339,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":142340,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":142341,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":142342,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":142343,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":142344,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":142345,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":142346,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":142347,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":142348,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":142349,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":142350,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":142351,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":142352,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":142353,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":142354,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":142355,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":142356,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":142357,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":142358,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":142359,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":142360,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":142361,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":142362,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":142363,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"indent":{"_internalId":142364,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":142365,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":142366,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":142367,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":142368,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":142369,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":142370,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":142371,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":142372,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":142373,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":142374,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":142375,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":142376,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":142376,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":142377,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":142378,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":142379,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":142380,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":142381,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":142382,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":142383,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":142384,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":142385,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":142386,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":142387,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":142388,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":142389,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":142390,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":142391,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":142392,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":142393,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":142394,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":142395,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":142396,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":142397,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":142398,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":142399,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":142400,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":142400,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":142401,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fontfamily,pointsize,lineheight,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,indent,number-sections,shift-heading-level-by,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":142403,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":145023,"type":"anyOf","anyOf":[{"_internalId":145021,"type":"object","description":"be an object","properties":{"eval":{"_internalId":144924,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":144925,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":144926,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":144927,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":144928,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":144929,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":144930,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":144931,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":144932,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":144933,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":144934,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":144935,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":144936,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":144937,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":144938,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":144939,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":144940,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":144941,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":144942,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":144943,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":144944,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":144945,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":144946,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":144947,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":144948,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":144949,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":144950,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":144951,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":144952,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":144953,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":144954,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":144955,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":144956,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":144957,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":144958,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":144959,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":144960,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":144960,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":144961,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":144962,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":144963,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":144964,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":144965,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":144966,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":144967,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":144968,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":144969,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":144970,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":144971,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":144972,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":144973,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":144974,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":144975,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":144976,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":144977,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":144978,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":144979,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":144980,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":144981,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":144982,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":144983,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":144984,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":144985,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":144986,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":144987,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":144988,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":144989,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":144990,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":144991,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":144992,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":144993,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":144994,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":144995,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":144996,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":144996,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":144997,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":144998,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":144999,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":145000,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":145001,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":145002,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":145003,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":145004,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":145005,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":145006,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":145007,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":145008,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":145009,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":145010,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":145011,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":145012,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":145013,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":145014,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":145015,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":145016,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":145017,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":145018,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":145019,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":145019,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":145020,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":145022,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":147640,"type":"anyOf","anyOf":[{"_internalId":147638,"type":"object","description":"be an object","properties":{"eval":{"_internalId":147543,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":147544,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":147545,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":147546,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":147547,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":147548,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":147549,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":147550,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":147551,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":147552,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":147553,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":147554,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":147555,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":147556,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":147557,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":147558,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":147559,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":147560,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":147561,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":147562,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":147563,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":147564,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":147565,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":147566,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":147567,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":147568,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":147569,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":147570,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":147571,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":147572,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":147573,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":147574,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":147575,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":147576,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":147577,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":147577,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":147578,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":147579,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":147580,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":147581,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":147582,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":147583,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":147584,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":147585,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":147586,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":147587,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":147588,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":147589,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":147590,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":147591,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":147592,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":147593,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":147594,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":147595,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":147596,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":147597,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":147598,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":147599,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":147600,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":147601,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":147602,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":147603,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":147604,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":147605,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":147606,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":147607,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":147608,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":147609,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":147610,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":147611,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":147612,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":147613,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":147613,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":147614,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":147615,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":147616,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":147617,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":147618,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":147619,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":147620,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":147621,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":147622,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":147623,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":147624,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":147625,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":147626,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":147627,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":147628,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":147629,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":147630,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":147631,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":147632,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":147633,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":147634,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":147635,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":147636,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":147636,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":147637,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":147639,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":150262,"type":"anyOf","anyOf":[{"_internalId":150260,"type":"object","description":"be an object","properties":{"eval":{"_internalId":150160,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":150161,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":150162,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":150163,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":150164,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":150165,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":150166,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":150167,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":150168,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":150169,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":150170,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":150171,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":150172,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":150173,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":150174,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":150175,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":150176,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":150177,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":150178,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":150179,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":150180,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":150181,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":150182,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":150183,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":150184,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":150185,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":150186,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":150187,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":150188,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":150189,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":150190,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":150191,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":150192,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":150193,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":150194,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":150195,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":150196,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":150197,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":150197,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":150198,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":150199,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":150200,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":150201,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":150202,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":150203,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":150204,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":150205,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":150206,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":150207,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":150208,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":150209,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":150210,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":150211,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":150212,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":150213,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":150214,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":150215,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":150216,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":150217,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":150218,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":150219,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":150220,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":150221,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":150222,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":150223,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":150224,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":150225,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":150226,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":150227,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":150228,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":150229,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":150230,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":150231,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":150232,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":150233,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":150234,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":150235,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":150236,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":150237,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":150238,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":150238,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":150239,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":150240,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":150241,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":150242,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":150243,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":150244,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":150245,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":150246,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":150247,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":150248,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":150249,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":150250,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":150251,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":150252,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":150253,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":150254,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":150255,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":150256,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":150257,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":150257,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":150258,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":150259,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":150261,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":152878,"type":"anyOf","anyOf":[{"_internalId":152876,"type":"object","description":"be an object","properties":{"eval":{"_internalId":152782,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":152783,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":152784,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":152785,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":152786,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":152787,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":152788,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":152789,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":152790,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":152791,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":152792,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":152793,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":152794,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":152795,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":152796,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":152797,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":152798,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":152799,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":152800,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":152801,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":152802,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":152803,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":152804,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":152805,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":152806,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":152807,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":152808,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":152809,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":152810,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":152811,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":152812,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":152813,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":152814,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":152815,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":152816,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":152817,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":152817,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":152818,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":152819,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":152820,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":152821,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":152822,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":152823,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":152824,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":152825,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":152826,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":152827,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":152828,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":152829,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":152830,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":152831,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":152832,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":152833,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":152834,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":152835,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":152836,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":152837,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":152838,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":152839,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":152840,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":152841,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":152842,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":152843,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":152844,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":152845,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"number-sections":{"_internalId":152846,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":152847,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":152848,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":152849,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":152850,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":152851,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":152852,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":152853,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":152854,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":152854,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":152855,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":152856,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":152857,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":152858,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":152859,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":152860,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":152861,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":152862,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":152863,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":152864,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":152865,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":152866,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":152867,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":152868,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":152869,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":152870,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":152871,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":152872,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":152873,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":152873,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":152874,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":152875,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":152877,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":155495,"type":"anyOf","anyOf":[{"_internalId":155493,"type":"object","description":"be an object","properties":{"eval":{"_internalId":155398,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":155399,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":155400,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":155401,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":155402,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":155403,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":155404,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":155405,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":155406,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":155407,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":155408,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":155409,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":155410,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":155411,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":155412,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":155413,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":155414,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":155415,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":155416,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":155417,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":155418,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":155419,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":155420,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":155421,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":155422,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":155423,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":155424,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":155425,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":155426,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":155427,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":155428,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":155429,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":155430,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":155431,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":155432,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":155432,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":155433,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":155434,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":155435,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":155436,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":155437,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":155438,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":155439,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":155440,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":155441,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":155442,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":155443,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":155444,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":155445,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":155446,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":155447,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":155448,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":155449,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":155450,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":155451,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":155452,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":155453,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":155454,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":155455,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":155456,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":155457,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":155458,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":155459,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":155460,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":155461,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":155462,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":155463,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":155464,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":155465,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":155466,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":155467,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":155468,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":155468,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":155469,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":155470,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":155471,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":155472,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":155473,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":155474,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":155475,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":155476,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":155477,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":155478,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":155479,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":155480,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":155481,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":155482,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":155483,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":155484,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":155485,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":155486,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":155487,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":155488,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":155489,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":155490,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":155491,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":155491,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":155492,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":155494,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":158112,"type":"anyOf","anyOf":[{"_internalId":158110,"type":"object","description":"be an object","properties":{"eval":{"_internalId":158015,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":158016,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":158017,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":158018,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":158019,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":158020,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":158021,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":158022,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":158023,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":158024,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":158025,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":158026,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":158027,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":158028,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":158029,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":158030,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":158031,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":158032,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":158033,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":158034,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":158035,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":158036,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":158037,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":158038,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":158039,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":158040,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":158041,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":158042,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":158043,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":158044,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":158045,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":158046,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":158047,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":158048,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":158049,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":158049,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":158050,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":158051,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":158052,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":158053,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":158054,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":158055,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":158056,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":158057,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":158058,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":158059,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":158060,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":158061,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":158062,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":158063,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":158064,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":158065,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":158066,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":158067,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":158068,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":158069,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":158070,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":158071,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":158072,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":158073,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":158074,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":158075,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":158076,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":158077,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":158078,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":158079,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":158080,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":158081,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":158082,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":158083,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":158084,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":158085,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":158085,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":158086,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":158087,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":158088,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":158089,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":158090,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":158091,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":158092,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":158093,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":158094,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":158095,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":158096,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":158097,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":158098,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":158099,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":158100,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":158101,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":158102,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":158103,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":158104,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":158105,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":158106,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":158107,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":158108,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":158108,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":158109,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":158111,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":160818,"type":"anyOf","anyOf":[{"_internalId":160816,"type":"object","description":"be an object","properties":{"eval":{"_internalId":160632,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":160633,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":160634,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":160635,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":160636,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":160637,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":160638,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":160639,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":160640,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":160641,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":160642,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":160643,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":160644,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":160645,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":160646,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":160647,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":160648,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":160649,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":160650,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":160651,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":160652,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":160653,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":160654,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":160655,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":160656,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":160657,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":160658,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":160659,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":160660,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":160661,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":160662,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":160663,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":160664,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":160665,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":160666,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":160667,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":160668,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":160669,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":160670,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":160671,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":160672,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":160673,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":160674,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":160675,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":160676,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":160677,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":160678,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":160679,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":160680,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":160681,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":160682,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":160683,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":160684,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":160685,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":160686,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":160687,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":160688,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":160689,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":160690,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":160691,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":160692,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":160693,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":160694,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":160695,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":160696,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":160697,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":160698,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":160699,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":160700,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":160701,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":160702,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":160703,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":160704,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":160705,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":160706,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":160707,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":160708,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":160708,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":160709,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":160710,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":160711,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":160712,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":160713,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":160714,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":160715,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":160716,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":160717,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":160718,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":160719,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":160720,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":160721,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":160722,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":160723,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":160724,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":160725,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":160726,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":160727,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":160728,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":160729,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":160730,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":160731,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":160732,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":160733,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":160734,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":160735,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":160736,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":160737,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":160738,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":160739,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":160740,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":160741,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":160742,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":160743,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":160744,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":160745,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":160746,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":160747,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":160748,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":160749,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":160750,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":160751,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":160752,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":160753,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":160754,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":160755,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":160756,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":160757,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":160758,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":160759,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":160760,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":160761,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":160762,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":160763,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":160764,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":160765,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":160766,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":160767,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":160768,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":160769,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":160770,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":160771,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":160772,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":160773,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":160774,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":160775,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":160776,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":160777,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":160778,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":160779,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":160780,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":160781,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":160782,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":160783,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":160784,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":160785,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":160786,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":160787,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":160788,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":160789,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":160789,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":160790,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":160791,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":160792,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":160793,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":160794,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":160795,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":160796,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":160797,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":160798,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":160799,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":160800,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":160801,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":160802,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":160803,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":160804,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":160805,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":160806,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":160807,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":160808,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":160809,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":160810,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":160811,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":160811,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":160812,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":160813,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":160814,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":160815,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,quarto-required,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":160817,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":163435,"type":"anyOf","anyOf":[{"_internalId":163433,"type":"object","description":"be an object","properties":{"eval":{"_internalId":163338,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":163339,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":163340,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":163341,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":163342,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":163343,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":163344,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":163345,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":163346,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":163347,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":163348,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":163349,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":163350,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":163351,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":163352,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":163353,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":163354,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":163355,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":163356,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":163357,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":163358,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":163359,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":163360,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":163361,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":163362,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":163363,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":163364,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":163365,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":163366,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":163367,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":163368,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":163369,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":163370,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":163371,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":163372,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":163372,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":163373,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":163374,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":163375,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":163376,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":163377,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":163378,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":163379,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":163380,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":163381,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":163382,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":163383,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":163384,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":163385,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":163386,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":163387,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":163388,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":163389,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":163390,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":163391,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":163392,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":163393,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":163394,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":163395,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":163396,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":163397,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":163398,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":163399,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":163400,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":163401,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":163402,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":163403,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":163404,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":163405,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":163406,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":163407,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":163408,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":163408,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":163409,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":163410,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":163411,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":163412,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":163413,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":163414,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":163415,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":163416,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":163417,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":163418,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":163419,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":163420,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":163421,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":163422,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":163423,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":163424,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":163425,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":163426,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":163427,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":163428,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":163429,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":163430,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":163431,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":163431,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":163432,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":163434,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":166048,"type":"anyOf","anyOf":[{"_internalId":166046,"type":"object","description":"be an object","properties":{"eval":{"_internalId":165955,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":165956,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":165957,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":165958,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":165959,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":165960,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":165961,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":165962,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":165963,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":165964,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":165965,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":165966,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":165967,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":165968,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":165969,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":165970,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":165971,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":165972,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":165973,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":165974,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":165975,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":165976,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":165977,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":165978,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":165979,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":165980,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":165981,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":165982,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":165983,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":165984,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":165985,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":165986,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":165987,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":165988,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":165989,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":165989,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":165990,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":165991,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":165992,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":165993,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":165994,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":165995,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":165996,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":165997,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":165998,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":165999,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":166000,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":166001,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":166002,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":166003,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":166004,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":166005,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":166006,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":166007,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":166008,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":166009,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":166010,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":166011,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":166012,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":166013,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":166014,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":166015,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":166016,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":166017,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":166018,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":166019,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":166020,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":166021,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":166022,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":166023,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":166024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":166024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":166025,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":166026,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":166027,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":166028,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":166029,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":166030,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":166031,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":166032,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":166033,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":166034,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":166035,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":166036,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":166037,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":166038,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":166039,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":166040,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":166041,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":166042,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":166043,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":166043,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":166044,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":166045,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,keywords,subject,description,category,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":166047,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":168797,"type":"anyOf","anyOf":[{"_internalId":168795,"type":"object","description":"be an object","properties":{"eval":{"_internalId":168568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":168569,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":168570,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":168571,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":168572,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":168573,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":168574,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":168575,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":168576,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":168577,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":168578,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":168579,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":168580,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":168581,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":168582,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":168583,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":168584,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":168585,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":168586,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":168587,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":168588,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":168589,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":168590,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":168591,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":168592,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":168593,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":168594,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":168595,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":168596,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":168597,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":168598,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":168599,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":168600,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":168601,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":168602,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":168603,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":168604,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":168605,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":168606,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":168607,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":168608,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":168609,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":168610,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":168611,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":168612,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":168613,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":168614,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":168615,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":168616,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":168617,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":168618,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":168619,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":168620,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":168621,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":168622,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":168623,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":168624,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":168624,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":168625,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":168626,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":168627,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":168628,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":168629,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":168630,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":168631,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":168632,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":168633,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":168634,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":168635,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":168636,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":168637,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":168638,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":168639,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":168640,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":168641,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":168642,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":168643,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":168644,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":168645,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":168646,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":168647,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":168648,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":168649,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":168650,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":168651,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":168652,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":168653,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":168654,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"max-width":{"_internalId":168655,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":168656,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":168657,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":168658,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":168659,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"revealjs-url":{"_internalId":168660,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":168661,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":168662,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":168663,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":168664,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":168665,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":168666,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":168667,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":168668,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":168669,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":168670,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":168671,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":168672,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":168673,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":168674,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":168675,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":168676,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":168677,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":168678,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":168679,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":168680,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":168681,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":168682,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":168683,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":168684,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":168685,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":168686,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":168687,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":168688,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":168689,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":168689,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":168690,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":168691,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":168692,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":168693,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":168694,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":168695,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":168696,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":168697,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":168698,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":168699,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":168700,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":168701,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":168702,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":168703,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":168704,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":168705,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":168706,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":168707,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":168708,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":168709,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":168710,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":168711,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":168712,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":168713,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":168714,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":168715,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":168716,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":168717,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":168718,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":168719,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":168720,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":168721,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":168722,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":168723,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":168724,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":168725,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":168726,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":168727,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":168728,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":168729,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":168730,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":168731,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":168732,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":168733,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":168734,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":168735,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":168736,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":168737,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":168738,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":168739,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":168740,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":168741,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":168742,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":168743,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":168744,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":168745,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":168746,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":168747,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":168748,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":168749,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":168750,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":168751,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":168752,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":168753,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":168754,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":168755,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":168756,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":168757,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":168758,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":168759,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":168760,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":168761,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":168762,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":168763,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":168764,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":168765,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":168766,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":168767,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":168768,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":168769,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":168770,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":168771,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":168772,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":168773,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":168774,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":168775,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":168776,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":168777,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":168778,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":168779,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":168780,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":168781,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":168782,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":168783,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":168784,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":168785,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":168786,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":168787,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":168788,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":168789,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":168790,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":168791,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":168791,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":168792,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":168793,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":168794,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,brand-mode,max-width,margin-left,margin-right,margin-top,margin-bottom,revealjs-url,link-external-icon,link-external-newwindow,link-external-filter,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,logo,footer,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,margin,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-title,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^revealjs_url$|^revealjsUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":168796,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":171415,"type":"anyOf","anyOf":[{"_internalId":171413,"type":"object","description":"be an object","properties":{"eval":{"_internalId":171317,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":171318,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":171319,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":171320,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":171321,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":171322,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":171323,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":171324,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":171325,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":171326,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":171327,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":171328,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":171329,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":171330,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":171331,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":171332,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":171333,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":171334,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":171335,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":171336,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":171337,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":171338,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":171339,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":171340,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":171341,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":171342,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":171343,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":171344,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":171345,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":171346,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":171347,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":171348,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":171349,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":171350,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":171351,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":171352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":171352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":171353,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":171354,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":171355,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":171356,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":171357,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":171358,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":171359,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":171360,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":171361,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":171362,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":171363,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":171364,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":171365,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":171366,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":171367,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":171368,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":171369,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":171370,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":171371,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":171372,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":171373,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":171374,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":171375,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":171376,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":171377,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":171378,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":171379,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":171380,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":171381,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":171382,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":171383,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":171384,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":171385,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":171386,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":171387,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":171388,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":171388,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":171389,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":171390,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":171391,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":171392,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":171393,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":171394,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":171395,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":171396,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":171397,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":171398,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":171399,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":171400,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":171401,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":171402,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":171403,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":171404,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":171405,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":171406,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":171407,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":171408,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":171409,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":171410,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":171411,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":171411,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":171412,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,list-tables,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^list_tables$|^listTables$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":171414,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":174033,"type":"anyOf","anyOf":[{"_internalId":174031,"type":"object","description":"be an object","properties":{"eval":{"_internalId":173935,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":173936,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":173937,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":173938,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":173939,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":173940,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":173941,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":173942,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":173943,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":173944,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":173945,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":173946,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":173947,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":173948,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":173949,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":173950,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":173951,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":173952,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":173953,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":173954,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":173955,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":173956,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":173957,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":173958,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":173959,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":173960,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":173961,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":173962,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":173963,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":173964,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":173965,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":173966,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":173967,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":173968,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":173969,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":173970,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":173970,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":173971,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":173972,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":173973,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":173974,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":173975,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":173976,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":173977,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":173978,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":173979,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":173980,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":173981,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":173982,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":173983,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":173984,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":173985,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":173986,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":173987,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":173988,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":173989,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":173990,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":173991,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":173992,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":173993,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":173994,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":173995,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":173996,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":173997,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":173998,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":173999,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":174000,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":174001,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":174002,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":174003,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":174004,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":174005,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":174006,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":174006,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":174007,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":174008,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":174009,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":174010,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":174011,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":174012,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":174013,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":174014,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":174015,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":174016,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":174017,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":174018,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":174019,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":174020,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":174021,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":174022,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":174023,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":174024,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":174025,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":174026,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":174027,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":174028,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":174029,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":174029,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":174030,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":174032,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":176701,"type":"anyOf","anyOf":[{"_internalId":176699,"type":"object","description":"be an object","properties":{"eval":{"_internalId":176553,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":176554,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":176555,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":176556,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":176557,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":176558,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":176559,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":176560,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":176561,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":176562,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":176563,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":176564,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":176565,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":176566,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":176567,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":176568,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":176569,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":176570,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":176571,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":176572,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":176573,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":176574,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":176575,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":176576,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":176577,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":176578,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":176579,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":176580,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":176581,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":176582,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":176583,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":176584,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":176585,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":176586,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":176587,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":176588,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":176589,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":176590,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":176591,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":176592,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":176593,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":176594,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":176595,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":176596,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":176597,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":176598,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":176599,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":176600,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":176601,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":176602,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":176603,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":176604,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":176605,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":176606,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":176607,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":176608,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":176609,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":176610,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":176610,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":176611,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":176612,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":176613,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":176614,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":176615,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":176616,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":176617,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":176618,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":176619,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":176620,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":176621,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":176622,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":176623,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":176624,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":176625,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":176626,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":176627,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":176628,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":176629,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":176630,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":176631,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":176632,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":176633,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":176634,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":176635,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":176636,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":176637,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":176638,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":176639,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":176640,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":176641,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":176642,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":176643,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":176644,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":176645,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":176646,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":176647,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":176648,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":176649,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":176650,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":176651,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":176652,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":176653,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":176654,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":176655,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":176656,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":176657,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":176658,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":176659,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":176660,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":176661,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":176662,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":176663,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":176664,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":176665,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":176666,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":176667,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":176668,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":176669,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":176670,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":176670,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":176671,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":176672,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":176673,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":176674,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":176675,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":176676,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":176677,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":176678,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":176679,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":176680,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":176681,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":176682,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":176683,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":176684,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":176685,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":176686,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":176687,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":176688,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":176689,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":176690,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":176691,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":176692,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":176693,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":176694,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":176695,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":176696,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":176696,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":176697,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":176698,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,s5-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^s5_url$|^s5Url$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":176700,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":179369,"type":"anyOf","anyOf":[{"_internalId":179367,"type":"object","description":"be an object","properties":{"eval":{"_internalId":179221,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":179222,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":179223,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":179224,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":179225,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":179226,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":179227,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":179228,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":179229,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":179230,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":179231,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":179232,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":179233,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":179234,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":179235,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":179236,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":179237,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":179238,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":179239,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":179240,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":179241,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":179242,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":179243,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":179244,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":179245,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":179246,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":179247,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":179248,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":179249,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":179250,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":179251,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":179252,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":179253,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":179254,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":179255,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":179256,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":179257,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":179258,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":179259,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":179260,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":179261,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":179262,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":179263,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":179264,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":179265,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":179266,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":179267,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":179268,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":179269,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":179270,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":179271,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":179272,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":179273,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":179274,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":179275,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":179276,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":179277,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":179278,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":179278,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":179279,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":179280,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":179281,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":179282,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":179283,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":179284,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":179285,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":179286,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":179287,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":179288,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":179289,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":179290,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":179291,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":179292,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":179293,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":179294,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":179295,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":179296,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":179297,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":179298,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":179299,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":179300,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":179301,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":179302,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":179303,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":179304,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":179305,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":179306,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":179307,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":179308,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":179309,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":179310,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":179311,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":179312,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":179313,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":179314,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":179315,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":179316,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":179317,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":179318,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":179319,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":179320,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":179321,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":179322,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":179323,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":179324,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":179325,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":179326,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":179327,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":179328,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":179329,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":179330,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":179331,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":179332,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":179333,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":179334,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":179335,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":179336,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":179337,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":179338,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":179338,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":179339,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":179340,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":179341,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":179342,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":179343,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":179344,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":179345,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":179346,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":179347,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":179348,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":179349,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":179350,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":179351,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":179352,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":179353,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":179354,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":179355,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":179356,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":179357,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":179358,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":179359,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":179360,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":179361,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":179362,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":179363,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":179364,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":179364,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":179365,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":179366,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slideous-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slideous_url$|^slideousUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":179368,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":182037,"type":"anyOf","anyOf":[{"_internalId":182035,"type":"object","description":"be an object","properties":{"eval":{"_internalId":181889,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":181890,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":181891,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":181892,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":181893,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":181894,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":181895,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":181896,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":181897,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":181898,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":181899,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":181900,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":181901,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":181902,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":181903,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":181904,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":181905,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":181906,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":181907,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":181908,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":181909,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":181910,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":181911,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":181912,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":181913,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":181914,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":181915,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":181916,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":181917,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":181918,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":181919,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":181920,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":181921,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":181922,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":181923,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":181924,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":181925,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":181926,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":181927,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":181928,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":181929,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":181930,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":181931,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":181932,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":181933,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":181934,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":181935,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":181936,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":181937,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":181938,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":181939,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":181940,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":181941,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":181942,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":181943,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":181944,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":181945,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":181946,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":181946,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":181947,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":181948,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":181949,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":181950,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":181951,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":181952,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":181953,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":181954,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":181955,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":181956,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":181957,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":181958,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":181959,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":181960,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":181961,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":181962,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":181963,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":181964,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":181965,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":181966,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":181967,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":181968,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":181969,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":181970,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":181971,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":181972,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":181973,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":181974,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":181975,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":181976,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":181977,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":181978,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":181979,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":181980,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":181981,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":181982,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":181983,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":181984,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":181985,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":181986,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":181987,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":181988,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":181989,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":181990,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":181991,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":181992,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":181993,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":181994,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":181995,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":181996,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":181997,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":181998,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":181999,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":182000,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":182001,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":182002,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":182003,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":182004,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":182005,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":182006,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":182006,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":182007,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":182008,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":182009,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":182010,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":182011,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":182012,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":182013,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":182014,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":182015,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":182016,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":182017,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":182018,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":182019,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":182020,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":182021,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":182022,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":182023,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":182024,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":182025,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":182026,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":182027,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":182028,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":182029,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":182030,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":182031,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":182032,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":182032,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":182033,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":182034,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slidy-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slidy_url$|^slidyUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":182036,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":184655,"type":"anyOf","anyOf":[{"_internalId":184653,"type":"object","description":"be an object","properties":{"eval":{"_internalId":184557,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":184558,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":184559,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":184560,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":184561,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":184562,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":184563,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":184564,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":184565,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":184566,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":184567,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":184568,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":184569,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":184570,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":184571,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":184572,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":184573,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":184574,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":184575,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":184576,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":184577,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":184578,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":184579,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":184580,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":184581,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":184582,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":184583,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":184584,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":184585,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":184586,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":184587,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":184588,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":184589,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":184590,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":184591,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":184591,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":184592,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":184593,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":184594,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":184595,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":184596,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":184597,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":184598,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":184599,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":184600,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":184601,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":184602,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":184603,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":184604,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":184605,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":184606,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":184607,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":184608,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":184609,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":184610,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":184611,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":184612,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":184613,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":184614,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":184615,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":184616,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":184617,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":184618,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":184619,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":184620,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":184621,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":184622,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":184623,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":184624,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":184625,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":184626,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":184627,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":184628,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":184628,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":184629,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":184630,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":184631,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":184632,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":184633,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":184634,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":184635,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":184636,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":184637,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":184638,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":184639,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":184640,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":184641,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":184642,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":184643,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":184644,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":184645,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":184646,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":184647,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":184648,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":184649,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":184650,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":184651,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":184651,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":184652,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":184654,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":187272,"type":"anyOf","anyOf":[{"_internalId":187270,"type":"object","description":"be an object","properties":{"eval":{"_internalId":187175,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":187176,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":187177,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":187178,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":187179,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":187180,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":187181,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":187182,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":187183,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":187184,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":187185,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":187186,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":187187,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":187188,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":187189,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":187190,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":187191,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":187192,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":187193,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":187194,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":187195,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":187196,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":187197,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":187198,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":187199,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":187200,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":187201,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":187202,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":187203,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":187204,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":187205,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":187206,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":187207,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":187208,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":187209,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":187209,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":187210,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":187211,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":187212,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":187213,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":187214,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":187215,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":187216,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":187217,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":187218,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":187219,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":187220,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":187221,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":187222,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":187223,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":187224,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":187225,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":187226,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":187227,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":187228,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":187229,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":187230,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":187231,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":187232,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":187233,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":187234,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":187235,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":187236,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":187237,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":187238,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":187239,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":187240,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":187241,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":187242,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":187243,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":187244,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":187245,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":187245,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":187246,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":187247,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":187248,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":187249,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":187250,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":187251,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":187252,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":187253,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":187254,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":187255,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":187256,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":187257,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":187258,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":187259,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":187260,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":187261,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":187262,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":187263,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":187264,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":187265,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":187266,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":187267,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":187268,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":187268,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":187269,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":187271,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":189890,"type":"anyOf","anyOf":[{"_internalId":189888,"type":"object","description":"be an object","properties":{"eval":{"_internalId":189792,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":189793,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":189794,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":189795,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":189796,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":189797,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":189798,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":189799,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":189800,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":189801,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":189802,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":189803,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":189804,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":189805,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":189806,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":189807,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":189808,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":189809,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":189810,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":189811,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":189812,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":189813,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":189814,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":189815,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":189816,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":189817,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":189818,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":189819,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":189820,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":189821,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":189822,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":189823,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":189824,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":189825,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":189826,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":189826,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":189827,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":189828,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":189829,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":189830,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":189831,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":189832,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":189833,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":189834,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":189835,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":189836,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":189837,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":189838,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":189839,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":189840,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":189841,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":189842,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":189843,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":189844,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":189845,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":189846,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":189847,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":189848,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":189849,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":189850,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":189851,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":189852,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":189853,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":189854,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":189855,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":189856,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":189857,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":189858,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":189859,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":189860,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":189861,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":189862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":189862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":189863,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":189864,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":189865,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":189866,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":189867,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":189868,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":189869,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":189870,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":189871,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":189872,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":189873,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":189874,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":189875,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":189876,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":189877,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":189878,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":189879,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":189880,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":189881,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":189882,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":189883,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":189884,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":189885,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":189886,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":189886,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":189887,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":189889,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":192530,"type":"anyOf","anyOf":[{"_internalId":192528,"type":"object","description":"be an object","properties":{"eval":{"_internalId":192410,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":192411,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"cap-location":{"_internalId":192412,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":192413,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":192414,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"output":{"_internalId":192415,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":192416,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":192417,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":192418,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":192419,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":192420,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":192421,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":192422,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":192423,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":192424,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":192425,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":192426,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":192427,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":192428,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":192429,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":192430,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":192431,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":192432,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":192433,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":192434,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":192435,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":192436,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":192437,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":192438,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":192439,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":192440,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":192441,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":192442,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":192443,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":192444,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":192445,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":192446,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":192447,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"fontsize":{"_internalId":192448,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"font-paths":{"_internalId":192449,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"reference-location":{"_internalId":192450,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":192451,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":192452,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":192452,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":192453,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":192454,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":192455,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":192456,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":192457,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":192458,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":192459,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":192460,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":192461,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":192462,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":192463,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":192464,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":192465,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":192466,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":192467,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":192468,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":192469,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":192470,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":192471,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":192472,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":192473,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":192474,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":192475,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":192476,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":192477,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":192478,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":192479,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":192480,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":192481,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":192482,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":192483,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":192484,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":192485,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":192486,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"brand":{"_internalId":192487,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":192488,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":192489,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":192490,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citation-location":{"_internalId":192491,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":192492,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":192493,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":192494,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":192495,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":192495,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":192496,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":192497,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":192498,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":192499,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":192500,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":192501,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":192502,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":192503,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":192504,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":192505,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":192506,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":192507,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":192508,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":192509,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":192510,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":192511,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":192512,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":192513,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":192514,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":192515,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"margin":{"_internalId":192516,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"df-print":{"_internalId":192517,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":192518,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":192519,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":192520,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":192521,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":192522,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":192523,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":192523,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":192524,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":192525,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"logo":{"_internalId":192526,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"margin-geometry":{"_internalId":192527,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,cap-location,fig-cap-location,tbl-cap-location,output,warning,error,include,title,date,date-format,author,abstract-title,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,fontsize,font-paths,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,papersize,brand-mode,grid,number-sections,section-numbering,shift-heading-level-by,page-numbering,brand,quarto-required,bibliography,csl,citation-location,citeproc,bibliographystyle,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,margin,df-print,wrap,columns,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-indent,toc-depth,logo,margin-geometry","type":"string","pattern":"(?!(^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^font_paths$|^fontPaths$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^number_sections$|^numberSections$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^quarto_required$|^quartoRequired$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^margin_geometry$|^marginGeometry$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":192529,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":195147,"type":"anyOf","anyOf":[{"_internalId":195145,"type":"object","description":"be an object","properties":{"eval":{"_internalId":195050,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":195051,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":195052,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":195053,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":195054,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":195055,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":195056,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":195057,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":195058,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":195059,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":195060,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":195061,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":195062,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":195063,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":195064,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":195065,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":195066,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":195067,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":195068,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":195069,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":195070,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":195071,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":195072,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":195073,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":195074,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":195075,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":195076,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":195077,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":195078,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":195079,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":195080,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":195081,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":195082,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":195083,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":195084,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":195084,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":195085,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":195086,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":195087,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":195088,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":195089,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":195090,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":195091,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":195092,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":195093,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":195094,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":195095,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":195096,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":195097,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":195098,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":195099,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":195100,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":195101,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":195102,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":195103,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":195104,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":195105,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":195106,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":195107,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":195108,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":195109,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":195110,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":195111,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":195112,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":195113,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":195114,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":195115,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":195116,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":195117,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":195118,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":195119,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":195120,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":195120,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":195121,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":195122,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":195123,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":195124,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":195125,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":195126,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":195127,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":195128,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":195129,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":195130,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":195131,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":195132,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":195133,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":195134,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":195135,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":195136,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":195137,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":195138,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":195139,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":195140,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":195141,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":195142,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":195143,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":195143,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":195144,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":195146,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":197764,"type":"anyOf","anyOf":[{"_internalId":197762,"type":"object","description":"be an object","properties":{"eval":{"_internalId":197667,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":197668,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":197669,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":197670,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":197671,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":197672,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":197673,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":197674,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":197675,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":197676,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":197677,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":197678,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":197679,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":197680,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":197681,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":197682,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":197683,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":197684,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":197685,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":197686,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":197687,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":197688,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":197689,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":197690,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":197691,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":197692,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":197693,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":197694,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":197695,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":197696,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":197697,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":197698,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":197699,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":197700,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":197701,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":197701,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":197702,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":197703,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":197704,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":197705,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":197706,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":197707,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":197708,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":197709,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":197710,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":197711,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":197712,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":197713,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":197714,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":197715,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":197716,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":197717,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":197718,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":197719,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":197720,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":197721,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":197722,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":197723,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":197724,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":197725,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":197726,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":197727,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":197728,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":197729,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":197730,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":197731,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":197732,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":197733,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":197734,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":197735,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":197736,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":197737,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":197737,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":197738,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":197739,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":197740,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":197741,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":197742,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":197743,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":197744,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":197745,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":197746,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":197747,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":197748,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":197749,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":197750,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":197751,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":197752,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":197753,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":197754,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":197755,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":197756,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":197757,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":197758,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":197759,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":197760,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":197760,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":197761,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":197763,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":200381,"type":"anyOf","anyOf":[{"_internalId":200379,"type":"object","description":"be an object","properties":{"eval":{"_internalId":200284,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":200285,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":200286,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":200287,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":200288,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":200289,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":200290,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":200291,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":200292,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":200293,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":200294,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":200295,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":200296,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":200297,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":200298,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":200299,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":200300,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":200301,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":200302,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":200303,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":200304,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":200305,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":200306,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":200307,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":200308,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":200309,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":200310,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":200311,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":200312,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":200313,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":200314,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":200315,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":200316,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":200317,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":200318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":200318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":200319,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":200320,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":200321,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":200322,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":200323,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":200324,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":200325,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":200326,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":200327,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":200328,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":200329,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":200330,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":200331,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":200332,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":200333,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":200334,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":200335,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":200336,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":200337,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":200338,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":200339,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":200340,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":200341,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":200342,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":200343,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":200344,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":200345,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":200346,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":200347,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":200348,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":200349,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":200350,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":200351,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":200352,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":200353,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":200354,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":200354,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":200355,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":200356,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":200357,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":200358,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":200359,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":200360,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":200361,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":200362,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":200363,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":200364,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":200365,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":200366,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":200367,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":200368,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":200369,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":200370,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":200371,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":200372,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":200373,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":200374,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":200375,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":200376,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":200377,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":200377,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":200378,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":200380,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":202998,"type":"anyOf","anyOf":[{"_internalId":202996,"type":"object","description":"be an object","properties":{"eval":{"_internalId":202901,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":202902,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":202903,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":202904,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":202905,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":202906,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":202907,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":202908,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":202909,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":202910,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":202911,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":202912,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":202913,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":202914,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":202915,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":202916,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":202917,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":202918,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":202919,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":202920,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":202921,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":202922,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":202923,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":202924,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":202925,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":202926,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":202927,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":202928,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":202929,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":202930,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":202931,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":202932,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":202933,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":202934,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":202935,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":202935,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":202936,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":202937,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":202938,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":202939,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":202940,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":202941,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":202942,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":202943,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":202944,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":202945,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":202946,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":202947,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":202948,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":202949,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":202950,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":202951,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":202952,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":202953,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":202954,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":202955,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":202956,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":202957,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":202958,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":202959,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":202960,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":202961,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":202962,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":202963,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":202964,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":202965,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":202966,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":202967,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":202968,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":202969,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":202970,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":202971,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":202971,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":202972,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":202973,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":202974,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":202975,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":202976,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":202977,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":202978,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":202979,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":202980,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":202981,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":202982,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":202983,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":202984,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":202985,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":202986,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":202987,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":202988,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":202989,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":202990,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":202991,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":202992,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":202993,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":202994,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":202994,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":202995,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":202997,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":205622,"type":"anyOf","anyOf":[{"_internalId":205620,"type":"object","description":"be an object","properties":{"eval":{"_internalId":205518,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":205519,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":205520,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":205521,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":205522,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":205523,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":205524,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":205525,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":205526,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":205527,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":205528,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":205529,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":205530,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":205531,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":205532,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":205533,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":205534,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":205535,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":205536,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":205537,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":205538,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":205539,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":205540,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":205541,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":205542,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":205543,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":205544,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":205545,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":205546,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":205547,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":205548,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":205549,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":205550,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":205551,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":205552,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":205553,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":205553,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":205554,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":205555,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":205556,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":205557,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":205558,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":205559,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":205560,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":205561,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":205562,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":205563,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":205564,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":205565,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":205566,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":205567,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":205568,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":205569,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":205570,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":205571,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":205572,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":205573,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":205574,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":205575,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":205576,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":205577,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":205578,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":205579,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":205580,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":205581,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":205582,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":205583,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":205584,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":205585,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":205586,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":205587,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":205588,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":205589,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":205590,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":205591,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":205592,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":205593,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":205593,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":205594,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":205595,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":205596,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":205597,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":205598,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":205599,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":205600,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":205601,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":205602,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":205603,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":205604,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":205605,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":205606,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":205607,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":205608,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":205609,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":205610,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":205611,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":205612,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":205613,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":205614,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":205615,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":205616,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":205617,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":205618,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":205618,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":205619,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":205621,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":208239,"type":"anyOf","anyOf":[{"_internalId":208237,"type":"object","description":"be an object","properties":{"eval":{"_internalId":208142,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":208143,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":208144,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":208145,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":208146,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":208147,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":208148,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":208149,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":208150,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":208151,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":208152,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":208153,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":208154,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":208155,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":208156,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":208157,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":208158,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":208159,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":208160,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":208161,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":208162,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":208163,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":208164,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":208165,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":208166,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":208167,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":208168,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":208169,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":208170,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":208171,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":208172,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":208173,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":208174,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":208175,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":208176,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":208176,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":208177,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":208178,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":208179,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":208180,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":208181,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":208182,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":208183,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":208184,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":208185,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":208186,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":208187,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":208188,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":208189,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":208190,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":208191,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":208192,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":208193,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":208194,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":208195,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":208196,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":208197,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":208198,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":208199,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":208200,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":208201,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":208202,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":208203,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":208204,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":208205,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":208206,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":208207,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":208208,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":208209,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":208210,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":208211,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":208212,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":208212,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":208213,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":208214,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":208215,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":208216,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":208217,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":208218,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":208219,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":208220,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":208221,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":208222,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":208223,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":208224,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":208225,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":208226,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":208227,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":208228,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":208229,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":208230,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":208231,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":208232,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":208233,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":208234,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":208235,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":208235,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":208236,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":208238,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":210908,"type":"anyOf","anyOf":[{"_internalId":210906,"type":"object","description":"be an object","properties":{"eval":{"_internalId":210759,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":210760,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":210761,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":210762,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":210763,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":210764,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":210765,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":210766,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":210767,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":210768,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":210769,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":210770,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":210771,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":210772,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":210773,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":210774,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":210775,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":210776,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":210777,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":210778,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":210779,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":210780,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":210781,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":210782,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":210783,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":210784,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":210785,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":210786,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":210787,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":210788,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":210789,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":210790,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":210791,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":210792,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":210793,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":210794,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":210795,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":210796,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":210797,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":210798,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":210799,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":210800,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":210801,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":210802,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":210803,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":210804,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":210805,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":210806,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":210807,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":210808,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":210809,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":210810,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":210811,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":210812,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":210813,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":210814,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":210815,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":210816,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":210817,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":210818,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":210819,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":210819,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":210820,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":210821,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":210822,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":210823,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":210824,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":210825,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":210826,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":210827,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":210828,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":210829,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":210830,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":210831,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":210832,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":210833,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":210834,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":210835,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":210836,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":210837,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":210838,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":210839,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":210840,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":210841,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":210842,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":210843,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":210844,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":210845,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":210846,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":210847,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":210848,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":210849,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":210850,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":210851,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":210852,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":210853,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":210854,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":210855,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":210856,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":210857,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":210858,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":210859,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":210860,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":210861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":210862,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":210863,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":210864,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":210865,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":210866,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":210867,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":210868,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":210869,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":210870,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":210871,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":210872,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":210873,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":210874,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":210875,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":210876,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":210877,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":210878,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":210879,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":210879,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":210880,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":210881,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":210882,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":210883,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":210884,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":210885,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":210886,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":210887,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":210888,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":210889,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":210890,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":210891,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":210892,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":210893,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":210894,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":210895,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":210896,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":210897,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":210898,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":210899,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":210900,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":210901,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":210902,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":210903,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":210903,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":210904,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":210905,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":210907,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":213525,"type":"anyOf","anyOf":[{"_internalId":213523,"type":"object","description":"be an object","properties":{"eval":{"_internalId":213428,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213429,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":213430,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213431,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213432,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213433,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":213434,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":213435,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":213436,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":213437,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":213438,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":213439,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":213440,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":213441,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":213442,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":213443,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":213444,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":213445,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":213446,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":213447,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":213448,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":213449,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":213450,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":213451,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":213452,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":213453,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":213454,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":213455,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":213456,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":213457,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":213458,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":213459,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":213460,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":213461,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":213462,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":213462,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":213463,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":213464,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":213465,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":213466,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":213467,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":213468,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":213469,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":213470,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":213471,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":213472,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":213473,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":213474,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":213475,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":213476,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":213477,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":213478,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":213479,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":213480,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":213481,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":213482,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":213483,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":213484,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":213485,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":213486,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":213487,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":213488,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":213489,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":213490,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":213491,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":213492,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":213493,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":213494,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":213495,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":213496,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":213497,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":213498,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":213498,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":213499,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":213500,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":213501,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":213502,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":213503,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":213504,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":213505,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":213506,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":213507,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":213508,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":213509,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":213510,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":213511,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":213512,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":213513,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":213514,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":213515,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":213516,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":213517,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":213518,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":213519,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":213520,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":213521,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":213521,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":213522,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":213524,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"}},"additionalProperties":false,"tags":{"completions":{"ansi":{"type":"key","display":"ansi","value":"ansi: ","description":"be 'ansi'","suggest_on_accept":true},"asciidoc":{"type":"key","display":"asciidoc","value":"asciidoc: ","description":"be 'asciidoc'","suggest_on_accept":true},"asciidoc_legacy":{"type":"key","display":"asciidoc_legacy","value":"asciidoc_legacy: ","description":"be 'asciidoc_legacy'","suggest_on_accept":true},"asciidoctor":{"type":"key","display":"asciidoctor","value":"asciidoctor: ","description":"be 'asciidoctor'","suggest_on_accept":true},"bbcode":{"type":"key","display":"bbcode","value":"bbcode: ","description":"be 'bbcode'","suggest_on_accept":true},"bbcode_fluxbb":{"type":"key","display":"bbcode_fluxbb","value":"bbcode_fluxbb: ","description":"be 'bbcode_fluxbb'","suggest_on_accept":true},"bbcode_hubzilla":{"type":"key","display":"bbcode_hubzilla","value":"bbcode_hubzilla: ","description":"be 'bbcode_hubzilla'","suggest_on_accept":true},"bbcode_phpbb":{"type":"key","display":"bbcode_phpbb","value":"bbcode_phpbb: ","description":"be 'bbcode_phpbb'","suggest_on_accept":true},"bbcode_steam":{"type":"key","display":"bbcode_steam","value":"bbcode_steam: ","description":"be 'bbcode_steam'","suggest_on_accept":true},"bbcode_xenforo":{"type":"key","display":"bbcode_xenforo","value":"bbcode_xenforo: ","description":"be 'bbcode_xenforo'","suggest_on_accept":true},"beamer":{"type":"key","display":"beamer","value":"beamer: ","description":"be 'beamer'","suggest_on_accept":true},"biblatex":{"type":"key","display":"biblatex","value":"biblatex: ","description":"be 'biblatex'","suggest_on_accept":true},"bibtex":{"type":"key","display":"bibtex","value":"bibtex: ","description":"be 'bibtex'","suggest_on_accept":true},"chunkedhtml":{"type":"key","display":"chunkedhtml","value":"chunkedhtml: ","description":"be 'chunkedhtml'","suggest_on_accept":true},"commonmark":{"type":"key","display":"commonmark","value":"commonmark: ","description":"be 'commonmark'","suggest_on_accept":true},"commonmark_x":{"type":"key","display":"commonmark_x","value":"commonmark_x: ","description":"be 'commonmark_x'","suggest_on_accept":true},"context":{"type":"key","display":"context","value":"context: ","description":"be 'context'","suggest_on_accept":true},"csljson":{"type":"key","display":"csljson","value":"csljson: ","description":"be 'csljson'","suggest_on_accept":true},"djot":{"type":"key","display":"djot","value":"djot: ","description":"be 'djot'","suggest_on_accept":true},"docbook":{"type":"key","display":"docbook","value":"docbook: ","description":"be 'docbook'","suggest_on_accept":true},"docx":{"type":"key","display":"docx","value":"docx: ","description":"be 'docx'","suggest_on_accept":true},"dokuwiki":{"type":"key","display":"dokuwiki","value":"dokuwiki: ","description":"be 'dokuwiki'","suggest_on_accept":true},"dzslides":{"type":"key","display":"dzslides","value":"dzslides: ","description":"be 'dzslides'","suggest_on_accept":true},"epub":{"type":"key","display":"epub","value":"epub: ","description":"be 'epub'","suggest_on_accept":true},"fb2":{"type":"key","display":"fb2","value":"fb2: ","description":"be 'fb2'","suggest_on_accept":true},"gfm":{"type":"key","display":"gfm","value":"gfm: ","description":"be 'gfm'","suggest_on_accept":true},"haddock":{"type":"key","display":"haddock","value":"haddock: ","description":"be 'haddock'","suggest_on_accept":true},"html":{"type":"key","display":"html","value":"html: ","description":"be 'html'","suggest_on_accept":true},"icml":{"type":"key","display":"icml","value":"icml: ","description":"be 'icml'","suggest_on_accept":true},"ipynb":{"type":"key","display":"ipynb","value":"ipynb: ","description":"be 'ipynb'","suggest_on_accept":true},"jats":{"type":"key","display":"jats","value":"jats: ","description":"be 'jats'","suggest_on_accept":true},"jats_archiving":{"type":"key","display":"jats_archiving","value":"jats_archiving: ","description":"be 'jats_archiving'","suggest_on_accept":true},"jats_articleauthoring":{"type":"key","display":"jats_articleauthoring","value":"jats_articleauthoring: ","description":"be 'jats_articleauthoring'","suggest_on_accept":true},"jats_publishing":{"type":"key","display":"jats_publishing","value":"jats_publishing: ","description":"be 'jats_publishing'","suggest_on_accept":true},"jira":{"type":"key","display":"jira","value":"jira: ","description":"be 'jira'","suggest_on_accept":true},"json":{"type":"key","display":"json","value":"json: ","description":"be 'json'","suggest_on_accept":true},"latex":{"type":"key","display":"latex","value":"latex: ","description":"be 'latex'","suggest_on_accept":true},"man":{"type":"key","display":"man","value":"man: ","description":"be 'man'","suggest_on_accept":true},"markdown":{"type":"key","display":"markdown","value":"markdown: ","description":"be 'markdown'","suggest_on_accept":true},"markdown_github":{"type":"key","display":"markdown_github","value":"markdown_github: ","description":"be 'markdown_github'","suggest_on_accept":true},"markdown_mmd":{"type":"key","display":"markdown_mmd","value":"markdown_mmd: ","description":"be 'markdown_mmd'","suggest_on_accept":true},"markdown_phpextra":{"type":"key","display":"markdown_phpextra","value":"markdown_phpextra: ","description":"be 'markdown_phpextra'","suggest_on_accept":true},"markdown_strict":{"type":"key","display":"markdown_strict","value":"markdown_strict: ","description":"be 'markdown_strict'","suggest_on_accept":true},"markua":{"type":"key","display":"markua","value":"markua: ","description":"be 'markua'","suggest_on_accept":true},"mediawiki":{"type":"key","display":"mediawiki","value":"mediawiki: ","description":"be 'mediawiki'","suggest_on_accept":true},"ms":{"type":"key","display":"ms","value":"ms: ","description":"be 'ms'","suggest_on_accept":true},"muse":{"type":"key","display":"muse","value":"muse: ","description":"be 'muse'","suggest_on_accept":true},"native":{"type":"key","display":"native","value":"native: ","description":"be 'native'","suggest_on_accept":true},"odt":{"type":"key","display":"odt","value":"odt: ","description":"be 'odt'","suggest_on_accept":true},"opendocument":{"type":"key","display":"opendocument","value":"opendocument: ","description":"be 'opendocument'","suggest_on_accept":true},"opml":{"type":"key","display":"opml","value":"opml: ","description":"be 'opml'","suggest_on_accept":true},"org":{"type":"key","display":"org","value":"org: ","description":"be 'org'","suggest_on_accept":true},"pdf":{"type":"key","display":"pdf","value":"pdf: ","description":"be 'pdf'","suggest_on_accept":true},"plain":{"type":"key","display":"plain","value":"plain: ","description":"be 'plain'","suggest_on_accept":true},"pptx":{"type":"key","display":"pptx","value":"pptx: ","description":"be 'pptx'","suggest_on_accept":true},"revealjs":{"type":"key","display":"revealjs","value":"revealjs: ","description":"be 'revealjs'","suggest_on_accept":true},"rst":{"type":"key","display":"rst","value":"rst: ","description":"be 'rst'","suggest_on_accept":true},"rtf":{"type":"key","display":"rtf","value":"rtf: ","description":"be 'rtf'","suggest_on_accept":true},"s5":{"type":"key","display":"s5","value":"s5: ","description":"be 's5'","suggest_on_accept":true},"slideous":{"type":"key","display":"slideous","value":"slideous: ","description":"be 'slideous'","suggest_on_accept":true},"slidy":{"type":"key","display":"slidy","value":"slidy: ","description":"be 'slidy'","suggest_on_accept":true},"tei":{"type":"key","display":"tei","value":"tei: ","description":"be 'tei'","suggest_on_accept":true},"texinfo":{"type":"key","display":"texinfo","value":"texinfo: ","description":"be 'texinfo'","suggest_on_accept":true},"textile":{"type":"key","display":"textile","value":"textile: ","description":"be 'textile'","suggest_on_accept":true},"typst":{"type":"key","display":"typst","value":"typst: ","description":"be 'typst'","suggest_on_accept":true},"vimdoc":{"type":"key","display":"vimdoc","value":"vimdoc: ","description":"be 'vimdoc'","suggest_on_accept":true},"xml":{"type":"key","display":"xml","value":"xml: ","description":"be 'xml'","suggest_on_accept":true},"xwiki":{"type":"key","display":"xwiki","value":"xwiki: ","description":"be 'xwiki'","suggest_on_accept":true},"zimwiki":{"type":"key","display":"zimwiki","value":"zimwiki: ","description":"be 'zimwiki'","suggest_on_accept":true},"md":{"type":"key","display":"md","value":"md: ","description":"be 'md'","suggest_on_accept":true},"hugo":{"type":"key","display":"hugo","value":"hugo: ","description":"be 'hugo'","suggest_on_accept":true},"dashboard":{"type":"key","display":"dashboard","value":"dashboard: ","description":"be 'dashboard'","suggest_on_accept":true},"email":{"type":"key","display":"email","value":"email: ","description":"be 'email'","suggest_on_accept":true}}}}],"description":"be all of: an object"}],"description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object","errorMessage":"${value} is not a valid output format.","$id":"front-matter-format"},"front-matter":{"_internalId":214057,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":214056,"type":"allOf","allOf":[{"_internalId":213612,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5556,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":213611,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"}},"patternProperties":{}},{"_internalId":214054,"type":"object","description":"be an object","properties":{"eval":{"_internalId":213613,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213614,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213615,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213616,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213617,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213618,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":213619,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":213620,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213621,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":213622,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213623,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213624,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":213625,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":213626,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213627,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213628,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213629,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":213630,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":213631,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":213632,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":213633,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":213634,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":213635,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":213636,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":213637,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":213845,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":213639,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":213640,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":213641,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":213642,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":213643,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":213644,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":213645,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":213646,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":213647,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":213648,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":213649,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":213650,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":213651,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":213652,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":213653,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":213654,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":213655,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":213656,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":213657,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":213658,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":213659,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":213660,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":213661,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":213662,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":213663,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":213664,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":213665,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":213666,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":213667,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":213668,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":213669,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":213670,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":213671,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":213672,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":213673,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":214052,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":213675,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":213676,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":213677,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":213678,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":213679,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":213680,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":213681,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":213682,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":213683,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":213842,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"type":{"_internalId":213685,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":213686,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":213687,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":213688,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":213689,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":213690,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":213691,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":213692,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":213693,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":213694,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":213695,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":213696,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":213697,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":213698,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":213699,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":213700,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":213701,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":213702,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":213703,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":213704,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":213705,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":213706,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":213707,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":213708,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":213709,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":213710,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":213711,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":213712,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":213713,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":213714,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":213715,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":213716,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":213717,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":213718,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":213719,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":213720,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":213721,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":213722,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":213723,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":213724,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":213725,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":213726,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":213727,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":213728,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":213729,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":213730,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":213731,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":213732,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":213733,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":213734,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":213735,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":213736,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":213737,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":213738,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":213739,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":213740,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":213741,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":213742,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":213743,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":213744,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":213745,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":213746,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":213747,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":213748,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":213748,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":213749,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":213750,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":213751,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":213752,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":213753,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":213754,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":213755,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":213756,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":213757,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":213758,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":213759,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":213760,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":213761,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":213762,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":213763,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":213764,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":213765,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":213766,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":213767,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":213768,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":213769,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":213770,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":213771,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":213772,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":213773,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":213774,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":213775,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":213776,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":213777,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":213778,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":213950,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":213780,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":213781,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":213782,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":213783,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":213784,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":213785,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":213786,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":213787,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":213788,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":213789,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":213790,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":213791,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":213792,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":213793,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":213794,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":213795,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":213796,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":213797,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":213798,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":213799,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":213800,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":213801,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":213802,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":213803,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":213804,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":213805,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":213806,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":213807,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":213808,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":213809,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":213810,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":213811,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":213812,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":213813,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":213814,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":213815,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":213816,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":213817,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":213818,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":213819,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":213820,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":213821,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":213822,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":213823,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":213824,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":213825,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":213826,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":213827,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":213828,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":213829,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":213830,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":213831,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":213832,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":213833,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":213834,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":213835,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":213836,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":213837,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":213838,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":213839,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":213840,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":213841,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"description":{"_internalId":213843,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":213844,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":213846,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":213847,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":213848,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":213849,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":213850,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":213851,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":213852,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":213853,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":213854,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":213855,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":213856,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":213857,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":213858,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":213859,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"pagenumbering":{"_internalId":213860,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":213861,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":213862,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":213863,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":213864,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":213865,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":213866,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":213867,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":213868,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":213869,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":213870,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":213871,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":213872,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":213873,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":213874,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":213875,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":213876,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":213877,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":213878,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":213879,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":213880,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":213881,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":213882,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":213883,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":213884,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":213886,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":213887,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":213888,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":213889,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":213890,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":213891,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":213892,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":213893,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":213894,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":213895,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":213896,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":213897,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":213898,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":213899,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":213900,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":213901,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":213902,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":213903,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":213904,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":213905,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":213906,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":213907,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":213908,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":213909,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":213910,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":213911,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":213912,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":213913,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":213914,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":213915,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":213916,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":213917,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":213918,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":213919,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":213920,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":213921,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":213922,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":213923,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":213923,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":213924,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":213925,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":213926,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":213927,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":213928,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":213929,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":213930,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":213931,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":213932,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":213933,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":213934,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":213935,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":213936,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":213937,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":213938,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":213939,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":213940,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":213941,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":213942,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":213943,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":213944,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":213945,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":213946,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":213947,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":213948,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":213951,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":213952,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":213953,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":213954,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":213955,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":213956,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":213957,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":213958,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":213959,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":213960,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":213961,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":213962,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":213963,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":213964,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":213965,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":213966,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":213967,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":213968,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":213969,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":213970,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":213971,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":213972,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":213973,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":213974,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":213975,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":213976,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":213977,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":213978,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":213979,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":213980,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":213981,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":213982,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":213983,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":213984,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":213985,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":213986,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":213987,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":213988,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":213989,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":213990,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":213991,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":213992,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":213993,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":213994,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":213995,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":213996,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":213997,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":213998,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":213999,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":214000,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":214001,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":214002,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":214003,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":214004,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":214005,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":214006,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":214007,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":214008,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":214009,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":214010,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":214011,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":214012,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":214013,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":214014,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":214015,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":214016,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":214017,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":214018,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":214019,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":214020,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":214021,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":214022,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":214023,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":214024,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":214025,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":214026,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":214027,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":214028,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":214029,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":214030,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":214031,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":214032,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":214033,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":214034,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":214035,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":214035,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":214036,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":214037,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":214038,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":214039,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":214040,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":214041,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":214042,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":214043,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":214044,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":214045,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":214046,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":214047,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":214048,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":214049,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":214050,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":214051,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"},"margin-geometry":{"_internalId":214053,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,affiliation,copyright,article,journal,institute,abstract,abstract-title,notes,tags,doi,thanks,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,contrastcolor,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,zotero,identifier,creator,contributor,subject,type,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,font-paths,CJKoptions,microtypeoptions,pointsize,lineheight,linestretch,interlinespace,linkstyle,whitespace,footnotes-hover,links-as-notes,reference-location,indenting,adjusting,hyphenate,list-tables,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,keep-source,keep-hidden,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,headertext,footertext,includesource,footer,header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,brand-mode,layout,page-layout,page-width,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,revealjs-url,s5-url,slidy-url,slideous-url,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-subarticles,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,description,category,license,title-meta,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,number-offset,section-numbering,shift-heading-level-by,page-numbering,pagenumbering,top-level-division,ojs-engine,reference-doc,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,beameroption,aspectratio,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,section,variant,markdown-headings,ipynb-output,quarto-required,preview-mode,pdfa,pdfaiccprofile,pdfaintent,bibliography,csl,citations-hover,citation-location,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,bibliographystyle,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,use-rsvg-convert,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,margin,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,wrap,columns,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-indent,toc-depth,toc-location,toc-title,toc-expand,lof,lot,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe,margin-geometry","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^cjkmainfont$|^cjkmainfont$|^font_paths$|^fontPaths$|^cjkoptions$|^cjkoptions$|^footnotes_hover$|^footnotesHover$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^list_tables$|^listTables$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^brand_mode$|^brandMode$|^page_layout$|^pageLayout$|^page_width$|^pageWidth$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^revealjs_url$|^revealjsUrl$|^s5_url$|^s5Url$|^slidy_url$|^slidyUrl$|^slideous_url$|^slideousUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_subarticles$|^notebookSubarticles$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_meta$|^titleMeta$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^top_level_division$|^topLevelDivision$|^ojs_engine$|^ojsEngine$|^reference_doc$|^referenceDoc$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$|^margin_geometry$|^marginGeometry$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":5556,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":214055,"type":"ref","$ref":"quarto-dev-schema","description":""}],"description":"be all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"}],"description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref","$id":"front-matter"},"project-config-fields":{"_internalId":214151,"type":"object","description":"be an object","properties":{"project":{"_internalId":214123,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},"render":{"_internalId":214071,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Options for quarto preview"},"execute-dir":{"_internalId":214074,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Scripts to run as a pre-render step"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Scripts to run as a post-render step"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"Array of paths used to detect the project type within a directory"},"resources":{"_internalId":214086,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Book configuration."},{"_internalId":214085,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Book configuration."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":214091,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Book title"},"preview":{"_internalId":214096,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Description metadata for HTML version of book"},"pre-render":{"_internalId":214104,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214103,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"The path to the favicon for this website"},"post-render":{"_internalId":214112,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214111,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Base URL for published website"},"detect":{"_internalId":214122,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":214121,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."}},"patternProperties":{},"closed":true,"documentation":"Additional file resources to be copied to output directory","tags":{"description":"Project configuration."}},"website":{"_internalId":214126,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Base URL for website source code repository","tags":{"description":"Website configuration."}},"book":{"_internalId":1701,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"The value of the rel attribute for repo links"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Subdirectory of repository containing website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Branch of website source code (defaults to main)"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Links to source repository actions"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Links to source repository actions"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Enable Google Analytics for this website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Storage options for Google Analytics data"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Anonymize the user ip address."},"repo-actions":{"_internalId":508,"type":"anyOf","anyOf":[{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},{"_internalId":507,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":506,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"google-analytics":{"_internalId":532,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":531,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The content of the announcement"},"storage":{"_internalId":523,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Whether this announcement may be dismissed by the user."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The icon to display in the announcement"},"version":{"_internalId":530,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The position of the announcement."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Provides an announcement displayed at the top of the page."},"plausible-analytics":{"_internalId":542,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":541,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"announcement":{"_internalId":572,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":571,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The style of the consent banner that is displayed"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The url to the website’s cookie or privacy policy."},"position":{"_internalId":565,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"type":{"_internalId":570,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The type of consent that should be requested"},"cookie-consent":{"_internalId":604,"type":"anyOf","anyOf":[{"_internalId":577,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":603,"type":"object","description":"be an object","properties":{"type":{"_internalId":584,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"style":{"_internalId":587,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Type of search UI (overlay or textbox)"},"palette":{"_internalId":590,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Number of matches to display (defaults to 20)"},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"Matches after which to collapse additional results"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"Provide button for copying search link"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Provide full text search for website"},"search":{"_internalId":691,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":690,"type":"object","description":"be an object","properties":{"location":{"_internalId":613,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"type":{"_internalId":616,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Use external Algolia search index"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"The name of the index to use when performing a search"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"The unique ID used by Algolia to identify your application"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"The Search-Only API key to use to connect to Algolia"},"keyboard-shortcut":{"_internalId":638,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},{"_internalId":637,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":648,"type":"anyOf","anyOf":[{"_internalId":645,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the URL of index entries"},"algolia":{"_internalId":689,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Field that contains the text of index entries"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Field that contains the section of index entries"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Additional parameters to pass when executing a search"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Top navigation options"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"The navbar title. Uses the project title if none is specified."},"index-fields":{"_internalId":685,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Alternate text for the logo image."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"The navbar’s background color (named or hex color)."}},"patternProperties":{},"closed":true},"params":{"_internalId":688,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"The navbar’s foreground color (named or hex color)."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Field that contains the title of index entries"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"navbar":{"_internalId":745,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":744,"type":"object","description":"be an object","properties":{"title":{"_internalId":704,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Always show the navbar (keeping it pinned)."},"logo":{"_internalId":707,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"List of items for the left side of the navbar."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"List of items for the right side of the navbar."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Side navigation options"},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The identifier for this sidebar."},"collapse-below":{"_internalId":724,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The sidebar title. Uses the project title if none is specified."},"left":{"_internalId":730,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":729,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Specification of image that will be displayed in the sidebar."},"right":{"_internalId":736,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":735,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"Alternate text for the logo image."},"toggle-position":{"_internalId":741,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Include a search control in the sidebar."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Include a search box in the navbar."},"sidebar":{"_internalId":816,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":815,"type":"anyOf","anyOf":[{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":813,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"List of items for the sidebar"},"title":{"_internalId":762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The style of sidebar (docked or\nfloating)."},"logo":{"_internalId":765,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"The sidebar’s background color (named or hex color)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The sidebar’s foreground color (named or hex color)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"tools":{"_internalId":777,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":776,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"style":{"_internalId":783,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to place above sidebar content (text or file path)"},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place below sidebar content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Markdown to insert below each page’s body."},"alignment":{"_internalId":796,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Markdown to place above margin content (text or file path)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Markdown to place below margin content (text or file path)"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Provide next and previous article links in footer"},"header":{"_internalId":806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Provide a ‘back to top’ navigation button"},"footer":{"_internalId":812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"List of sidebar tools"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Shared page footer"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"margin-header":{"_internalId":826,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":825,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"margin-footer":{"_internalId":832,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Publish open graph metadata"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Publish twitter card metadata"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"A list of other links to appear below the TOC."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"A list of code links to appear with this document."},"page-footer":{"_internalId":846,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":845,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"A list of input documents that should be treated as drafts"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"How to handle drafts that are encountered."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book subtitle"},"comments":{"_internalId":855,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":863,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":862,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Author or authors of the book"},"twitter-card":{"_internalId":871,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":870,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Author or authors of the book"},"other-links":{"_internalId":876,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book publication date"},"code-links":{"_internalId":886,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":885,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Format string for dates in the book"},"drafts":{"_internalId":894,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":893,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book abstract"},"draft-mode":{"_internalId":899,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book part and chapter files"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book appendix files"},"author":{"_internalId":919,"type":"anyOf","anyOf":[{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},{"_internalId":918,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":915,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Cover image (used in HTML and ePub formats)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Alternative text for cover image (used in HTML format)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Custom tools for navbar or sidebar"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"The Digital Object Identifier for this book."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"A url to the abstract for this item."},"sharing":{"_internalId":952,"type":"anyOf","anyOf":[{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},{"_internalId":951,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":950,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":959,"type":"anyOf","anyOf":[{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."},{"_internalId":958,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":957,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Collection the item is part of within an archive."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":965,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":964,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Geographic location of the archive."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item was initially available"},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Call number (to locate the item in a library)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"available-date":{"_internalId":1433,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"chair":{"_internalId":1438,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"chapter-number":{"_internalId":1441,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Composer (e.g. of a musical score)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"citation-number":{"_internalId":1450,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Title of the container holding the item.","completions":[]},"collection-editor":{"_internalId":1453,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Short/abbreviated form of container-title;"},"collection-number":{"_internalId":1456,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"compiler":{"_internalId":1461,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Director (e.g. of a film)."},"container-author":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"The editor of the item.","completions":[]},"contributor":{"_internalId":1474,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"curator":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Combined editor and translator of a work."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Date the event related to an item took place."},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1491,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"A url to the full text for this item."},"editor-translator":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Type, class, or subtype of the item"},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1507,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Guest (e.g. on a TV show or podcast)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"A value which uniquely identifies this item."},"executive-producer":{"_internalId":1514,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"first-reference-note-number":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Interviewer (e.g. of an interview)."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"International Standard Serial Number."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Issue number of the item or container holding the item"},"host":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Date the item was issued/published."},"id":{"_internalId":1536,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"illustrator":{"_internalId":1539,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"The language of the item (used only for citation of the item)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"The license information applicable to an item."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"A cite-specific pinpointer within the item."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1557,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Narrator (e.g. of an audio book)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Number identifying the item (e.g. a report number)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"Total number of pages of the cited item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"locator":{"_internalId":1571,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"The original creator of a work."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Issue date of the original version."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"number-of-pages":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"number-of-volumes":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"organizer":{"_internalId":1590,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-author":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Title of the specific part of an item being cited."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"A url to the pdf for this item."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"page":{"_internalId":1605,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed Central reference number."},"page-first":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"PubMed reference number."},"page-last":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Printing number of the item or container holding the item."},"part-number":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Producer (e.g. of a television or radio broadcast)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A public url for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"The publisher of the item."},"performer":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"The geographic location of the publisher."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Recipient (e.g. of a letter)."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Author of the item reviewed by the current item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Title of the item reviewed by the current item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Scale of e.g. a map or model."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Creator of a series (e.g. of a television series)."},"reviewed-author":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"script-writer":{"_internalId":1660,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Short/abbreviated form oftitle."},"section":{"_internalId":1663,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Translator"},"series-creator":{"_internalId":1666,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"The type\nof the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"submitted":{"_internalId":1673,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"supplement-number":{"_internalId":1676,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Title of the volume of the item or container holding the item."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Manuscript configuration"},"type":{"_internalId":1684,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"internal-schema-hack"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1693,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Distance from page edge to wideblock boundary."},"volume":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Width of the margin note column."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Gap between margin column and body text."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Advanced geometry settings for Typst margin layout."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"The value of the target attribute for repo links"},"manuscript":{"_internalId":214136,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Inner (left) margin geometry.","tags":{"description":"Manuscript configuration"}},"type":{"_internalId":214139,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"Outer (right) margin geometry.","tags":{"description":"internal-schema-hack","hidden":true}},"engines":{"_internalId":214150,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":214149,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214148,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"Minimum vertical spacing between margin notes (default: 8pt).","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."}}},"patternProperties":{},"$id":"project-config-fields"},"project-config":{"_internalId":214182,"type":"allOf","allOf":[{"_internalId":214180,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":214177,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":214178,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"},"profile":{"_internalId":214179,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":214177,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":214181,"type":"ref","$ref":"front-matter","description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"},{"_internalId":214152,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":214230,"type":"object","description":"be an object","properties":{"label":{"_internalId":214184,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":214185,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":214186,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":214187,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":214188,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":214189,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":214190,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":214191,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":214192,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":214193,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":214194,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214195,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":214196,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":214197,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":214198,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":214199,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":214200,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":214201,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":214202,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":214203,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":214204,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":214205,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":214206,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":214207,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":214208,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":214209,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":214210,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":214211,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":214212,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":214213,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":214214,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":214215,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":214216,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":214217,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":214218,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":214219,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":214220,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":214221,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":214222,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":214223,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":214224,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214225,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214226,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214227,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":214228,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":214229,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-markdown"},"engine-knitr":{"_internalId":214325,"type":"object","description":"be an object","properties":{"label":{"_internalId":214232,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":214233,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":214234,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":214235,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":214236,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":214237,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":214238,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":214239,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":214240,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":214241,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":214242,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":214243,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":214244,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":214245,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":214246,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":214247,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":214248,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":214249,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":214250,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":214251,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214252,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":214253,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":214254,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":214255,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":214256,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":214257,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":214258,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":214259,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":214260,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":214261,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":214262,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":214263,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":214264,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":214265,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":214266,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":214267,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":214268,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":214269,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":214270,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":214271,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":214272,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":214273,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":214274,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":214275,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":214276,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":214277,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":214278,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":214279,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":214280,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":214281,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":214282,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":214283,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":214284,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":214285,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":214286,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":214287,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":214288,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":214289,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":214290,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":214291,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":214292,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":214293,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":214294,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":214295,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":214296,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":214297,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":214298,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":214299,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":214300,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":214301,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":214302,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":214303,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":214304,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":214305,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":214306,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":214307,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":214308,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214309,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214310,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214311,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":214312,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":214313,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":214314,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":214315,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":214316,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":214317,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":214318,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":214319,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":214320,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":214321,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":214322,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":214323,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":214324,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-error","description":"quarto-resource-cell-textoutput-attr-error"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,cache,cache-path,cache-vars,cache-globals,cache-lazy,cache-rebuild,cache-comments,dependson,autodep,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,tidy,tidy-opts,collapse,prompt,highlight,class-source,attr-source,fig-width,fig-height,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,fig-format,fig-dpi,fig-asp,out-width,out-height,fig-keep,fig-show,out-extra,external,sanitize,interval,aniopts,animation-hook,child,file,code,purl,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location,message,results,comment,class-output,attr-output,class-warning,attr-warning,class-message,attr-message,class-error,attr-error","type":"string","pattern":"(?!(^cache_path$|^cachePath$|^cache_vars$|^cacheVars$|^cache_globals$|^cacheGlobals$|^cache_lazy$|^cacheLazy$|^cache_rebuild$|^cacheRebuild$|^cache_comments$|^cacheComments$|^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^tidy_opts$|^tidyOpts$|^class_source$|^classSource$|^attr_source$|^attrSource$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^out_width$|^outWidth$|^out_height$|^outHeight$|^fig_keep$|^figKeep$|^fig_show$|^figShow$|^out_extra$|^outExtra$|^animation_hook$|^animationHook$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^class_output$|^classOutput$|^attr_output$|^attrOutput$|^class_warning$|^classWarning$|^attr_warning$|^attrWarning$|^class_message$|^classMessage$|^attr_message$|^attrMessage$|^class_error$|^classError$|^attr_error$|^attrError$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-knitr"},"engine-jupyter":{"_internalId":214378,"type":"object","description":"be an object","properties":{"label":{"_internalId":214327,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":214328,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":214329,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":214330,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":214331,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":214332,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":214333,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":214334,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":214335,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":214336,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":214337,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":214338,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":214339,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":214340,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":214341,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214342,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":214343,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":214344,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":214345,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":214346,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":214347,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":214348,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":214349,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":214350,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":214351,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":214352,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":214353,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":214354,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":214355,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":214356,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":214357,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":214358,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":214359,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":214360,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":214361,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":214362,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":214363,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":214364,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":214365,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":214366,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":214367,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":214368,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":214369,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":214370,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":214371,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":214372,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214373,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214374,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214375,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":214376,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":214377,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,tags,id,export,title,padding,expandable,width,height,context,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-jupyter"},"engine-julia":{"_internalId":214426,"type":"object","description":"be an object","properties":{"label":{"_internalId":214380,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":214381,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":214382,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":214383,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":214384,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":214385,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":214386,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":214387,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":214388,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":214389,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":214390,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214391,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":214392,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":214393,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":214394,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":214395,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":214396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":214397,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":214398,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":214399,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":214400,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":214401,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":214402,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":214403,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":214404,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":214405,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":214406,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":214407,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":214408,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":214409,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":214410,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":214411,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":214412,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":214413,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":214414,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":214415,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":214416,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":214417,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":214418,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":214419,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":214420,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214421,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214422,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214423,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":214424,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":214425,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-julia"},"plugin-reveal":{"_internalId":7,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"name":{"type":"string","description":"be a string"},"register":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"script":{"_internalId":4,"type":"anyOf","anyOf":[{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},{"_internalId":3,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object"},"stylesheet":{"_internalId":6,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string"},"self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention path,name,register,script,stylesheet,self-contained","type":"string","pattern":"(?!(^self_contained$|^selfContained$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"plugin-reveal"},"quarto-resource-document-pdfa-pdf-standard":{"_internalId":219335,"type":"anyOf","anyOf":[{"_internalId":219333,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true},{"_internalId":219334,"type":"array","description":"be an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","items":{"_internalId":219333,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`, an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all","typst"],"description":{"short":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","long":"Specifies PDF conformance standards and/or version for the output.\n\nAccepts a single value or array of values:\n\n**PDF versions** (both Typst and LaTeX):\n`1.4`, `1.5`, `1.6`, `1.7`, `2.0`\n\n**PDF/A standards** (both engines):\n`a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`\n\n**PDF/A standards** (Typst only):\n`a-1a`, `a-4e`\n\n**PDF/UA standards**:\n`ua-1` (Typst), `ua-2` (LaTeX)\n\n**PDF/X standards** (LaTeX only):\n`x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`\n\nExample: `pdf-standard: [a-2b, ua-2]` for accessible archival PDF.\n"}},"documentation":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","$id":"quarto-resource-document-pdfa-pdf-standard"}} \ No newline at end of file +{"date":{"_internalId":19,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":18,"type":"object","description":"be an object","properties":{"value":{"type":"string","description":"be a string"},"format":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"]}],"description":"be at least one of: a string, an object","$id":"date"},"date-format":{"type":"string","description":"be a string","$id":"date-format"},"math-methods":{"_internalId":26,"type":"enum","enum":["plain","webtex","gladtex","mathml","mathjax","katex"],"description":"be one of: `plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`","completions":["plain","webtex","gladtex","mathml","mathjax","katex"],"exhaustiveCompletions":true,"$id":"math-methods"},"pandoc-format-request-headers":{"_internalId":34,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":33,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"$id":"pandoc-format-request-headers"},"pandoc-format-output-file":{"_internalId":42,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":41,"type":"enum","enum":[null],"description":"be 'null'","completions":[],"exhaustiveCompletions":true,"tags":{"hidden":true}}],"description":"be at least one of: a string, 'null'","$id":"pandoc-format-output-file"},"filter-entry-point":{"_internalId":45,"type":"enum","enum":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"description":"be one of: `pre-ast`, `post-ast`, `pre-quarto`, `post-quarto`, `pre-render`, `post-render`, `pre-finalize`, `post-finalize`","completions":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"exhaustiveCompletions":true,"$id":"filter-entry-point"},"pandoc-format-filters":{"_internalId":76,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":75,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":58,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["path"]},{"_internalId":68,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"},"at":{"_internalId":67,"type":"ref","$ref":"filter-entry-point","description":"be filter-entry-point"}},"patternProperties":{},"required":["path","at"]},{"_internalId":74,"type":"object","description":"be an object","properties":{"type":{"_internalId":73,"type":"enum","enum":["citeproc"],"description":"be 'citeproc'","completions":["citeproc"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["type"],"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},"$id":"pandoc-format-filters"},"pandoc-shortcodes":{"_internalId":81,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"$id":"pandoc-shortcodes"},"page-column":{"_internalId":84,"type":"enum","enum":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"description":"be one of: `body`, `body-outset`, `body-outset-left`, `body-outset-right`, `page`, `page-left`, `page-right`, `page-inset`, `page-inset-left`, `page-inset-right`, `screen`, `screen-left`, `screen-right`, `screen-inset`, `screen-inset-shaded`, `screen-inset-left`, `screen-inset-right`, `margin`","completions":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"exhaustiveCompletions":true,"$id":"page-column"},"contents-auto":{"_internalId":98,"type":"object","description":"be an object","properties":{"auto":{"_internalId":97,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":96,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":95,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Automatically generate sidebar contents.","long":"Automatically generate sidebar contents. Pass `true` to include all documents\nin the site, a directory name to include only documents in that directory, \nor a glob (or list of globs) to include documents based on a pattern. \n\nSubdirectories will create sections (use an `index.qmd` in the directory to\nprovide its title). Order will be alphabetical unless a numeric `order` field\nis provided in document metadata.\n"}},"documentation":"Automatically generate sidebar contents."}},"patternProperties":{},"$id":"contents-auto"},"navigation-item":{"_internalId":106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":105,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"}],"description":"be at least one of: a string, navigation-item-object","$id":"navigation-item"},"navigation-item-object":{"_internalId":135,"type":"object","description":"be an object","properties":{"aria-label":{"type":"string","description":"be a string","tags":{"description":"Accessible label for the item."},"documentation":"Accessible label for the item."},"file":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"href":{"type":"string","description":"be a string","tags":{"description":"Link to file contained with the project or external URL\n"},"documentation":"Link to file contained with the project or external URL"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)","long":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee for a list of available icons\n"}},"documentation":"Name of bootstrap icon (e.g. github,\nbluesky, share)"},"id":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"menu":{"_internalId":126,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":125,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}},"text":{"type":"string","description":"be a string","tags":{"description":"Text to display for item (defaults to the\ndocument title if not provided)\n"},"documentation":"Text to display for item (defaults to the document title if not\nprovided)"},"url":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"rel":{"type":"string","description":"be a string","tags":{"description":"Value for rel attribute. Multiple space-separated values are permitted.\nSee \nfor a details.\n"},"documentation":"Value for rel attribute. Multiple space-separated values are\npermitted. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel\nfor a details."},"target":{"type":"string","description":"be a string","tags":{"description":"Value for target attribute.\nSee \nfor details.\n"},"documentation":"Value for target attribute. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target\nfor details."}},"patternProperties":{},"closed":true,"$id":"navigation-item-object"},"giscus-themes":{"_internalId":138,"type":"enum","enum":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"description":"be one of: `light`, `light_high_contrast`, `light_protanopia`, `light_tritanopia`, `dark`, `dark_high_contrast`, `dark_protanopia`, `dark_tritanopia`, `dark_dimmed`, `transparent_dark`, `cobalt`, `purple_dark`, `noborder_light`, `noborder_dark`, `noborder_gray`, `preferred_color_scheme`","completions":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"exhaustiveCompletions":true,"$id":"giscus-themes"},"giscus-configuration":{"_internalId":195,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repo that will be used to store comments.","long":"The Github repo that will be used to store comments.\n\nIn order to work correctly, the repo must be public, with the giscus app installed, and \nthe discussions feature must be enabled.\n"}},"documentation":"The Github repo that will be used to store comments."},"repo-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repository identifier.","long":"The Github repository identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github repository identifier."},"category":{"type":"string","description":"be a string","tags":{"description":{"short":"The discussion category where new discussions will be created.","long":"The discussion category where new discussions will be created. It is recommended \nto use a category with the **Announcements** type so that new discussions \ncan only be created by maintainers and giscus.\n"}},"documentation":"The discussion category where new discussions will be created."},"category-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github category identifier.","long":"The Github category identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github category identifier."},"mapping":{"_internalId":157,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"The mapping between the page and the embedded discussion.","long":"The mapping between the page and the embedded discussion. \n\n- `pathname`: The discussion title contains the page path\n- `url`: The discussion title contains the page url\n- `title`: The discussion title contains the page title\n- `og:title`: The discussion title contains the `og:title` metadata value\n- any other string or number: Any other strings will be passed through verbatim and a discussion title\ncontaining that value will be used. Numbers will be treated\nas a discussion number and automatic discussion creation is not supported.\n"}},"documentation":"The mapping between the page and the embedded discussion."},"reactions-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Display reactions for the discussion's main post before the comments."},"documentation":"Display reactions for the discussion’s main post before the\ncomments."},"loading":{"_internalId":162,"type":"enum","enum":["lazy"],"description":"be 'lazy'","completions":["lazy"],"exhaustiveCompletions":true,"tags":{"description":"Specify `loading: lazy` to defer loading comments until the user scrolls near the comments container."},"documentation":"Specify loading: lazy to defer loading comments until\nthe user scrolls near the comments container."},"input-position":{"_internalId":165,"type":"enum","enum":["top","bottom"],"description":"be one of: `top`, `bottom`","completions":["top","bottom"],"exhaustiveCompletions":true,"tags":{"description":"Place the comment input box above or below the comments."},"documentation":"Place the comment input box above or below the comments."},"theme":{"_internalId":192,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":172,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"},{"_internalId":191,"type":"object","description":"be an object","properties":{"light":{"_internalId":182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":181,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The light theme name."},"documentation":"The light theme name."},"dark":{"_internalId":190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":189,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The dark theme name."},"documentation":"The dark theme name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, giscus-themes, an object","tags":{"description":{"short":"The giscus theme to use when displaying comments.","long":"The giscus theme to use when displaying comments. Light and dark themes are supported. If a single theme is provided by name, it will be used as light and dark theme. To use different themes, use `light` and `dark` key: \n\n```yaml\nwebsite:\n comments:\n giscus:\n theme:\n light: light # giscus theme used for light website theme\n dark: dark_dimmed # giscus theme used for dark website theme\n```\n"}},"documentation":"The giscus theme to use when displaying comments."},"language":{"type":"string","description":"be a string","tags":{"description":"The language that should be used when displaying the commenting interface."},"documentation":"The language that should be used when displaying the commenting\ninterface."}},"patternProperties":{},"required":["repo"],"closed":true,"$id":"giscus-configuration"},"external-engine":{"_internalId":202,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to the TypeScript module for the execution engine"},"documentation":"Path to the TypeScript module for the execution engine"}},"patternProperties":{},"required":["path"],"closed":true,"tags":{"description":"An execution engine not pre-loaded in Quarto"},"documentation":"An execution engine not pre-loaded in Quarto","$id":"external-engine"},"document-comments-configuration":{"_internalId":321,"type":"anyOf","anyOf":[{"_internalId":207,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":320,"type":"object","description":"be an object","properties":{"utterances":{"_internalId":220,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":"The Github repo that will be used to store comments."},"documentation":"The Github repo that will be used to store comments."},"label":{"type":"string","description":"be a string","tags":{"description":"The label that will be assigned to issues created by Utterances."},"documentation":"The label that will be assigned to issues created by Utterances."},"theme":{"type":"string","description":"be a string","completions":["github-light","github-dark","github-dark-orange","icy-dark","dark-blue","photon-dark","body-light","gruvbox-dark"],"tags":{"description":{"short":"The Github theme that should be used for Utterances.","long":"The Github theme that should be used for Utterances\n(`github-light`, `github-dark`, `github-dark-orange`,\n`icy-dark`, `dark-blue`, `photon-dark`, `body-light`,\nor `gruvbox-dark`)\n"}},"documentation":"The Github theme that should be used for Utterances."},"issue-term":{"type":"string","description":"be a string","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"How posts should be mapped to Github issues","long":"How posts should be mapped to Github issues\n(`pathname`, `url`, `title` or `og:title`)\n"}},"documentation":"How posts should be mapped to Github issues"}},"patternProperties":{},"required":["repo"],"closed":true},"giscus":{"_internalId":223,"type":"ref","$ref":"giscus-configuration","description":"be giscus-configuration"},"hypothesis":{"_internalId":319,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":318,"type":"object","description":"be an object","properties":{"client-url":{"type":"string","description":"be a string","tags":{"description":"Override the default hypothesis client url with a custom client url."},"documentation":"Override the default hypothesis client url with a custom client\nurl."},"openSidebar":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the sidebar opens automatically on startup."},"documentation":"Controls whether the sidebar opens automatically on startup."},"showHighlights":{"_internalId":241,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":240,"type":"enum","enum":["always","whenSidebarOpen","never"],"description":"be one of: `always`, `whenSidebarOpen`, `never`","completions":["always","whenSidebarOpen","never"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `always`, `whenSidebarOpen`, `never`","tags":{"description":"Controls whether the in-document highlights are shown by default (`always`, `whenSidebarOpen` or `never`)"},"documentation":"Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)"},"theme":{"_internalId":244,"type":"enum","enum":["classic","clean"],"description":"be one of: `classic`, `clean`","completions":["classic","clean"],"exhaustiveCompletions":true,"tags":{"description":"Controls the overall look of the sidebar (`classic` or `clean`)"},"documentation":"Controls the overall look of the sidebar (classic or\nclean)"},"enableExperimentalNewNoteButton":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the experimental New Note button \nshould be shown in the notes tab in the sidebar.\n"},"documentation":"Controls whether the experimental New Note button should be shown in\nthe notes tab in the sidebar."},"usernameUrl":{"type":"string","description":"be a string","tags":{"description":"Specify a URL to direct a user to, \nin a new tab. when they click on the annotation author \nlink in the header of an annotation.\n"},"documentation":"Specify a URL to direct a user to, in a new tab. when they click on\nthe annotation author link in the header of an annotation."},"services":{"_internalId":279,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":278,"type":"object","description":"be an object","properties":{"apiUrl":{"type":"string","description":"be a string","tags":{"description":"The base URL of the service API."},"documentation":"The base URL of the service API."},"authority":{"type":"string","description":"be a string","tags":{"description":"The domain name which the annotation service is associated with."},"documentation":"The domain name which the annotation service is associated with."},"grantToken":{"type":"string","description":"be a string","tags":{"description":"An OAuth 2 grant token which the client can send to the service in order to get an access token for making authenticated requests to the service."},"documentation":"An OAuth 2 grant token which the client can send to the service in\norder to get an access token for making authenticated requests to the\nservice."},"allowLeavingGroups":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether users should be able to leave groups of which they are a member."},"documentation":"A flag indicating whether users should be able to leave groups of\nwhich they are a member."},"enableShareLinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether annotation cards should show links that take the user to see an annotation in context."},"documentation":"A flag indicating whether annotation cards should show links that\ntake the user to see an annotation in context."},"groups":{"_internalId":275,"type":"anyOf","anyOf":[{"_internalId":269,"type":"enum","enum":["$rpc:requestGroups"],"description":"be '$rpc:requestGroups'","completions":["$rpc:requestGroups"],"exhaustiveCompletions":true},{"_internalId":274,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: '$rpc:requestGroups', an array of values, where each element must be a string","tags":{"description":"An array of Group IDs or the literal string `$rpc:requestGroups`"},"documentation":"An array of Group IDs or the literal string\n$rpc:requestGroups"},"icon":{"type":"string","description":"be a string","tags":{"description":"The URL to an image for the annotation service. This image will appear to the left of the name of the currently selected group."},"documentation":"The URL to an image for the annotation service. This image will\nappear to the left of the name of the currently selected group."}},"patternProperties":{},"required":["apiUrl","authority","grantToken"],"propertyNames":{"errorMessage":"property ${value} does not match case convention apiUrl,authority,grantToken,allowLeavingGroups,enableShareLinks,groups,icon","type":"string","pattern":"(?!(^api_url$|^api-url$|^grant_token$|^grant-token$|^allow_leaving_groups$|^allow-leaving-groups$|^enable_share_links$|^enable-share-links$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Alternative annotation services which the client should \nconnect to instead of connecting to the public Hypothesis \nservice at hypothes.is.\n"},"documentation":"Alternative annotation services which the client should connect to\ninstead of connecting to the public Hypothesis service at\nhypothes.is."}},"branding":{"_internalId":292,"type":"object","description":"be an object","properties":{"accentColor":{"type":"string","description":"be a string","tags":{"description":"Secondary color for elements of the commenting UI."},"documentation":"Secondary color for elements of the commenting UI."},"appBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The main background color of the commenting UI."},"documentation":"The main background color of the commenting UI."},"ctaBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The background color for call to action buttons."},"documentation":"The background color for call to action buttons."},"selectionFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for selection text in the annotation card."},"documentation":"The font family for selection text in the annotation card."},"annotationFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for the actual annotation value that the user writes about the page or selection."},"documentation":"The font family for the actual annotation value that the user writes\nabout the page or selection."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention accentColor,appBackgroundColor,ctaBackgroundColor,selectionFontFamily,annotationFontFamily","type":"string","pattern":"(?!(^accent_color$|^accent-color$|^app_background_color$|^app-background-color$|^cta_background_color$|^cta-background-color$|^selection_font_family$|^selection-font-family$|^annotation_font_family$|^annotation-font-family$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Settings to adjust the commenting sidebar's look and feel."},"documentation":"Settings to adjust the commenting sidebar’s look and feel."},"externalContainerSelector":{"type":"string","description":"be a string","tags":{"description":"A CSS selector specifying the containing element into which the sidebar iframe will be placed."},"documentation":"A CSS selector specifying the containing element into which the\nsidebar iframe will be placed."},"focus":{"_internalId":306,"type":"object","description":"be an object","properties":{"user":{"_internalId":305,"type":"object","description":"be an object","properties":{"username":{"type":"string","description":"be a string","tags":{"description":"The username of the user to focus on."},"documentation":"The username of the user to focus on."},"userid":{"type":"string","description":"be a string","tags":{"description":"The userid of the user to focus on."},"documentation":"The userid of the user to focus on."},"displayName":{"type":"string","description":"be a string","tags":{"description":"The display name of the user to focus on."},"documentation":"The display name of the user to focus on."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention username,userid,displayName","type":"string","pattern":"(?!(^display_name$|^display-name$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"required":["user"],"tags":{"description":"Defines a focused filter set for the available annotations on a page."},"documentation":"Defines a focused filter set for the available annotations on a\npage."},"requestConfigFromFrame":{"_internalId":313,"type":"object","description":"be an object","properties":{"origin":{"type":"string","description":"be a string","tags":{"description":"Host url and port number of receiving iframe"},"documentation":"Host url and port number of receiving iframe"},"ancestorLevel":{"type":"number","description":"be a number","tags":{"description":"Number of nested iframes deep the client is relative from the receiving iframe."},"documentation":"Number of nested iframes deep the client is relative from the\nreceiving iframe."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention origin,ancestorLevel","type":"string","pattern":"(?!(^ancestor_level$|^ancestor-level$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"assetRoot":{"type":"string","description":"be a string","tags":{"description":"The root URL from which assets are loaded."},"documentation":"The root URL from which assets are loaded."},"sidebarAppUrl":{"type":"string","description":"be a string","tags":{"description":"The URL for the sidebar application which displays annotations."},"documentation":"The URL for the sidebar application which displays annotations."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","$id":"document-comments-configuration"},"social-metadata":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"}},"patternProperties":{},"closed":true,"$id":"social-metadata"},"page-footer-region":{"_internalId":347,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":346,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":345,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}],"description":"be at least one of: a string, an array of values, where each element must be navigation-item","$id":"page-footer-region"},"sidebar-contents":{"_internalId":382,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":354,"type":"ref","$ref":"contents-auto","description":"be contents-auto"},{"_internalId":381,"type":"array","description":"be an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","items":{"_internalId":380,"type":"anyOf","anyOf":[{"_internalId":361,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"type":"string","description":"be a string"},{"_internalId":376,"type":"object","description":"be an object","properties":{"section":{"_internalId":372,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value"},"contents":{"_internalId":375,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents"}},"patternProperties":{},"closed":true},{"_internalId":379,"type":"ref","$ref":"contents-auto","description":"be contents-auto"}],"description":"be at least one of: navigation-item, a string, an object, contents-auto"}}],"description":"be at least one of: a string, contents-auto, an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","$id":"sidebar-contents"},"project-preview":{"_internalId":402,"type":"object","description":"be an object","properties":{"port":{"type":"number","description":"be a number","tags":{"description":"Port to listen on (defaults to random value between 3000 and 8000)"},"documentation":"Port to listen on (defaults to random value between 3000 and\n8000)"},"host":{"type":"string","description":"be a string","tags":{"description":"Hostname to bind to (defaults to 127.0.0.1)"},"documentation":"Hostname to bind to (defaults to 127.0.0.1)"},"serve":{"_internalId":393,"type":"ref","$ref":"project-serve","description":"be project-serve","tags":{"description":"Use an exernal application to preview the project."},"documentation":"Use an exernal application to preview the project."},"browser":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Open a web browser to view the preview (defaults to true)"},"documentation":"Open a web browser to view the preview (defaults to true)"},"watch-inputs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Re-render input files when they change (defaults to true)"},"documentation":"Re-render input files when they change (defaults to true)"},"navigate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Navigate the browser automatically when outputs are updated (defaults to true)"},"documentation":"Navigate the browser automatically when outputs are updated (defaults\nto true)"},"timeout":{"type":"number","description":"be a number","tags":{"description":"Time (in seconds) after which to exit if there are no active clients"},"documentation":"Time (in seconds) after which to exit if there are no active\nclients"}},"patternProperties":{},"closed":true,"$id":"project-preview"},"project-serve":{"_internalId":414,"type":"object","description":"be an object","properties":{"cmd":{"type":"string","description":"be a string","tags":{"description":"Serve project preview using the specified command.\nInterpolate the `--port` into the command using `{port}`.\n"},"documentation":"Serve project preview using the specified command. Interpolate the\n--port into the command using {port}."},"args":{"type":"string","description":"be a string","tags":{"description":"Additional command line arguments for preview command."},"documentation":"Additional command line arguments for preview command."},"env":{"_internalId":411,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Environment variables to set for preview command."},"documentation":"Environment variables to set for preview command."},"ready":{"type":"string","description":"be a string","tags":{"description":"Regular expression for detecting when the server is ready."},"documentation":"Regular expression for detecting when the server is ready."}},"patternProperties":{},"required":["cmd","ready"],"closed":true,"$id":"project-serve"},"publish":{"_internalId":425,"type":"object","description":"be an object","properties":{"netlify":{"_internalId":424,"type":"array","description":"be an array of values, where each element must be publish-record","items":{"_internalId":423,"type":"ref","$ref":"publish-record","description":"be publish-record"}}},"patternProperties":{},"closed":true,"tags":{"description":"Sites published from project"},"documentation":"Sites published from project","$id":"publish"},"publish-record":{"_internalId":432,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier for site"},"documentation":"Unique identifier for site"},"url":{"type":"string","description":"be a string","tags":{"description":"Published URL for site"},"documentation":"Published URL for site"}},"patternProperties":{},"closed":true,"$id":"publish-record"},"twitter-card-config":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"card-style":{"_internalId":437,"type":"enum","enum":["summary","summary_large_image"],"description":"be one of: `summary`, `summary_large_image`","completions":["summary","summary_large_image"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Card style","long":"Card style (`summary` or `summary_large_image`).\n\nIf this is not provided, the best style will automatically\nselected based upon other metadata. You can learn more about Twitter Card\nstyles [here](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards).\n"}},"documentation":"Card style"},"creator":{"type":"string","description":"be a string","tags":{"description":"`@username` of the content creator (must be a quoted string)"},"documentation":"@username of the content creator (must be a quoted\nstring)"},"site":{"type":"string","description":"be a string","tags":{"description":"`@username` of the website (must be a quoted string)"},"documentation":"@username of the website (must be a quoted string)"}},"patternProperties":{},"closed":true,"$id":"twitter-card-config"},"open-graph-config":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"locale":{"type":"string","description":"be a string","tags":{"description":"Locale of open graph metadata"},"documentation":"Locale of open graph metadata"},"site-name":{"type":"string","description":"be a string","tags":{"description":{"short":"Name that should be displayed for the overall site","long":"Name that should be displayed for the overall site. If not explicitly \nprovided in the `open-graph` metadata, Quarto will use the website or\nbook `title` by default.\n"}},"documentation":"Name that should be displayed for the overall site"}},"patternProperties":{},"closed":true,"$id":"open-graph-config"},"page-footer":{"_internalId":480,"type":"object","description":"be an object","properties":{"left":{"_internalId":458,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer left content"},"documentation":"Footer left content"},"right":{"_internalId":461,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer right content"},"documentation":"Footer right content"},"center":{"_internalId":464,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer center content"},"documentation":"Footer center content"},"border":{"_internalId":471,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Footer border (`true`, `false`, or a border color)"},"documentation":"Footer border (true, false, or a border\ncolor)"},"background":{"type":"string","description":"be a string","tags":{"description":"Footer background color"},"documentation":"Footer background color"},"foreground":{"type":"string","description":"be a string","tags":{"description":"Footer foreground color"},"documentation":"Footer foreground color"}},"patternProperties":{},"closed":true,"$id":"page-footer"},"base-website":{"_internalId":903,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Website title"},"documentation":"Website title"},"description":{"type":"string","description":"be a string","tags":{"description":"Website description"},"documentation":"Website description"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Base URL for published website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Base URL for website source code repository"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the target attribute for repo links"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Subdirectory of repository containing website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Branch of website source code (defaults to main)"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"URL to use for the ‘report an issue’ repository action."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Links to source repository actions"},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Enable Google Analytics for this website"},"google-analytics":{"_internalId":535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":534,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"Storage options for Google Analytics data"},"storage":{"_internalId":526,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Anonymize the user ip address."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The version number of Google Analytics to use."},"version":{"_internalId":533,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The Google tracking Id or measurement Id of this website."},"plausible-analytics":{"_internalId":545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":544,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Provides an announcement displayed at the top of the page."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"announcement":{"_internalId":575,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":574,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"Whether this announcement may be dismissed by the user."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The icon to display in the announcement"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The position of the announcement."},"position":{"_internalId":568,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"type":{"_internalId":573,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The content of the announcement"},"cookie-consent":{"_internalId":607,"type":"anyOf","anyOf":[{"_internalId":580,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":606,"type":"object","description":"be an object","properties":{"type":{"_internalId":587,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The style of the consent banner that is displayed"},"style":{"_internalId":590,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"palette":{"_internalId":593,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"The url to the website’s cookie or privacy policy."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Provide full text search for website"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"The type of consent that should be requested"},"search":{"_internalId":694,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":693,"type":"object","description":"be an object","properties":{"location":{"_internalId":616,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Type of search UI (overlay or textbox)"},"type":{"_internalId":619,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Number of matches to display (defaults to 20)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Matches after which to collapse additional results"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Provide button for copying search link"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"keyboard-shortcut":{"_internalId":641,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_internalId":640,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":651,"type":"anyOf","anyOf":[{"_internalId":648,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Use external Algolia search index"},"algolia":{"_internalId":692,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The unique ID used by Algolia to identify your application"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The Search-Only API key to use to connect to Algolia"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Enable tracking of Algolia analytics events"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Field that contains the URL of index entries"},"index-fields":{"_internalId":688,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the title of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the text of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the section of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true},"params":{"_internalId":691,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Top navigation options"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The name of the index to use when performing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Location for search widget (navbar or\nsidebar)"},"navbar":{"_internalId":748,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":747,"type":"object","description":"be an object","properties":{"title":{"_internalId":707,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo":{"_internalId":710,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"The navbar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"Include a search box in the navbar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Always show the navbar (keeping it pinned)."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"collapse-below":{"_internalId":727,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"List of items for the left side of the navbar."},"left":{"_internalId":733,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":732,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the right side of the navbar."},"right":{"_internalId":739,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":738,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"toggle-position":{"_internalId":744,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Side navigation options"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The navbar title. Uses the project title if none is specified."},"sidebar":{"_internalId":819,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":818,"type":"anyOf","anyOf":[{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":817,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The identifier for this sidebar."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert below each page’s body."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place above margin content (text or file path)"},"margin-header":{"_internalId":829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"margin-footer":{"_internalId":835,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":834,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Provide next and previous article links in footer"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide a ‘back to top’ navigation button"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Shared page footer"},"page-footer":{"_internalId":849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":848,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"comments":{"_internalId":858,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":866,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":865,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish twitter card metadata"},"twitter-card":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":873,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"A list of other links to appear below the TOC."},"other-links":{"_internalId":879,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of code links to appear with this document."},"code-links":{"_internalId":889,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":888,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of input documents that should be treated as drafts"},"drafts":{"_internalId":897,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":896,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"How to handle drafts that are encountered."},"draft-mode":{"_internalId":902,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book subtitle"}},"patternProperties":{},"closed":true,"$id":"base-website"},"book-schema":{"_internalId":903,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Description metadata for HTML version of book"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"The path to the favicon for this website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Base URL for published website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Base URL for website source code repository"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the target attribute for repo links"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Subdirectory of repository containing website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Branch of website source code (defaults to main)"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"URL to use for the ‘report an issue’ repository action."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Links to source repository actions"},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Enable Google Analytics for this website"},"google-analytics":{"_internalId":535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":534,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"Storage options for Google Analytics data"},"storage":{"_internalId":526,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Anonymize the user ip address."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The version number of Google Analytics to use."},"version":{"_internalId":533,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The Google tracking Id or measurement Id of this website."},"plausible-analytics":{"_internalId":545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":544,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Provides an announcement displayed at the top of the page."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"announcement":{"_internalId":575,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":574,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"Whether this announcement may be dismissed by the user."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The icon to display in the announcement"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The position of the announcement."},"position":{"_internalId":568,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"type":{"_internalId":573,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The content of the announcement"},"cookie-consent":{"_internalId":607,"type":"anyOf","anyOf":[{"_internalId":580,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":606,"type":"object","description":"be an object","properties":{"type":{"_internalId":587,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The style of the consent banner that is displayed"},"style":{"_internalId":590,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"palette":{"_internalId":593,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"The url to the website’s cookie or privacy policy."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Provide full text search for website"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"The type of consent that should be requested"},"search":{"_internalId":694,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":693,"type":"object","description":"be an object","properties":{"location":{"_internalId":616,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Type of search UI (overlay or textbox)"},"type":{"_internalId":619,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Number of matches to display (defaults to 20)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Matches after which to collapse additional results"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Provide button for copying search link"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"keyboard-shortcut":{"_internalId":641,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_internalId":640,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":651,"type":"anyOf","anyOf":[{"_internalId":648,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Use external Algolia search index"},"algolia":{"_internalId":692,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The unique ID used by Algolia to identify your application"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The Search-Only API key to use to connect to Algolia"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Enable tracking of Algolia analytics events"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Field that contains the URL of index entries"},"index-fields":{"_internalId":688,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the title of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the text of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the section of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true},"params":{"_internalId":691,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Top navigation options"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The name of the index to use when performing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Location for search widget (navbar or\nsidebar)"},"navbar":{"_internalId":748,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":747,"type":"object","description":"be an object","properties":{"title":{"_internalId":707,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo":{"_internalId":710,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"The navbar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"Include a search box in the navbar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Always show the navbar (keeping it pinned)."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"collapse-below":{"_internalId":727,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"List of items for the left side of the navbar."},"left":{"_internalId":733,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":732,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the right side of the navbar."},"right":{"_internalId":739,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":738,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"toggle-position":{"_internalId":744,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Side navigation options"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The navbar title. Uses the project title if none is specified."},"sidebar":{"_internalId":819,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":818,"type":"anyOf","anyOf":[{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":817,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The identifier for this sidebar."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert below each page’s body."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place above margin content (text or file path)"},"margin-header":{"_internalId":829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"margin-footer":{"_internalId":835,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":834,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Provide next and previous article links in footer"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide a ‘back to top’ navigation button"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Shared page footer"},"page-footer":{"_internalId":849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":848,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"comments":{"_internalId":858,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":866,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":865,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish twitter card metadata"},"twitter-card":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":873,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"A list of other links to appear below the TOC."},"other-links":{"_internalId":879,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of code links to appear with this document."},"code-links":{"_internalId":889,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":888,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of input documents that should be treated as drafts"},"drafts":{"_internalId":897,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":896,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"How to handle drafts that are encountered."},"draft-mode":{"_internalId":902,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"author":{"_internalId":922,"type":"anyOf","anyOf":[{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Format string for dates in the book"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book abstract"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book part and chapter files"},"chapters":{"_internalId":935,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book appendix files"},"appendices":{"_internalId":940,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book references file"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"sharing":{"_internalId":955,"type":"anyOf","anyOf":[{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":954,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":962,"type":"anyOf","anyOf":[{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"},{"_internalId":961,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":968,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":967,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"The Digital Object Identifier for this book."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"A url to the abstract for this item."}},"patternProperties":{},"closed":true,"$id":"book-schema"},"chapter-item":{"_internalId":990,"type":"anyOf","anyOf":[{"_internalId":978,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"_internalId":989,"type":"object","description":"be an object","properties":{"part":{"type":"string","description":"be a string","tags":{"description":"Part title or path to input file"},"documentation":"Part title or path to input file"},"chapters":{"_internalId":988,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":987,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Path to chapter input file"},"documentation":"Path to chapter input file"}},"patternProperties":{},"required":["part"]}],"description":"be at least one of: navigation-item, an object","$id":"chapter-item"},"chapter-list":{"_internalId":996,"type":"array","description":"be an array of values, where each element must be chapter-item","items":{"_internalId":995,"type":"ref","$ref":"chapter-item","description":"be chapter-item"},"$id":"chapter-list"},"other-links":{"_internalId":1012,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1011,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text for the link."},"documentation":"The text for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon name for the link."},"documentation":"The bootstrap icon name for the link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel attribute value for the link."},"documentation":"The rel attribute value for the link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target attribute value for the link."},"documentation":"The target attribute value for the link."}},"patternProperties":{},"required":["text","href"]},"$id":"other-links"},"crossref-labels-schema":{"type":"string","description":"be a string","completions":["alpha","arabic","roman"],"$id":"crossref-labels-schema"},"epub-contributor":{"_internalId":1032,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1031,"type":"anyOf","anyOf":[{"_internalId":1029,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true},{"_internalId":1030,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1029,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: a string, at least one of: an object, an array of values, where each element must be an object","$id":"epub-contributor"},"format-language":{"_internalId":1159,"type":"object","description":"be a format language description object","properties":{"toc-title-document":{"type":"string","description":"be a string"},"toc-title-website":{"type":"string","description":"be a string"},"related-formats-title":{"type":"string","description":"be a string"},"related-notebooks-title":{"type":"string","description":"be a string"},"callout-tip-title":{"type":"string","description":"be a string"},"callout-note-title":{"type":"string","description":"be a string"},"callout-warning-title":{"type":"string","description":"be a string"},"callout-important-title":{"type":"string","description":"be a string"},"callout-caution-title":{"type":"string","description":"be a string"},"section-title-abstract":{"type":"string","description":"be a string"},"section-title-footnotes":{"type":"string","description":"be a string"},"section-title-appendices":{"type":"string","description":"be a string"},"code-summary":{"type":"string","description":"be a string"},"code-tools-menu-caption":{"type":"string","description":"be a string"},"code-tools-show-all-code":{"type":"string","description":"be a string"},"code-tools-hide-all-code":{"type":"string","description":"be a string"},"code-tools-view-source":{"type":"string","description":"be a string"},"code-tools-source-code":{"type":"string","description":"be a string"},"search-no-results-text":{"type":"string","description":"be a string"},"copy-button-tooltip":{"type":"string","description":"be a string"},"copy-button-tooltip-success":{"type":"string","description":"be a string"},"repo-action-links-edit":{"type":"string","description":"be a string"},"repo-action-links-source":{"type":"string","description":"be a string"},"repo-action-links-issue":{"type":"string","description":"be a string"},"search-matching-documents-text":{"type":"string","description":"be a string"},"search-copy-link-title":{"type":"string","description":"be a string"},"search-hide-matches-text":{"type":"string","description":"be a string"},"search-more-match-text":{"type":"string","description":"be a string"},"search-more-matches-text":{"type":"string","description":"be a string"},"search-clear-button-title":{"type":"string","description":"be a string"},"search-text-placeholder":{"type":"string","description":"be a string"},"search-detached-cancel-button-title":{"type":"string","description":"be a string"},"search-submit-button-title":{"type":"string","description":"be a string"},"crossref-fig-title":{"type":"string","description":"be a string"},"crossref-tbl-title":{"type":"string","description":"be a string"},"crossref-lst-title":{"type":"string","description":"be a string"},"crossref-thm-title":{"type":"string","description":"be a string"},"crossref-lem-title":{"type":"string","description":"be a string"},"crossref-cor-title":{"type":"string","description":"be a string"},"crossref-prp-title":{"type":"string","description":"be a string"},"crossref-cnj-title":{"type":"string","description":"be a string"},"crossref-def-title":{"type":"string","description":"be a string"},"crossref-exm-title":{"type":"string","description":"be a string"},"crossref-exr-title":{"type":"string","description":"be a string"},"crossref-fig-prefix":{"type":"string","description":"be a string"},"crossref-tbl-prefix":{"type":"string","description":"be a string"},"crossref-lst-prefix":{"type":"string","description":"be a string"},"crossref-ch-prefix":{"type":"string","description":"be a string"},"crossref-apx-prefix":{"type":"string","description":"be a string"},"crossref-sec-prefix":{"type":"string","description":"be a string"},"crossref-eq-prefix":{"type":"string","description":"be a string"},"crossref-thm-prefix":{"type":"string","description":"be a string"},"crossref-lem-prefix":{"type":"string","description":"be a string"},"crossref-cor-prefix":{"type":"string","description":"be a string"},"crossref-prp-prefix":{"type":"string","description":"be a string"},"crossref-cnj-prefix":{"type":"string","description":"be a string"},"crossref-def-prefix":{"type":"string","description":"be a string"},"crossref-exm-prefix":{"type":"string","description":"be a string"},"crossref-exr-prefix":{"type":"string","description":"be a string"},"crossref-lof-title":{"type":"string","description":"be a string"},"crossref-lot-title":{"type":"string","description":"be a string"},"crossref-lol-title":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention toc-title-document,toc-title-website,related-formats-title,related-notebooks-title,callout-tip-title,callout-note-title,callout-warning-title,callout-important-title,callout-caution-title,section-title-abstract,section-title-footnotes,section-title-appendices,code-summary,code-tools-menu-caption,code-tools-show-all-code,code-tools-hide-all-code,code-tools-view-source,code-tools-source-code,search-no-results-text,copy-button-tooltip,copy-button-tooltip-success,repo-action-links-edit,repo-action-links-source,repo-action-links-issue,search-matching-documents-text,search-copy-link-title,search-hide-matches-text,search-more-match-text,search-more-matches-text,search-clear-button-title,search-text-placeholder,search-detached-cancel-button-title,search-submit-button-title,crossref-fig-title,crossref-tbl-title,crossref-lst-title,crossref-thm-title,crossref-lem-title,crossref-cor-title,crossref-prp-title,crossref-cnj-title,crossref-def-title,crossref-exm-title,crossref-exr-title,crossref-fig-prefix,crossref-tbl-prefix,crossref-lst-prefix,crossref-ch-prefix,crossref-apx-prefix,crossref-sec-prefix,crossref-eq-prefix,crossref-thm-prefix,crossref-lem-prefix,crossref-cor-prefix,crossref-prp-prefix,crossref-cnj-prefix,crossref-def-prefix,crossref-exm-prefix,crossref-exr-prefix,crossref-lof-title,crossref-lot-title,crossref-lol-title","type":"string","pattern":"(?!(^toc_title_document$|^tocTitleDocument$|^toc_title_website$|^tocTitleWebsite$|^related_formats_title$|^relatedFormatsTitle$|^related_notebooks_title$|^relatedNotebooksTitle$|^callout_tip_title$|^calloutTipTitle$|^callout_note_title$|^calloutNoteTitle$|^callout_warning_title$|^calloutWarningTitle$|^callout_important_title$|^calloutImportantTitle$|^callout_caution_title$|^calloutCautionTitle$|^section_title_abstract$|^sectionTitleAbstract$|^section_title_footnotes$|^sectionTitleFootnotes$|^section_title_appendices$|^sectionTitleAppendices$|^code_summary$|^codeSummary$|^code_tools_menu_caption$|^codeToolsMenuCaption$|^code_tools_show_all_code$|^codeToolsShowAllCode$|^code_tools_hide_all_code$|^codeToolsHideAllCode$|^code_tools_view_source$|^codeToolsViewSource$|^code_tools_source_code$|^codeToolsSourceCode$|^search_no_results_text$|^searchNoResultsText$|^copy_button_tooltip$|^copyButtonTooltip$|^copy_button_tooltip_success$|^copyButtonTooltipSuccess$|^repo_action_links_edit$|^repoActionLinksEdit$|^repo_action_links_source$|^repoActionLinksSource$|^repo_action_links_issue$|^repoActionLinksIssue$|^search_matching_documents_text$|^searchMatchingDocumentsText$|^search_copy_link_title$|^searchCopyLinkTitle$|^search_hide_matches_text$|^searchHideMatchesText$|^search_more_match_text$|^searchMoreMatchText$|^search_more_matches_text$|^searchMoreMatchesText$|^search_clear_button_title$|^searchClearButtonTitle$|^search_text_placeholder$|^searchTextPlaceholder$|^search_detached_cancel_button_title$|^searchDetachedCancelButtonTitle$|^search_submit_button_title$|^searchSubmitButtonTitle$|^crossref_fig_title$|^crossrefFigTitle$|^crossref_tbl_title$|^crossrefTblTitle$|^crossref_lst_title$|^crossrefLstTitle$|^crossref_thm_title$|^crossrefThmTitle$|^crossref_lem_title$|^crossrefLemTitle$|^crossref_cor_title$|^crossrefCorTitle$|^crossref_prp_title$|^crossrefPrpTitle$|^crossref_cnj_title$|^crossrefCnjTitle$|^crossref_def_title$|^crossrefDefTitle$|^crossref_exm_title$|^crossrefExmTitle$|^crossref_exr_title$|^crossrefExrTitle$|^crossref_fig_prefix$|^crossrefFigPrefix$|^crossref_tbl_prefix$|^crossrefTblPrefix$|^crossref_lst_prefix$|^crossrefLstPrefix$|^crossref_ch_prefix$|^crossrefChPrefix$|^crossref_apx_prefix$|^crossrefApxPrefix$|^crossref_sec_prefix$|^crossrefSecPrefix$|^crossref_eq_prefix$|^crossrefEqPrefix$|^crossref_thm_prefix$|^crossrefThmPrefix$|^crossref_lem_prefix$|^crossrefLemPrefix$|^crossref_cor_prefix$|^crossrefCorPrefix$|^crossref_prp_prefix$|^crossrefPrpPrefix$|^crossref_cnj_prefix$|^crossrefCnjPrefix$|^crossref_def_prefix$|^crossrefDefPrefix$|^crossref_exm_prefix$|^crossrefExmPrefix$|^crossref_exr_prefix$|^crossrefExrPrefix$|^crossref_lof_title$|^crossrefLofTitle$|^crossref_lot_title$|^crossrefLotTitle$|^crossref_lol_title$|^crossrefLolTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"format-language"},"website-about":{"_internalId":1189,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The target id for the about page.","long":"The target id of this about page. When the about page is rendered, it will \nplace read the contents of a `div` with this id into the about template that you \nhave selected (and replace the contents with the rendered about content).\n\nIf no such `div` is defined on the page, a `div` with this id will be created \nand appended to the end of the page.\n"}},"documentation":"The target id for the about page."},"template":{"_internalId":1171,"type":"anyOf","anyOf":[{"_internalId":1168,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, a string","tags":{"description":{"short":"The template to use to layout this about page.","long":"The template to use to layout this about page. Choose from:\n\n- `jolla`\n- `trestles`\n- `solana`\n- `marquee`\n- `broadside`\n"}},"documentation":"The template to use to layout this about page."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to the main image on the about page.","long":"The path to the main image on the about page. If not specified, \nthe `image` provided for the document itself will be used.\n"}},"documentation":"The path to the main image on the about page."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"The alt text for the main image on the about page."},"documentation":"The alt text for the main image on the about page."},"image-title":{"type":"string","description":"be a string","tags":{"description":"The title for the main image on the about page."},"documentation":"The title for the main image on the about page."},"image-width":{"type":"string","description":"be a string","tags":{"description":{"short":"A valid CSS width for the about page image.","long":"A valid CSS width for the about page image.\n"}},"documentation":"A valid CSS width for the about page image."},"image-shape":{"_internalId":1182,"type":"enum","enum":["rectangle","round","rounded"],"description":"be one of: `rectangle`, `round`, `rounded`","completions":["rectangle","round","rounded"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The shape of the image on the about page.","long":"The shape of the image on the about page.\n\n- `rectangle`\n- `round`\n- `rounded`\n"}},"documentation":"The shape of the image on the about page."},"links":{"_internalId":1188,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":1187,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}},"patternProperties":{},"required":["template"],"closed":true,"$id":"website-about"},"website-listing":{"_internalId":1344,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The id of this listing.","long":"The id of this listing. When the listing is rendered, it will \nplace the contents into a `div` with this id. If no such `div` is defined on the \npage, a `div` with this id will be created and appended to the end of the page.\n\nIf no `id` is provided for a listing, Quarto will synthesize one when rendering the page.\n"}},"documentation":"The id of this listing."},"type":{"_internalId":1196,"type":"enum","enum":["default","table","grid","custom"],"description":"be one of: `default`, `table`, `grid`, `custom`","completions":["default","table","grid","custom"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of listing to create.","long":"The type of listing to create. Choose one of:\n\n- `default`: A blog style list of items\n- `table`: A table of items\n- `grid`: A grid of item cards\n- `custom`: A custom template, provided by the `template` field\n"}},"documentation":"The type of listing to create."},"contents":{"_internalId":1208,"type":"anyOf","anyOf":[{"_internalId":1206,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1205,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"},{"_internalId":1207,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing-contents-object","items":{"_internalId":1206,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1205,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"}}],"description":"be at least one of: at least one of: a string, website-listing-contents-object, an array of values, where each element must be at least one of: a string, website-listing-contents-object","tags":{"complete-from":["anyOf",0],"description":"The files or path globs of Quarto documents or YAML files that should be included in the listing."},"documentation":"The files or path globs of Quarto documents or YAML files that should\nbe included in the listing."},"sort":{"_internalId":1219,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1218,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1217,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Sort items in the listing by these fields.","long":"Sort items in the listing by these fields. The sort key is made up of a \nfield name followed by a direction `asc` or `desc`.\n\nFor example:\n`date asc`\n\nUse `sort:false` to use the unsorted original order of items.\n"}},"documentation":"Sort items in the listing by these fields."},"max-items":{"type":"number","description":"be a number","tags":{"description":"The maximum number of items to include in this listing."},"documentation":"The maximum number of items to include in this listing."},"page-size":{"type":"number","description":"be a number","tags":{"description":"The number of items to display on a page."},"documentation":"The number of items to display on a page."},"sort-ui":{"_internalId":1233,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1232,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the sorting control for the listing.","long":"Shows or hides the sorting control for the listing. To control the \nfields that will be displayed in the sorting control, provide a list\nof field names.\n"}},"documentation":"Shows or hides the sorting control for the listing."},"filter-ui":{"_internalId":1243,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1242,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the filtering control for the listing.","long":"Shows or hides the filtering control for the listing. To control the \nfields that will be used to filter the listing, provide a list\nof field names. By default all fields of the listing will be used\nwhen filtering.\n"}},"documentation":"Shows or hides the filtering control for the listing."},"categories":{"_internalId":1251,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1250,"type":"enum","enum":["numbered","unnumbered","cloud"],"description":"be one of: `numbered`, `unnumbered`, `cloud`","completions":["numbered","unnumbered","cloud"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `numbered`, `unnumbered`, `cloud`","tags":{"description":{"short":"Display item categories from this listing in the margin of the page.","long":"Display item categories from this listing in the margin of the page.\n\n - `numbered`: Category list with number of items\n - `unnumbered`: Category list\n - `cloud`: Word cloud style categories\n"}},"documentation":"Display item categories from this listing in the margin of the\npage."},"feed":{"_internalId":1280,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1279,"type":"object","description":"be an object","properties":{"items":{"type":"number","description":"be a number","tags":{"description":"The number of items to include in your feed. Defaults to 20.\n"},"documentation":"The number of items to include in your feed. Defaults to 20."},"type":{"_internalId":1262,"type":"enum","enum":["full","partial","metadata"],"description":"be one of: `full`, `partial`, `metadata`","completions":["full","partial","metadata"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Whether to include full or partial content in the feed.","long":"Whether to include full or partial content in the feed.\n\n- `full` (default): Include the complete content of the document in the feed.\n- `partial`: Include only the first paragraph of the document in the feed.\n- `metadata`: Use only the title, description, and other document metadata in the feed.\n"}},"documentation":"Whether to include full or partial content in the feed."},"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title for this feed.","long":"The title for this feed. Defaults to the site title provided the Quarto project.\n"}},"documentation":"The title for this feed."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to an image for this feed.","long":"The path to an image for this feed. If not specified, the image for the page the listing \nappears on will be used, otherwise an image will be used if specified for the site \nin the Quarto project.\n"}},"documentation":"The path to an image for this feed."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"The description of this feed.","long":"The description of this feed. If not specified, the description for the page the \nlisting appears on will be used, otherwise the description \nof the site will be used if specified in the Quarto project.\n"}},"documentation":"The description of this feed."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the feed.","long":"The language of the feed. Omitted if not specified. \nSee [https://www.rssboard.org/rss-language-codes](https://www.rssboard.org/rss-language-codes)\nfor a list of valid language codes.\n"}},"documentation":"The language of the feed."},"categories":{"_internalId":1276,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"},{"_internalId":1275,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"xml-stylesheet":{"type":"string","description":"be a string","tags":{"description":"The path to an XML stylesheet (XSL file) used to style the RSS feed."},"documentation":"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Enables an RSS feed for the listing."},"documentation":"Enables an RSS feed for the listing."},"date-format":{"type":"string","description":"be a string","tags":{"description":{"short":"The date format to use when displaying dates (e.g. d-M-yyy).","long":"The date format to use when displaying dates (e.g. d-M-yyy). \nLearn more about supported date formatting values [here](https://quarto.org/docs/reference/dates.html).\n"}},"documentation":"The date format to use when displaying dates (e.g. d-M-yyy)."},"max-description-length":{"type":"number","description":"be a number","tags":{"description":{"short":"The maximum length (in characters) of the description displayed in the listing.","long":"The maximum length (in characters) of the description displayed in the listing.\nDefaults to 175.\n"}},"documentation":"The maximum length (in characters) of the description displayed in\nthe listing."},"image-placeholder":{"type":"string","description":"be a string","tags":{"description":"The default image to use if an item in the listing doesn't have an image."},"documentation":"The default image to use if an item in the listing doesn’t have an\nimage."},"image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, images in the listing will be loaded immediately. If true, images will be loaded as they come into view."},"documentation":"If false, images in the listing will be loaded immediately. If true,\nimages will be loaded as they come into view."},"image-align":{"_internalId":1291,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"In `default` type listings, whether to place the image on the right or left side of the post content (`left` or `right`)."},"documentation":"In default type listings, whether to place the image on\nthe right or left side of the post content (left or\nright)."},"image-height":{"type":"string","description":"be a string","tags":{"description":{"short":"The height of the image being displayed.","long":"The height of the image being displayed (a CSS height string).\n\nThe width is automatically determined and the image will fill the rectangle without scaling (cropped to fill).\n"}},"documentation":"The height of the image being displayed."},"grid-columns":{"type":"number","description":"be a number","tags":{"description":{"short":"In `grid` type listings, the number of columns in the grid display.","long":"In grid type listings, the number of columns in the grid display.\nDefaults to 3.\n"}},"documentation":"In grid type listings, the number of columns in the grid\ndisplay."},"grid-item-border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, whether to display a border around the item card.","long":"In grid type listings, whether to display a border around the item card. Defaults to `true`.\n"}},"documentation":"In grid type listings, whether to display a border\naround the item card."},"grid-item-align":{"_internalId":1300,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, the alignment of the content within the card.","long":"In grid type listings, the alignment of the content within the card (`left` (default), `right`, or `center`).\n"}},"documentation":"In grid type listings, the alignment of the content\nwithin the card."},"table-striped":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, display the table rows with alternating background colors.","long":"In table type listings, display the table rows with alternating background colors.\nDefaults to `false`.\n"}},"documentation":"In table type listings, display the table rows with\nalternating background colors."},"table-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, highlight rows of the table when the user hovers the mouse over them.","long":"In table type listings, highlight rows of the table when the user hovers the mouse over them.\nDefaults to false.\n"}},"documentation":"In table type listings, highlight rows of the table when\nthe user hovers the mouse over them."},"template":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a custom listing template.","long":"The path to a custom listing template.\n"}},"documentation":"The path to a custom listing template."},"template-params":{"_internalId":1309,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Parameters that are passed to the custom template."},"documentation":"Parameters that are passed to the custom template."},"fields":{"_internalId":1315,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"The list of fields to include in this listing","long":"The list of fields to include in this listing.\n"}},"documentation":"The list of fields to include in this listing"},"field-display-names":{"_internalId":1318,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"A mapping of display names for listing fields.","long":"A mapping that provides display names for specific fields. For example, to display the title column as ‘Report’ in a table listing you would write:\n\n```yaml\nlisting:\n field-display-names:\n title: \"Report\"\n```\n"}},"documentation":"A mapping of display names for listing fields."},"field-types":{"_internalId":1321,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"Provides the date type for the field of a listing item.","long":"Provides the date type for the field of a listing item. Unknown fields are treated\nas strings unless a type is provided. Valid types are `date`, `number`.\n"}},"documentation":"Provides the date type for the field of a listing item."},"field-links":{"_internalId":1326,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"This list of fields to display as links in a table listing.","long":"The list of fields to display as hyperlinks to the source document \nwhen the listing type is a table. By default, only the `title` or \n`filename` is displayed as a link.\n"}},"documentation":"This list of fields to display as links in a table listing."},"field-required":{"_internalId":1331,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"Fields that items in this listing must have populated.","long":"Fields that items in this listing must have populated.\nIf a listing is rendered and one more items in this listing \nis missing a required field, an error will occur and the render will.\n"}},"documentation":"Fields that items in this listing must have populated."},"include":{"_internalId":1337,"type":"anyOf","anyOf":[{"_internalId":1334,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1336,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1334,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be included in the listing."},"documentation":"Items with matching field values will be included in the listing."},"exclude":{"_internalId":1343,"type":"anyOf","anyOf":[{"_internalId":1340,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1342,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1340,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be excluded from the listing."},"documentation":"Items with matching field values will be excluded from the\nlisting."}},"patternProperties":{},"closed":true,"$id":"website-listing"},"website-listing-contents-object":{"_internalId":1359,"type":"object","description":"be an object","properties":{"author":{"_internalId":1352,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1351,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"subtitle":{"type":"string","description":"be a string"}},"patternProperties":{},"$id":"website-listing-contents-object"},"csl-date":{"_internalId":1379,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1369,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":1368,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}},{"_internalId":1378,"type":"object","description":"be an object","properties":{"year":{"type":"number","description":"be a number","tags":{"description":"The year"},"documentation":"The year"},"month":{"type":"number","description":"be a number","tags":{"description":"The month"},"documentation":"The month"},"day":{"type":"number","description":"be a number","tags":{"description":"The day"},"documentation":"The day"}},"patternProperties":{}}],"description":"be at least one of: a string, at least one of: a number, an array of values, where each element must be a number, an object","$id":"csl-date"},"csl-person":{"_internalId":1399,"type":"anyOf","anyOf":[{"_internalId":1387,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1386,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":1398,"type":"anyOf","anyOf":[{"_internalId":1396,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":1397,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1396,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: an object, an array of values, where each element must be an object","$id":"csl-person"},"csl-number":{"_internalId":1406,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"csl-number"},"csl-item-shared":{"_internalId":1704,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Date the item has been accessed."},"accessed":{"_internalId":1413,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Archive storing the item"},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Collection the item is part of within an archive."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Geographic location of the archive."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Date the item was initially available"},"available-date":{"_internalId":1436,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Call number (to locate the item in a library)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chair":{"_internalId":1441,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"chapter-number":{"_internalId":1444,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"citation-number":{"_internalId":1453,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book).","completions":[]},"collection-editor":{"_internalId":1456,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-number":{"_internalId":1459,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"compiler":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-author":{"_internalId":1470,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Title of the container holding the item."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Short/abbreviated form of container-title;"},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography.","completions":[]},"contributor":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"curator":{"_internalId":1480,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Director (e.g. of a film)."},"director":{"_internalId":1485,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1494,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"The editor of the item."},"editor":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editorial-director":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Combined editor and translator of a work."},"editor-translator":{"_internalId":1503,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Date the event related to an item took place."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1510,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Executive producer of the item (e.g. of a television series)."},"executive-producer":{"_internalId":1517,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"first-reference-note-number":{"_internalId":1522,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"A url to the full text for this item."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Type, class, or subtype of the item"},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Guest (e.g. on a TV show or podcast)."},"guest":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"host":{"_internalId":1532,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"A value which uniquely identifies this item."},"id":{"_internalId":1539,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"illustrator":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1545,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Serial Number."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Issue number of the item or container holding the item"},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1560,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Date the item was issued/published."},"issued":{"_internalId":1563,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The language of the item (used only for citation of the item)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The license information applicable to an item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"A cite-specific pinpointer within the item."},"locator":{"_internalId":1574,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Narrator (e.g. of an audio book)."},"narrator":{"_internalId":1579,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Number identifying the item (e.g. a report number)."},"number":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of pages of the cited item."},"number-of-pages":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"number-of-volumes":{"_internalId":1590,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"organizer":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"The original creator of a work."},"original-author":{"_internalId":1596,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Issue date of the original version."},"original-date":{"_internalId":1599,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-first":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-number":{"_internalId":1617,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Title of the specific part of an item being cited."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A url to the pdf for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"performer":{"_internalId":1624,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"PubMed Central reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Printing number of the item or container holding the item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"producer":{"_internalId":1642,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"A public url for this item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The publisher of the item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The geographic location of the publisher."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Recipient (e.g. of a letter)."},"recipient":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Author of the item reviewed by the current item."},"reviewed-author":{"_internalId":1654,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Title of the item reviewed by the current item."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Scale of e.g. a map or model."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"script-writer":{"_internalId":1663,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"section":{"_internalId":1666,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Creator of a series (e.g. of a television series)."},"series-creator":{"_internalId":1669,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"submitted":{"_internalId":1676,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"supplement-number":{"_internalId":1679,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Short/abbreviated form oftitle."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Translator","completions":[]},"translator":{"_internalId":1684,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"type":{"_internalId":1687,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume":{"_internalId":1699,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Manuscript configuration"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention abstract-url,accessed,annote,archive,archive-collection,archive_collection,archive-location,archive_location,archive-place,authority,available-date,call-number,chair,chapter-number,citation-key,citation-label,citation-number,collection-editor,collection-number,collection-title,compiler,composer,container-author,container-title,container-title-short,contributor,curator,dimensions,director,division,DOI,edition,editor,editorial-director,editor-translator,event,event-date,event-title,event-place,executive-producer,first-reference-note-number,fulltext-url,genre,guest,host,id,illustrator,interviewer,isbn,ISBN,issn,ISSN,issue,issued,jurisdiction,keyword,language,license,locator,medium,narrator,note,number,number-of-pages,number-of-volumes,organizer,original-author,original-date,original-publisher,original-publisher-place,original-title,page,page-first,page-last,part-number,part-title,pdf-url,performer,pmcid,PMCID,pmid,PMID,printing-number,producer,public-url,publisher,publisher-place,recipient,reviewed-author,reviewed-genre,reviewed-title,scale,script-writer,section,series-creator,source,status,submitted,supplement-number,title-short,translator,type,url,URL,version,volume,volume-title,year-suffix","type":"string","pattern":"(?!(^abstract_url$|^abstractUrl$|^archiveCollection$|^archiveCollection$|^archiveLocation$|^archiveLocation$|^archive_place$|^archivePlace$|^available_date$|^availableDate$|^call_number$|^callNumber$|^chapter_number$|^chapterNumber$|^citation_key$|^citationKey$|^citation_label$|^citationLabel$|^citation_number$|^citationNumber$|^collection_editor$|^collectionEditor$|^collection_number$|^collectionNumber$|^collection_title$|^collectionTitle$|^container_author$|^containerAuthor$|^container_title$|^containerTitle$|^container_title_short$|^containerTitleShort$|^doi$|^doi$|^editorial_director$|^editorialDirector$|^editor_translator$|^editorTranslator$|^event_date$|^eventDate$|^event_title$|^eventTitle$|^event_place$|^eventPlace$|^executive_producer$|^executiveProducer$|^first_reference_note_number$|^firstReferenceNoteNumber$|^fulltext_url$|^fulltextUrl$|^number_of_pages$|^numberOfPages$|^number_of_volumes$|^numberOfVolumes$|^original_author$|^originalAuthor$|^original_date$|^originalDate$|^original_publisher$|^originalPublisher$|^original_publisher_place$|^originalPublisherPlace$|^original_title$|^originalTitle$|^page_first$|^pageFirst$|^page_last$|^pageLast$|^part_number$|^partNumber$|^part_title$|^partTitle$|^pdf_url$|^pdfUrl$|^printing_number$|^printingNumber$|^public_url$|^publicUrl$|^publisher_place$|^publisherPlace$|^reviewed_author$|^reviewedAuthor$|^reviewed_genre$|^reviewedGenre$|^reviewed_title$|^reviewedTitle$|^script_writer$|^scriptWriter$|^series_creator$|^seriesCreator$|^supplement_number$|^supplementNumber$|^title_short$|^titleShort$|^volume_title$|^volumeTitle$|^year_suffix$|^yearSuffix$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item-shared"},"csl-item":{"_internalId":1704,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Date the item has been accessed."},"accessed":{"_internalId":1413,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Archive storing the item"},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Collection the item is part of within an archive."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Geographic location of the archive."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Date the item was initially available"},"available-date":{"_internalId":1436,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Call number (to locate the item in a library)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chair":{"_internalId":1441,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"chapter-number":{"_internalId":1444,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"citation-number":{"_internalId":1453,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book).","completions":[]},"collection-editor":{"_internalId":1456,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-number":{"_internalId":1459,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"compiler":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-author":{"_internalId":1470,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Title of the container holding the item."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Short/abbreviated form of container-title;"},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography.","completions":[]},"contributor":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"curator":{"_internalId":1480,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Director (e.g. of a film)."},"director":{"_internalId":1485,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1494,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"The editor of the item."},"editor":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editorial-director":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Combined editor and translator of a work."},"editor-translator":{"_internalId":1503,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Date the event related to an item took place."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1510,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Executive producer of the item (e.g. of a television series)."},"executive-producer":{"_internalId":1517,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"first-reference-note-number":{"_internalId":1522,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"A url to the full text for this item."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Type, class, or subtype of the item"},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Guest (e.g. on a TV show or podcast)."},"guest":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"host":{"_internalId":1532,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"A value which uniquely identifies this item."},"id":{"_internalId":1724,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1545,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Serial Number."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Issue number of the item or container holding the item"},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1560,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Date the item was issued/published."},"issued":{"_internalId":1563,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The language of the item (used only for citation of the item)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The license information applicable to an item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"A cite-specific pinpointer within the item."},"locator":{"_internalId":1574,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Narrator (e.g. of an audio book)."},"narrator":{"_internalId":1579,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Number identifying the item (e.g. a report number)."},"number":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of pages of the cited item."},"number-of-pages":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"number-of-volumes":{"_internalId":1590,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"organizer":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"The original creator of a work."},"original-author":{"_internalId":1596,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Issue date of the original version."},"original-date":{"_internalId":1599,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-first":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-number":{"_internalId":1617,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Title of the specific part of an item being cited."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A url to the pdf for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"performer":{"_internalId":1624,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"PubMed Central reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Printing number of the item or container holding the item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"producer":{"_internalId":1642,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"A public url for this item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The publisher of the item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The geographic location of the publisher."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Recipient (e.g. of a letter)."},"recipient":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Author of the item reviewed by the current item."},"reviewed-author":{"_internalId":1654,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Title of the item reviewed by the current item."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Scale of e.g. a map or model."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"script-writer":{"_internalId":1663,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"section":{"_internalId":1666,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Creator of a series (e.g. of a television series)."},"series-creator":{"_internalId":1669,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"submitted":{"_internalId":1676,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"supplement-number":{"_internalId":1679,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Short/abbreviated form oftitle."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Translator","completions":[]},"translator":{"_internalId":1684,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"type":{"_internalId":1687,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume":{"_internalId":1699,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Manuscript configuration"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1711,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item"},"citation-item":{"_internalId":1704,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Date the item has been accessed."},"accessed":{"_internalId":1413,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Archive storing the item"},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Collection the item is part of within an archive."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Geographic location of the archive."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Date the item was initially available"},"available-date":{"_internalId":1436,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Call number (to locate the item in a library)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chair":{"_internalId":1441,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"chapter-number":{"_internalId":1444,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"citation-number":{"_internalId":1453,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book).","completions":[]},"collection-editor":{"_internalId":1456,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-number":{"_internalId":1459,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"compiler":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-author":{"_internalId":1470,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Title of the container holding the item."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Short/abbreviated form of container-title;"},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography.","completions":[]},"contributor":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"curator":{"_internalId":1480,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Director (e.g. of a film)."},"director":{"_internalId":1485,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1494,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"The editor of the item."},"editor":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editorial-director":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Combined editor and translator of a work."},"editor-translator":{"_internalId":1503,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Date the event related to an item took place."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1510,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Executive producer of the item (e.g. of a television series)."},"executive-producer":{"_internalId":1517,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"first-reference-note-number":{"_internalId":1522,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"A url to the full text for this item."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Type, class, or subtype of the item"},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Guest (e.g. on a TV show or podcast)."},"guest":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"host":{"_internalId":1532,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"A value which uniquely identifies this item."},"id":{"_internalId":1724,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1545,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Serial Number."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Issue number of the item or container holding the item"},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1560,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Date the item was issued/published."},"issued":{"_internalId":1563,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The language of the item (used only for citation of the item)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The license information applicable to an item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"A cite-specific pinpointer within the item."},"locator":{"_internalId":1574,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Narrator (e.g. of an audio book)."},"narrator":{"_internalId":1579,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Number identifying the item (e.g. a report number)."},"number":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of pages of the cited item."},"number-of-pages":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"number-of-volumes":{"_internalId":1590,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"organizer":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"The original creator of a work."},"original-author":{"_internalId":1596,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Issue date of the original version."},"original-date":{"_internalId":1599,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-first":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-number":{"_internalId":1617,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Title of the specific part of an item being cited."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A url to the pdf for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"performer":{"_internalId":1624,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"PubMed Central reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Printing number of the item or container holding the item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"producer":{"_internalId":1642,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"A public url for this item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The publisher of the item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The geographic location of the publisher."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Recipient (e.g. of a letter)."},"recipient":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Author of the item reviewed by the current item."},"reviewed-author":{"_internalId":1654,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Title of the item reviewed by the current item."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Scale of e.g. a map or model."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"script-writer":{"_internalId":1663,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"section":{"_internalId":1666,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Creator of a series (e.g. of a television series)."},"series-creator":{"_internalId":1669,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"submitted":{"_internalId":1676,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"supplement-number":{"_internalId":1679,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Short/abbreviated form oftitle."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Translator","completions":[]},"translator":{"_internalId":1684,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"type":{"_internalId":1687,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume":{"_internalId":1699,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Manuscript configuration"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1711,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."},"article-id":{"_internalId":1745,"type":"anyOf","anyOf":[{"_internalId":1743,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1742,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1744,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1743,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1742,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"The unique identifier for this article."},"documentation":"The unique identifier for this article."},"elocation-id":{"type":"string","description":"be a string","tags":{"description":"Bibliographic identifier for a document that does not have traditional printed page numbers."},"documentation":"Bibliographic identifier for a document that does not have\ntraditional printed page numbers."},"eissn":{"type":"string","description":"be a string","tags":{"description":"Electronic International Standard Serial Number."},"documentation":"Electronic International Standard Serial Number."},"pissn":{"type":"string","description":"be a string","tags":{"description":"Print International Standard Serial Number."},"documentation":"Print International Standard Serial Number."},"art-access-id":{"type":"string","description":"be a string","tags":{"description":"Generic article accession identifier."},"documentation":"Generic article accession identifier."},"publisher-location":{"type":"string","description":"be a string","tags":{"description":"The location of the publisher of this item."},"documentation":"The location of the publisher of this item."},"subject":{"type":"string","description":"be a string","tags":{"description":"The name of a subject or topic describing the article."},"documentation":"The name of a subject or topic describing the article."},"categories":{"_internalId":1763,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."},{"_internalId":1762,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"container-id":{"_internalId":1779,"type":"anyOf","anyOf":[{"_internalId":1777,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1776,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1778,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1777,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1776,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":{"short":"External identifier of a publication or journal.","long":"External identifier, typically assigned to a journal by \na publisher, archive, or library to provide a unique identifier for \nthe journal or publication.\n"}},"documentation":"External identifier of a publication or journal."},"jats-type":{"type":"string","description":"be a string","tags":{"description":"The type used for the JATS `article` tag."},"documentation":"The type used for the JATS article tag."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"citation-item"},"smart-include":{"_internalId":1797,"type":"anyOf","anyOf":[{"_internalId":1791,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"Textual content to add to includes"},"documentation":"Textual content to add to includes"}},"patternProperties":{},"required":["text"],"closed":true},{"_internalId":1796,"type":"object","description":"be an object","properties":{"file":{"type":"string","description":"be a string","tags":{"description":"Name of file with content to add to includes"},"documentation":"Name of file with content to add to includes"}},"patternProperties":{},"required":["file"],"closed":true}],"description":"be at least one of: an object, an object","$id":"smart-include"},"semver":{"_internalId":1800,"type":"string","pattern":"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$","description":"be a string that satisfies regex \"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$\"","$id":"semver","tags":{"description":"Version number according to Semantic Versioning"},"documentation":"Version number according to Semantic Versioning"},"quarto-date":{"_internalId":1812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1811,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string"},"value":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"],"closed":true}],"description":"be at least one of: a string, an object","$id":"quarto-date"},"project-profile":{"_internalId":1832,"type":"object","description":"be an object","properties":{"default":{"_internalId":1822,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1821,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Default profile to apply if QUARTO_PROFILE is not defined.\n"},"documentation":"Default profile to apply if QUARTO_PROFILE is not defined."},"group":{"_internalId":1831,"type":"anyOf","anyOf":[{"_internalId":1829,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":1830,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":1829,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}}],"description":"be at least one of: an array of values, where each element must be a string, an array of values, where each element must be an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Define a profile group for which at least one profile is always active.\n"},"documentation":"Define a profile group for which at least one profile is always\nactive."}},"patternProperties":{},"closed":true,"$id":"project-profile","tags":{"description":"Specify a default profile and profile groups"},"documentation":"Specify a default profile and profile groups"},"bad-parse-schema":{"_internalId":1840,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":1839,"type":"string","pattern":"^[^\\s]+$","description":"be a string that satisfies regex \"^[^\\s]+$\""},"$id":"bad-parse-schema"},"quarto-dev-schema":{"_internalId":1889,"type":"object","description":"be an object","properties":{"_quarto":{"_internalId":1888,"type":"object","description":"be an object","properties":{"trace-filters":{"type":"string","description":"be a string"},"tests":{"_internalId":1887,"type":"object","description":"be an object","properties":{"run":{"_internalId":1886,"type":"object","description":"be an object","properties":{"ci":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Run tests on CI (true = run, false = skip)"},"documentation":"Run tests on CI (true = run, false = skip)"},"skip":{"_internalId":1861,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Skip test unconditionally (true = skip with default message, string = skip with custom message)"},"documentation":"Skip test unconditionally (true = skip with default message, string =\nskip with custom message)"},"os":{"_internalId":1873,"type":"anyOf","anyOf":[{"_internalId":1866,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1872,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1871,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Run tests ONLY on these platforms (whitelist)"},"documentation":"Run tests ONLY on these platforms (whitelist)"},"not_os":{"_internalId":1885,"type":"anyOf","anyOf":[{"_internalId":1878,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1884,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1883,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Don't run tests on these platforms (blacklist)"},"documentation":"Don’t run tests on these platforms (blacklist)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention ci,skip,os,not_os","type":"string","pattern":"(?!(^not-os$|^notOs$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":"Control when tests should run"},"documentation":"Control when tests should run"}},"patternProperties":{}}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention trace-filters,tests","type":"string","pattern":"(?!(^trace_filters$|^traceFilters$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}},"patternProperties":{},"$id":"quarto-dev-schema"},"notebook-view-schema":{"_internalId":1907,"type":"object","description":"be an object","properties":{"notebook":{"type":"string","description":"be a string","tags":{"description":"The path to the locally referenced notebook."},"documentation":"The path to the locally referenced notebook."},"title":{"_internalId":1902,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The title of the notebook when viewed."},"documentation":"The title of the notebook when viewed."},"url":{"type":"string","description":"be a string","tags":{"description":"The url to use when viewing this notebook."},"documentation":"The url to use when viewing this notebook."},"download-url":{"type":"string","description":"be a string","tags":{"description":"The url to use when downloading the notebook from the preview"},"documentation":"The url to use when downloading the notebook from the preview"}},"patternProperties":{},"required":["notebook"],"propertyNames":{"errorMessage":"property ${value} does not match case convention notebook,title,url,download-url","type":"string","pattern":"(?!(^download_url$|^downloadUrl$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"notebook-view-schema"},"code-links-schema":{"_internalId":1937,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1936,"type":"anyOf","anyOf":[{"_internalId":1934,"type":"anyOf","anyOf":[{"_internalId":1930,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1933,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"},{"_internalId":1935,"type":"array","description":"be an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","items":{"_internalId":1934,"type":"anyOf","anyOf":[{"_internalId":1930,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1933,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"}}],"description":"be at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","$id":"code-links-schema"},"manuscript-schema":{"_internalId":1985,"type":"object","description":"be an object","properties":{"article":{"type":"string","description":"be a string","tags":{"description":"The input document that will serve as the root document for this manuscript"},"documentation":"The input document that will serve as the root document for this\nmanuscript"},"code-links":{"_internalId":1948,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema","tags":{"description":"Code links to display for this manuscript."},"documentation":"Code links to display for this manuscript."},"manuscript-url":{"type":"string","description":"be a string","tags":{"description":"The deployed url for this manuscript"},"documentation":"The deployed url for this manuscript"},"meca-bundle":{"_internalId":1957,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Whether to generate a MECA bundle for this manuscript"},"documentation":"Whether to generate a MECA bundle for this manuscript"},"notebooks":{"_internalId":1968,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":1967,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1966,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}},"resources":{"_internalId":1976,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":1975,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"environment":{"_internalId":1984,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},{"_internalId":1983,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true,"$id":"manuscript-schema"},"brand-meta":{"_internalId":2022,"type":"object","description":"be an object","properties":{"name":{"_internalId":1999,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1998,"type":"object","description":"be an object","properties":{"full":{"type":"string","description":"be a string","tags":{"description":"The full, official or legal name of the company or brand."},"documentation":"The full, official or legal name of the company or brand."},"short":{"type":"string","description":"be a string","tags":{"description":"The short, informal, or common name of the company or brand."},"documentation":"The short, informal, or common name of the company or brand."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The brand name."},"documentation":"The brand name."},"link":{"_internalId":2021,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2020,"type":"object","description":"be an object","properties":{"home":{"type":"string","description":"be a string","tags":{"description":"The brand's home page or website."},"documentation":"The brand’s home page or website."},"mastodon":{"type":"string","description":"be a string","tags":{"description":"The brand's Mastodon URL."},"documentation":"The brand’s Mastodon URL."},"bluesky":{"type":"string","description":"be a string","tags":{"description":"The brand's Bluesky URL."},"documentation":"The brand’s Bluesky URL."},"github":{"type":"string","description":"be a string","tags":{"description":"The brand's GitHub URL."},"documentation":"The brand’s GitHub URL."},"linkedin":{"type":"string","description":"be a string","tags":{"description":"The brand's LinkedIn URL."},"documentation":"The brand’s LinkedIn URL."},"twitter":{"type":"string","description":"be a string","tags":{"description":"The brand's Twitter URL."},"documentation":"The brand’s Twitter URL."},"facebook":{"type":"string","description":"be a string","tags":{"description":"The brand's Facebook URL."},"documentation":"The brand’s Facebook URL."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Important links for the brand, including social media links. If a single string, it is the brand's home page or website. Additional fields are allowed for internal use.\n"},"documentation":"Important links for the brand, including social media links. If a\nsingle string, it is the brand’s home page or website. Additional fields\nare allowed for internal use."}},"patternProperties":{},"$id":"brand-meta","tags":{"description":"Metadata for a brand, including the brand name and important links.\n"},"documentation":"Metadata for a brand, including the brand name and important\nlinks."},"brand-string-light-dark":{"_internalId":2038,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2037,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-string-light-dark"},"brand-logo-explicit-resource":{"_internalId":2047,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"closed":true,"$id":"brand-logo-explicit-resource"},"brand-logo-resource":{"_internalId":2055,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2054,"type":"ref","$ref":"brand-logo-explicit-resource","description":"be brand-logo-explicit-resource"}],"description":"be at least one of: a string, brand-logo-explicit-resource","$id":"brand-logo-resource"},"brand-logo-single":{"_internalId":2080,"type":"object","description":"be an object","properties":{"images":{"_internalId":2067,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2066,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's small-sized logo or icon.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon."},"medium":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's medium-sized logo.\n"},"documentation":"A link or path to the brand’s medium-sized logo."},"large":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's large- or full-sized logo.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo."}},"patternProperties":{},"closed":true,"$id":"brand-logo-single","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-logo-unified":{"_internalId":2108,"type":"object","description":"be an object","properties":{"images":{"_internalId":2092,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2091,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"_internalId":2097,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's small-sized logo or icon, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon, or a link or\npath to both the light and dark versions."},"medium":{"_internalId":2102,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's medium-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s medium-sized logo, or a link or path to\nboth the light and dark versions."},"large":{"_internalId":2107,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's large- or full-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo, or a link or\npath to both the light and dark versions."}},"patternProperties":{},"closed":true,"$id":"brand-logo-unified","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-named-logo":{"_internalId":2111,"type":"enum","enum":["small","medium","large"],"description":"be one of: `small`, `medium`, `large`","completions":["small","medium","large"],"exhaustiveCompletions":true,"$id":"brand-named-logo","tags":{"description":"Names of customizeable logos"},"documentation":"Names of customizeable logos"},"logo-options":{"_internalId":2122,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"$id":"logo-options"},"logo-specifier":{"_internalId":2132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2131,"type":"ref","$ref":"logo-options","description":"be logo-options"}],"description":"be at least one of: a string, logo-options","$id":"logo-specifier"},"logo-options-path-optional":{"_internalId":2143,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"$id":"logo-options-path-optional"},"logo-specifier-path-optional":{"_internalId":2153,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2152,"type":"ref","$ref":"logo-options-path-optional","description":"be logo-options-path-optional"}],"description":"be at least one of: a string, logo-options-path-optional","$id":"logo-specifier-path-optional"},"logo-light-dark-specifier":{"_internalId":2175,"type":"anyOf","anyOf":[{"_internalId":2158,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2161,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2174,"type":"object","description":"be an object","properties":{"light":{"_internalId":2168,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2173,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier, an object","$id":"logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"logo-light-dark-specifier-path-optional":{"_internalId":2194,"type":"anyOf","anyOf":[{"_internalId":2180,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2193,"type":"object","description":"be an object","properties":{"light":{"_internalId":2187,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2192,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: logo-specifier-path-optional, an object","$id":"logo-light-dark-specifier-path-optional","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"normalized-logo-light-dark-specifier":{"_internalId":2207,"type":"object","description":"be an object","properties":{"light":{"_internalId":2201,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a light logo\n"},"documentation":"Options for a light logo"},"dark":{"_internalId":2206,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a dark logo\n"},"documentation":"Options for a dark logo"}},"patternProperties":{},"closed":true,"$id":"normalized-logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"brand-color-value":{"type":"string","description":"be a string","$id":"brand-color-value"},"brand-color-single":{"_internalId":2282,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2221,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2220,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2226,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2231,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2236,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2241,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2246,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2251,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2256,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2261,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2266,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2271,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2276,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2281,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-single","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-color-light-dark":{"_internalId":2301,"type":"anyOf","anyOf":[{"_internalId":2287,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2300,"type":"object","description":"be an object","properties":{"light":{"_internalId":2294,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2299,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-color-value, an object","$id":"brand-color-light-dark"},"brand-color-unified":{"_internalId":2372,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2311,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2310,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2316,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2321,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2326,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2331,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2336,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2341,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2346,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2351,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2356,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2361,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2366,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2371,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-unified","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-maybe-named-color":{"_internalId":2382,"type":"anyOf","anyOf":[{"_internalId":2377,"type":"ref","$ref":"brand-named-theme-color","description":"be brand-named-theme-color"},{"type":"string","description":"be a string"}],"description":"be at least one of: brand-named-theme-color, a string","$id":"brand-maybe-named-color","tags":{"description":"A color, which may be a named brand color.\n"},"documentation":"A color, which may be a named brand color."},"brand-maybe-named-color-light-dark":{"_internalId":2401,"type":"anyOf","anyOf":[{"_internalId":2387,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2400,"type":"object","description":"be an object","properties":{"light":{"_internalId":2394,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2399,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-maybe-named-color, an object","$id":"brand-maybe-named-color-light-dark"},"brand-named-theme-color":{"_internalId":2404,"type":"enum","enum":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"description":"be one of: `foreground`, `background`, `primary`, `secondary`, `tertiary`, `success`, `info`, `warning`, `danger`, `light`, `dark`, `link`","completions":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"exhaustiveCompletions":true,"$id":"brand-named-theme-color","tags":{"description":"A named brand color, taken either from `color.theme` or `color.palette` (in that order).\n"},"documentation":"A named brand color, taken either from color.theme or\ncolor.palette (in that order)."},"brand-typography-single":{"_internalId":2431,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2412,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2411,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2415,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2418,"type":"ref","$ref":"brand-typography-options-headings-single","description":"be brand-typography-options-headings-single","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2421,"type":"ref","$ref":"brand-typography-options-monospace-single","description":"be brand-typography-options-monospace-single","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2424,"type":"ref","$ref":"brand-typography-options-monospace-inline-single","description":"be brand-typography-options-monospace-inline-single","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2427,"type":"ref","$ref":"brand-typography-options-monospace-block-single","description":"be brand-typography-options-monospace-block-single","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2430,"type":"ref","$ref":"brand-typography-options-link-single","description":"be brand-typography-options-link-single","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-single","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-unified":{"_internalId":2458,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2439,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2438,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2442,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2445,"type":"ref","$ref":"brand-typography-options-headings-unified","description":"be brand-typography-options-headings-unified","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2448,"type":"ref","$ref":"brand-typography-options-monospace-unified","description":"be brand-typography-options-monospace-unified","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2451,"type":"ref","$ref":"brand-typography-options-monospace-inline-unified","description":"be brand-typography-options-monospace-inline-unified","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2454,"type":"ref","$ref":"brand-typography-options-monospace-block-unified","description":"be brand-typography-options-monospace-block-unified","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2457,"type":"ref","$ref":"brand-typography-options-link-unified","description":"be brand-typography-options-link-unified","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-unified","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-options-base":{"_internalId":2476,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2475,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2471,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2474,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-base","tags":{"description":"Base typographic options."},"documentation":"Base typographic options."},"brand-typography-options-headings-single":{"_internalId":2498,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2497,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2487,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2490,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2493,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2496,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-single","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-headings-unified":{"_internalId":2520,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2519,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2509,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2512,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2515,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2518,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-unified","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-monospace-single":{"_internalId":2541,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2540,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2533,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2536,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2539,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-single","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-unified":{"_internalId":2562,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2561,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2554,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2557,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2560,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-unified","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-inline-single":{"_internalId":2583,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2582,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2575,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2578,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2581,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-monospace-inline-unified":{"_internalId":2604,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2603,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2596,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2599,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2602,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"line-height-number-string":{"_internalId":2611,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"line-height-number-string","tags":{"description":"Line height"},"documentation":"Line height"},"brand-typography-options-monospace-block-single":{"_internalId":2635,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2634,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2624,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2627,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2630,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2633,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-single","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-monospace-block-unified":{"_internalId":2659,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2658,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2648,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2651,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2654,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2657,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-unified","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-link-single":{"_internalId":2678,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2677,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2668,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2671,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2674,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-link-unified":{"_internalId":2697,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2696,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2687,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2690,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2693,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-named-typography-elements":{"_internalId":2700,"type":"enum","enum":["base","headings","monospace","monospace-inline","monospace-block","link"],"description":"be one of: `base`, `headings`, `monospace`, `monospace-inline`, `monospace-block`, `link`","completions":["base","headings","monospace","monospace-inline","monospace-block","link"],"exhaustiveCompletions":true,"$id":"brand-named-typography-elements","tags":{"description":"Names of customizeable typography elements"},"documentation":"Names of customizeable typography elements"},"brand-font":{"_internalId":2715,"type":"anyOf","anyOf":[{"_internalId":2705,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2708,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2711,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2714,"type":"ref","$ref":"brand-font-system","description":"be brand-font-system"}],"description":"be at least one of: brand-font-google, brand-font-bunny, brand-font-file, brand-font-system","$id":"brand-font","tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"brand-font-weight":{"_internalId":2718,"type":"enum","enum":[100,200,300,400,500,600,700,800,900,"thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"description":"be one of: `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `thin`, `extra-light`, `ultra-light`, `light`, `normal`, `regular`, `medium`, `semi-bold`, `demi-bold`, `bold`, `extra-bold`, `ultra-bold`, `black`","completions":["100","200","300","400","500","600","700","800","900","thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"exhaustiveCompletions":true,"$id":"brand-font-weight","tags":{"description":"A font weight."},"documentation":"A font weight."},"brand-font-style":{"_internalId":2721,"type":"enum","enum":["normal","italic","oblique"],"description":"be one of: `normal`, `italic`, `oblique`","completions":["normal","italic","oblique"],"exhaustiveCompletions":true,"$id":"brand-font-style","tags":{"description":"A font style."},"documentation":"A font style."},"brand-font-common":{"_internalId":2747,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2736,"type":"anyOf","anyOf":[{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2735,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2743,"type":"anyOf","anyOf":[{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2742,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2746,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."}},"patternProperties":{},"closed":true,"$id":"brand-font-common"},"brand-font-system":{"_internalId":2747,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2736,"type":"anyOf","anyOf":[{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2735,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2743,"type":"anyOf","anyOf":[{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2742,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2746,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2752,"type":"enum","enum":["system"],"description":"be 'system'","completions":["system"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-system","tags":{"description":"A system font definition."},"documentation":"A system font definition."},"brand-font-google":{"_internalId":2747,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2736,"type":"anyOf","anyOf":[{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2735,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2743,"type":"anyOf","anyOf":[{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2742,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2746,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2760,"type":"enum","enum":["google"],"description":"be 'google'","completions":["google"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-google","tags":{"description":"A font definition from Google Fonts."},"documentation":"A font definition from Google Fonts."},"brand-font-bunny":{"_internalId":2747,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2736,"type":"anyOf","anyOf":[{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2735,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2734,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2743,"type":"anyOf","anyOf":[{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2742,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2741,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2746,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2768,"type":"enum","enum":["bunny"],"description":"be 'bunny'","completions":["bunny"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-bunny","tags":{"description":"A font definition from fonts.bunny.net."},"documentation":"A font definition from fonts.bunny.net."},"brand-font-file":{"_internalId":2804,"type":"object","description":"be an object","properties":{"source":{"_internalId":2776,"type":"enum","enum":["file"],"description":"be 'file'","completions":["file"],"exhaustiveCompletions":true},"family":{"type":"string","description":"be a string","tags":{"description":"The font family name."},"documentation":"The font family name."},"files":{"_internalId":2803,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2802,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2801,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"The path to the font file. This can be a local path or a URL.\n"},"documentation":"The path to the font file. This can be a local path or a URL."},"weight":{"_internalId":2797,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2800,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},"tags":{"description":"The font files to include. These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"},"documentation":"The font files to include. These can be local or online. Local file\npaths should be relative to the brand.yml file. Online\npaths should be complete URLs."}},"patternProperties":{},"required":["files","family","source"],"closed":true,"$id":"brand-font-file","tags":{"description":"A method for providing font files directly, either locally or from an online location."},"documentation":"A method for providing font files directly, either locally or from an\nonline location."},"brand-font-family":{"type":"string","description":"be a string","$id":"brand-font-family","tags":{"description":"A locally-installed font family name. When used, the end-user is responsible for ensuring that the font is installed on their system.\n"},"documentation":"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system."},"brand-single":{"_internalId":2826,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2813,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2816,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2819,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2822,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2825,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2844,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2831,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2834,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2837,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2840,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2843,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2856,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2855,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-path-only-light-dark","tags":{"description":"A path to a brand.yml file, or an object with light and dark paths to brand.yml\n"},"documentation":"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"},"brand-path-bool-light-dark":{"_internalId":2885,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2881,"type":"object","description":"be an object","properties":{"light":{"_internalId":2872,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2871,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a light brand file or an inline light brand definition.\n"},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"dark":{"_internalId":2880,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2879,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a dark brand file or an inline dark brand definition.\n"},"documentation":"The path to a dark brand file or an inline dark brand definition."}},"patternProperties":{},"closed":true},{"_internalId":2884,"type":"ref","$ref":"brand-unified","description":"be brand-unified"}],"description":"be at least one of: a string, `true` or `false`, an object, brand-unified","$id":"brand-path-bool-light-dark","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline (unified) brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"brand-defaults":{"_internalId":2895,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2890,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2893,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2914,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2913,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2912,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, `true` or `false`, a number"}}},"patternProperties":{},"$id":"brand-defaults-bootstrap"},"marginalia-side-geometry":{"_internalId":2923,"type":"object","description":"be an object","properties":{"far":{"type":"string","description":"be a string","tags":{"description":"Distance from page edge to wideblock boundary."},"documentation":"Distance from page edge to wideblock boundary."},"width":{"type":"string","description":"be a string","tags":{"description":"Width of the margin note column."},"documentation":"Width of the margin note column."},"separation":{"type":"string","description":"be a string","tags":{"description":"Gap between margin column and body text."},"documentation":"Gap between margin column and body text."}},"patternProperties":{},"closed":true,"$id":"marginalia-side-geometry"},"quarto-resource-cell-attributes-label":{"type":"string","description":"be a string","documentation":"Unique label for code cell","tags":{"description":{"short":"Unique label for code cell","long":"Unique label for code cell. Used when other code needs to refer to the cell \n(e.g. for cross references `fig-samples` or `tbl-summary`)\n"}},"$id":"quarto-resource-cell-attributes-label"},"quarto-resource-cell-attributes-classes":{"type":"string","description":"be a string","documentation":"Classes to apply to cell container","tags":{"description":"Classes to apply to cell container"},"$id":"quarto-resource-cell-attributes-classes"},"quarto-resource-cell-attributes-renderings":{"_internalId":2932,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Array of rendering names, e.g. [light, dark]","tags":{"description":"Array of rendering names, e.g. `[light, dark]`"},"$id":"quarto-resource-cell-attributes-renderings"},"quarto-resource-cell-attributes-tags":{"_internalId":2937,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"jupyter","description":"Array of tags for notebook cell"},"documentation":"Array of tags for notebook cell","$id":"quarto-resource-cell-attributes-tags"},"quarto-resource-cell-attributes-id":{"type":"string","description":"be a string","tags":{"engine":"jupyter","description":{"short":"Notebook cell identifier","long":"Notebook cell identifier. Note that if there is no cell `id` then `label` \nwill be used as the cell `id` if it is present.\nSee \nfor additional details on cell ids.\n"}},"documentation":"Notebook cell identifier","$id":"quarto-resource-cell-attributes-id"},"quarto-resource-cell-attributes-export":{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true,"tags":{"engine":"jupyter","description":"nbconvert tag to export cell","hidden":true},"documentation":"nbconvert tag to export cell","$id":"quarto-resource-cell-attributes-export"},"quarto-resource-cell-cache-cache":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to cache a code chunk.","long":"Whether to cache a code chunk. When evaluating\ncode chunks for the second time, the cached chunks are skipped (unless they\nhave been modified), but the objects created in these chunks are loaded from\npreviously saved databases (`.rdb` and `.rdx` files), and these files are\nsaved when a chunk is evaluated for the first time, or when cached files are\nnot found (e.g., you may have removed them by hand). Note that the filename\nconsists of the chunk label with an MD5 digest of the R code and chunk\noptions of the code chunk, which means any changes in the chunk will produce\na different MD5 digest, and hence invalidate the cache.\n"}},"documentation":"Whether to cache a code chunk.","$id":"quarto-resource-cell-cache-cache"},"quarto-resource-cell-cache-cache-path":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"A prefix to be used to generate the paths of cache files","hidden":true},"documentation":"A prefix to be used to generate the paths of cache files","$id":"quarto-resource-cell-cache-cache-path"},"quarto-resource-cell-cache-cache-vars":{"_internalId":2951,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2950,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":{"short":"Variable names to be saved in the cache database.","long":"Variable names to be saved in\nthe cache database. By default, all variables created in the current chunks\nare identified and saved, but you may want to manually specify the variables\nto be saved, because the automatic detection of variables may not be robust,\nor you may want to save only a subset of variables.\n"}},"documentation":"Variable names to be saved in the cache database.","$id":"quarto-resource-cell-cache-cache-vars"},"quarto-resource-cell-cache-cache-globals":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Variables names that are not created from the current chunk","long":"Variables names that are not created from the current chunk.\n\nThis option is mainly for `autodep: true` to work more precisely---a chunk\n`B` depends on chunk `A` when any of `B`'s global variables are `A`'s local \nvariables. In case the automatic detection of global variables in a chunk \nfails, you may manually specify the names of global variables via this option.\nIn addition, `cache-globals: false` means detecting all variables in a code\nchunk, no matter if they are global or local variables.\n"}},"documentation":"Variables names that are not created from the current chunk","$id":"quarto-resource-cell-cache-cache-globals"},"quarto-resource-cell-cache-cache-lazy":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to `lazyLoad()` or directly `load()` objects","long":"Whether to `lazyLoad()` or directly `load()` objects. For very large objects, \nlazyloading may not work, so `cache-lazy: false` may be desirable (see\n[#572](https://github.com/yihui/knitr/issues/572)).\n"}},"documentation":"Whether to lazyLoad() or directly load()\nobjects","$id":"quarto-resource-cell-cache-cache-lazy"},"quarto-resource-cell-cache-cache-rebuild":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Force rebuild of cache for chunk"},"documentation":"Force rebuild of cache for chunk","$id":"quarto-resource-cell-cache-cache-rebuild"},"quarto-resource-cell-cache-cache-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Prevent comment changes from invalidating the cache for a chunk"},"documentation":"Prevent comment changes from invalidating the cache for a chunk","$id":"quarto-resource-cell-cache-cache-comments"},"quarto-resource-cell-cache-dependson":{"_internalId":2974,"type":"anyOf","anyOf":[{"_internalId":2967,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2966,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":2973,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":2972,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":"Explicitly specify cache dependencies for this chunk (one or more chunk labels)\n"},"documentation":"Explicitly specify cache dependencies for this chunk (one or more\nchunk labels)","$id":"quarto-resource-cell-cache-dependson"},"quarto-resource-cell-cache-autodep":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Detect cache dependencies automatically via usage of global variables"},"documentation":"Detect cache dependencies automatically via usage of global\nvariables","$id":"quarto-resource-cell-cache-autodep"},"quarto-resource-cell-card-title":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"description":{"short":"Title displayed in dashboard card header"}},"documentation":"Title displayed in dashboard card header","$id":"quarto-resource-cell-card-title"},"quarto-resource-cell-card-padding":{"_internalId":2985,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Padding around dashboard card content (default `8px`)"}},"documentation":"Padding around dashboard card content (default 8px)","$id":"quarto-resource-cell-card-padding"},"quarto-resource-cell-card-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"Make dashboard card content expandable (default: `true`)"}},"documentation":"Make dashboard card content expandable (default:\ntrue)","$id":"quarto-resource-cell-card-expandable"},"quarto-resource-cell-card-width":{"_internalId":2994,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel width for dashboard card (defaults to evenly spaced across row)"}},"documentation":"Percentage or absolute pixel width for dashboard card (defaults to\nevenly spaced across row)","$id":"quarto-resource-cell-card-width"},"quarto-resource-cell-card-height":{"_internalId":3001,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel height for dashboard card (defaults to evenly spaced across column)"}},"documentation":"Percentage or absolute pixel height for dashboard card (defaults to\nevenly spaced across column)","$id":"quarto-resource-cell-card-height"},"quarto-resource-cell-card-context":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"engine":["jupyter"],"description":{"short":"Context to execute cell within."}},"documentation":"Context to execute cell within.","$id":"quarto-resource-cell-card-context"},"quarto-resource-cell-card-content":{"_internalId":3006,"type":"enum","enum":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"description":"be one of: `valuebox`, `sidebar`, `toolbar`, `card-sidebar`, `card-toolbar`","completions":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"The type of dashboard element being produced by this code cell."}},"documentation":"The type of dashboard element being produced by this code cell.","$id":"quarto-resource-cell-card-content"},"quarto-resource-cell-card-color":{"_internalId":3014,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3013,"type":"enum","enum":["primary","secondary","success","info","warning","danger","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","completions":["primary","secondary","success","info","warning","danger","light","dark"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","tags":{"formats":["dashboard"],"description":{"short":"For code cells that produce a valuebox, the color of the valuebox.s"}},"documentation":"For code cells that produce a valuebox, the color of the\nvaluebox.s","$id":"quarto-resource-cell-card-color"},"quarto-resource-cell-codeoutput-eval":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Evaluate code cells (if `false` just echos the code into output).","long":"Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"}},"documentation":"Evaluate code cells (if false just echos the code into\noutput).","$id":"quarto-resource-cell-codeoutput-eval"},"quarto-resource-cell-codeoutput-echo":{"_internalId":3024,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3023,"type":"enum","enum":["fenced"],"description":"be 'fenced'","completions":["fenced"],"exhaustiveCompletions":true}],"description":"be `true`, `false`, or `fenced`","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include cell source code in rendered output.","long":"Include cell source code in rendered output.\n\n- `true` (default in most formats): include source code in output\n- `false` (default in presentation formats like `beamer`, `revealjs`, and `pptx`): do not include source code in output\n- `fenced`: in addition to echoing, include the cell delimiter as part of the output.\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines\n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"}},"documentation":"Include cell source code in rendered output.","$id":"quarto-resource-cell-codeoutput-echo"},"quarto-resource-cell-codeoutput-code-fold":{"_internalId":3032,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3031,"type":"enum","enum":["show"],"description":"be 'show'","completions":["show"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'show'","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Collapse code into an HTML `
` tag so the user can display it on-demand.","long":"Collapse code into an HTML `
` tag so the user can display it on-demand.\n\n- `true`: collapse code\n- `false` (default): do not collapse code\n- `show`: use the `
` tag, but show the expanded code initially.\n"}},"documentation":"Collapse code into an HTML <details> tag so the\nuser can display it on-demand.","$id":"quarto-resource-cell-codeoutput-code-fold"},"quarto-resource-cell-codeoutput-code-summary":{"type":"string","description":"be a string","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":"Summary text to use for code blocks collapsed using `code-fold`"},"documentation":"Summary text to use for code blocks collapsed using\ncode-fold","$id":"quarto-resource-cell-codeoutput-code-summary"},"quarto-resource-cell-codeoutput-code-overflow":{"_internalId":3037,"type":"enum","enum":["scroll","wrap"],"description":"be one of: `scroll`, `wrap`","completions":["scroll","wrap"],"exhaustiveCompletions":true,"tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Choose whether to `scroll` or `wrap` when code lines are too wide for their container.","long":"Choose how to handle code overflow, when code lines are too wide for their container. One of:\n\n- `scroll`\n- `wrap`\n"}},"documentation":"Choose whether to scroll or wrap when code\nlines are too wide for their container.","$id":"quarto-resource-cell-codeoutput-code-overflow"},"quarto-resource-cell-codeoutput-code-line-numbers":{"_internalId":3044,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be `true`, `false`, or a string specifying the lines to highlight","tags":{"doNotNarrowError":true,"contexts":["document-code"],"formats":["$html-all","ms","$pdf-all"],"description":{"short":"Include line numbers in code block output (`true` or `false`)","long":"Include line numbers in code block output (`true` or `false`).\n\nFor revealjs output only, you can also specify a string to highlight\nspecific lines (and/or animate between sets of highlighted lines).\n\n* Sets of lines are denoted with commas:\n * `3,4,5`\n * `1,10,12`\n* Ranges can be denoted with dashes and combined with commas:\n * `1-3,5` \n * `5-10,12,14`\n* Finally, animation steps are separated by `|`:\n * `1-3|1-3,5` first shows `1-3`, then `1-3,5`\n * `|5|5-10,12` first shows no numbering, then 5, then lines 5-10\n and 12\n"}},"documentation":"Include line numbers in code block output (true or\nfalse)","$id":"quarto-resource-cell-codeoutput-code-line-numbers"},"quarto-resource-cell-codeoutput-lst-label":{"type":"string","description":"be a string","documentation":"Unique label for code listing (used in cross references)","tags":{"description":"Unique label for code listing (used in cross references)"},"$id":"quarto-resource-cell-codeoutput-lst-label"},"quarto-resource-cell-codeoutput-lst-cap":{"type":"string","description":"be a string","documentation":"Caption for code listing","tags":{"description":"Caption for code listing"},"$id":"quarto-resource-cell-codeoutput-lst-cap"},"quarto-resource-cell-codeoutput-tidy":{"_internalId":3056,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3055,"type":"enum","enum":["styler","formatR"],"description":"be one of: `styler`, `formatR`","completions":["styler","formatR"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `styler`, `formatR`","tags":{"engine":"knitr","description":"Whether to reformat R code."},"documentation":"Whether to reformat R code.","$id":"quarto-resource-cell-codeoutput-tidy"},"quarto-resource-cell-codeoutput-tidy-opts":{"_internalId":3061,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"knitr","description":"List of options to pass to `tidy` handler"},"documentation":"List of options to pass to tidy handler","$id":"quarto-resource-cell-codeoutput-tidy-opts"},"quarto-resource-cell-codeoutput-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Collapse all the source and output blocks from one code chunk into a single block\n"},"documentation":"Collapse all the source and output blocks from one code chunk into a\nsingle block","$id":"quarto-resource-cell-codeoutput-collapse"},"quarto-resource-cell-codeoutput-prompt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to add the prompt characters in R code.","long":"Whether to add the prompt characters in R\ncode. See `prompt` and `continue` on the help page `?base::options`. Note\nthat adding prompts can make it difficult for readers to copy R code from\nthe output, so `prompt: false` may be a better choice. This option may not\nwork well when the `engine` is not `R`\n([#1274](https://github.com/yihui/knitr/issues/1274)).\n"}},"documentation":"Whether to add the prompt characters in R code.","$id":"quarto-resource-cell-codeoutput-prompt"},"quarto-resource-cell-codeoutput-highlight":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Whether to syntax highlight the source code","hidden":true},"documentation":"Whether to syntax highlight the source code","$id":"quarto-resource-cell-codeoutput-highlight"},"quarto-resource-cell-codeoutput-class-source":{"_internalId":3073,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3072,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for source code blocks"},"documentation":"Class name(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-class-source"},"quarto-resource-cell-codeoutput-attr-source":{"_internalId":3079,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3078,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for source code blocks"},"documentation":"Attribute(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-attr-source"},"quarto-resource-cell-figure-fig-width":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default width for figures"},"documentation":"Default width for figures","$id":"quarto-resource-cell-figure-fig-width"},"quarto-resource-cell-figure-fig-height":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default height for figures"},"documentation":"Default height for figures","$id":"quarto-resource-cell-figure-fig-height"},"quarto-resource-cell-figure-fig-cap":{"_internalId":3089,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3088,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Figure caption"},"documentation":"Figure caption","$id":"quarto-resource-cell-figure-fig-cap"},"quarto-resource-cell-figure-fig-subcap":{"_internalId":3101,"type":"anyOf","anyOf":[{"_internalId":3094,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3100,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3099,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Figure subcaptions","tags":{"description":"Figure subcaptions"},"$id":"quarto-resource-cell-figure-fig-subcap"},"quarto-resource-cell-figure-fig-link":{"_internalId":3107,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3106,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Hyperlink target for the figure"},"documentation":"Hyperlink target for the figure","$id":"quarto-resource-cell-figure-fig-link"},"quarto-resource-cell-figure-fig-align":{"_internalId":3114,"type":"anyOf","anyOf":[{"_internalId":3112,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3113,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3112,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `default`, `left`, `right`, `center`, an array of values, where each element must be one of: `default`, `left`, `right`, `center`","tags":{"complete-from":["anyOf",0],"contexts":["document-figures"],"formats":["docx","rtf","$odt-all","$pdf-all","$html-all"],"description":"Figure horizontal alignment (`default`, `left`, `right`, or `center`)"},"documentation":"Figure horizontal alignment (default, left,\nright, or center)","$id":"quarto-resource-cell-figure-fig-align"},"quarto-resource-cell-figure-fig-alt":{"_internalId":3120,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3119,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Alternative text to be used in the `alt` attribute of HTML images.\n"},"documentation":"Alternative text to be used in the alt attribute of HTML\nimages.","$id":"quarto-resource-cell-figure-fig-alt"},"quarto-resource-cell-figure-fig-env":{"_internalId":3126,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3125,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"contexts":["document-figures"],"description":"LaTeX environment for figure output"},"documentation":"LaTeX environment for figure output","$id":"quarto-resource-cell-figure-fig-env"},"quarto-resource-cell-figure-fig-pos":{"_internalId":3138,"type":"anyOf","anyOf":[{"_internalId":3134,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3133,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":3137,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, 'false'","tags":{"formats":["$pdf-all"],"contexts":["document-figures"],"description":{"short":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.","long":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.\n\nComputational figure output that is accompanied by the code \nthat produced it is given a default value of `fig-pos=\"H\"` (so \nthat the code and figure are not inordinately separated).\n\nIf `fig-pos` is `false`, then we don't use any figure position\nspecifier, which is sometimes necessary with custom figure\nenvironments (such as `sidewaysfigure`).\n"}},"documentation":"LaTeX figure position arrangement to be used in\n\\begin{figure}[].","$id":"quarto-resource-cell-figure-fig-pos"},"quarto-resource-cell-figure-fig-scap":{"_internalId":3144,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3143,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"A short caption (only used in LaTeX output)","long":"A short caption (only used in LaTeX output). A short caption is inserted in `\\caption[]`, \nand usually displayed in the “List of Figures” of a PDF document.\n"}},"documentation":"A short caption (only used in LaTeX output)","$id":"quarto-resource-cell-figure-fig-scap"},"quarto-resource-cell-figure-fig-format":{"_internalId":3147,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Default output format for figures (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"documentation":"Default output format for figures (retina,\npng, jpeg, svg, or\npdf)","$id":"quarto-resource-cell-figure-fig-format"},"quarto-resource-cell-figure-fig-dpi":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default DPI for figures"},"documentation":"Default DPI for figures","$id":"quarto-resource-cell-figure-fig-dpi"},"quarto-resource-cell-figure-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified, the height of a plot \n(the option `fig-height`) is calculated from `fig-width * fig-asp`.\n"},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width. When\nfig-asp is specified, the height of a plot (the option\nfig-height) is calculated from\nfig-width * fig-asp.","$id":"quarto-resource-cell-figure-fig-asp"},"quarto-resource-cell-figure-out-width":{"_internalId":3160,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":[],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"engine":"knitr","description":{"short":"Width of plot in the output document","long":"Width of the plot in the output document, which can be different from its physical `fig-width`,\ni.e., plots can be scaled in the output document.\nWhen used without a unit, the unit is assumed to be pixels. However, any of the following unit \nidentifiers can be used: px, cm, mm, in, inch and %, for example, `3in`, `8cm`, `300px` or `50%`.\n"}},"documentation":"Width of plot in the output document","$id":"quarto-resource-cell-figure-out-width"},"quarto-resource-cell-figure-out-height":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Height of plot in the output document","long":"Height of the plot in the output document, which can be different from its physical `fig-height`, \ni.e., plots can be scaled in the output document.\nDepending on the output format, this option can take special values.\nFor example, for LaTeX output, it can be `3in`, or `8cm`;\nfor HTML, it can be `300px`.\n"}},"documentation":"Height of plot in the output document","$id":"quarto-resource-cell-figure-out-height"},"quarto-resource-cell-figure-fig-keep":{"_internalId":3174,"type":"anyOf","anyOf":[{"_internalId":3167,"type":"enum","enum":["high","none","all","first","last"],"description":"be one of: `high`, `none`, `all`, `first`, `last`","completions":["high","none","all","first","last"],"exhaustiveCompletions":true},{"_internalId":3173,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3172,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: one of: `high`, `none`, `all`, `first`, `last`, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":{"short":"How plots in chunks should be kept.","long":"How plots in chunks should be kept. Possible values are as follows:\n\n- `high`: Only keep high-level plots (merge low-level changes into\n high-level plots).\n- `none`: Discard all plots.\n- `all`: Keep all plots (low-level plot changes may produce new plots).\n- `first`: Only keep the first plot.\n- `last`: Only keep the last plot.\n- A numeric vector: In this case, the values are indices of (low-level) plots\n to keep.\n"}},"documentation":"How plots in chunks should be kept.","$id":"quarto-resource-cell-figure-fig-keep"},"quarto-resource-cell-figure-fig-show":{"_internalId":3177,"type":"enum","enum":["asis","hold","animate","hide"],"description":"be one of: `asis`, `hold`, `animate`, `hide`","completions":["asis","hold","animate","hide"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to show/arrange the plots","long":"How to show/arrange the plots. Possible values are as follows:\n\n- `asis`: Show plots exactly in places where they were generated (as if\n the code were run in an R terminal).\n- `hold`: Hold all plots and output them at the end of a code chunk.\n- `animate`: Concatenate all plots into an animation if there are multiple\n plots in a chunk.\n- `hide`: Generate plot files but hide them in the output document.\n"}},"documentation":"How to show/arrange the plots","$id":"quarto-resource-cell-figure-fig-show"},"quarto-resource-cell-figure-out-extra":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"Additional raw LaTeX or HTML options to be applied to figures"},"documentation":"Additional raw LaTeX or HTML options to be applied to figures","$id":"quarto-resource-cell-figure-out-extra"},"quarto-resource-cell-figure-external":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"Externalize tikz graphics (pre-compile to PDF)"},"documentation":"Externalize tikz graphics (pre-compile to PDF)","$id":"quarto-resource-cell-figure-external"},"quarto-resource-cell-figure-sanitize":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"sanitize tikz graphics (escape special LaTeX characters)."},"documentation":"sanitize tikz graphics (escape special LaTeX characters).","$id":"quarto-resource-cell-figure-sanitize"},"quarto-resource-cell-figure-interval":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Time interval (number of seconds) between animation frames."},"documentation":"Time interval (number of seconds) between animation frames.","$id":"quarto-resource-cell-figure-interval"},"quarto-resource-cell-figure-aniopts":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Extra options for animations","long":"Extra options for animations; see the documentation of the LaTeX [**animate**\npackage.](http://ctan.org/pkg/animate)\n"}},"documentation":"Extra options for animations","$id":"quarto-resource-cell-figure-aniopts"},"quarto-resource-cell-figure-animation-hook":{"type":"string","description":"be a string","completions":["ffmpeg","gifski"],"tags":{"engine":"knitr","description":{"short":"Hook function to create animations in HTML output","long":"Hook function to create animations in HTML output. \n\nThe default hook (`ffmpeg`) uses FFmpeg to convert images to a WebM video.\n\nAnother hook function is `gifski` based on the\n[**gifski**](https://cran.r-project.org/package=gifski) package to\ncreate GIF animations.\n"}},"documentation":"Hook function to create animations in HTML output","$id":"quarto-resource-cell-figure-animation-hook"},"quarto-resource-cell-include-child":{"_internalId":3195,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3194,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"One or more paths of child documents to be knitted and input into the main document."},"documentation":"One or more paths of child documents to be knitted and input into the\nmain document.","$id":"quarto-resource-cell-include-child"},"quarto-resource-cell-include-file":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"File containing code to execute for this chunk"},"documentation":"File containing code to execute for this chunk","$id":"quarto-resource-cell-include-file"},"quarto-resource-cell-include-code":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"String containing code to execute for this chunk"},"documentation":"String containing code to execute for this chunk","$id":"quarto-resource-cell-include-code"},"quarto-resource-cell-include-purl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Include chunk when extracting code with `knitr::purl()`"},"documentation":"Include chunk when extracting code with\nknitr::purl()","$id":"quarto-resource-cell-include-purl"},"quarto-resource-cell-layout-layout":{"_internalId":3214,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3213,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a number","items":{"_internalId":3212,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}}],"description":"be at least one of: a string, an array of values, where each element must be an array of values, where each element must be a number","documentation":"2d-array of widths where the first dimension specifies columns and\nthe second rows.","tags":{"description":{"short":"2d-array of widths where the first dimension specifies columns and the second rows.","long":"2d-array of widths where the first dimension specifies columns and the second rows.\n\nFor example, to layout the first two output blocks side-by-side on the top with the third\nblock spanning the full width below, use `[[3,3], [1]]`.\n\nUse negative values to create margin. For example, to create space between the \noutput blocks in the top row of the previous example, use `[[3,-1, 3], [1]]`.\n"}},"$id":"quarto-resource-cell-layout-layout"},"quarto-resource-cell-layout-layout-ncol":{"type":"number","description":"be a number","documentation":"Layout output blocks into columns","tags":{"description":"Layout output blocks into columns"},"$id":"quarto-resource-cell-layout-layout-ncol"},"quarto-resource-cell-layout-layout-nrow":{"type":"number","description":"be a number","documentation":"Layout output blocks into rows","tags":{"description":"Layout output blocks into rows"},"$id":"quarto-resource-cell-layout-layout-nrow"},"quarto-resource-cell-layout-layout-align":{"_internalId":3221,"type":"enum","enum":["default","left","center","right"],"description":"be one of: `default`, `left`, `center`, `right`","completions":["default","left","center","right"],"exhaustiveCompletions":true,"documentation":"Horizontal alignment for layout content (default,\nleft, right, or center)","tags":{"description":"Horizontal alignment for layout content (`default`, `left`, `right`, or `center`)"},"$id":"quarto-resource-cell-layout-layout-align"},"quarto-resource-cell-layout-layout-valign":{"_internalId":3224,"type":"enum","enum":["default","top","center","bottom"],"description":"be one of: `default`, `top`, `center`, `bottom`","completions":["default","top","center","bottom"],"exhaustiveCompletions":true,"documentation":"Vertical alignment for layout content (default,\ntop, center, or bottom)","tags":{"description":"Vertical alignment for layout content (`default`, `top`, `center`, or `bottom`)"},"$id":"quarto-resource-cell-layout-layout-valign"},"quarto-resource-cell-pagelayout-column":{"_internalId":3227,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for output","tags":{"description":{"short":"Page column for output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for output"}},"$id":"quarto-resource-cell-pagelayout-column"},"quarto-resource-cell-pagelayout-fig-column":{"_internalId":3230,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for figure output","tags":{"description":{"short":"Page column for figure output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for figure output"}},"$id":"quarto-resource-cell-pagelayout-fig-column"},"quarto-resource-cell-pagelayout-tbl-column":{"_internalId":3233,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for table output","tags":{"description":{"short":"Page column for table output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for table output"}},"$id":"quarto-resource-cell-pagelayout-tbl-column"},"quarto-resource-cell-pagelayout-cap-location":{"_internalId":3236,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure and table captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place figure and table captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-pagelayout-cap-location"},"quarto-resource-cell-pagelayout-fig-cap-location":{"_internalId":3239,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-figures"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place figure captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-pagelayout-fig-cap-location"},"quarto-resource-cell-pagelayout-tbl-cap-location":{"_internalId":3242,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-tables"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place table captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place table captions (top, bottom,\nor margin)","$id":"quarto-resource-cell-pagelayout-tbl-cap-location"},"quarto-resource-cell-table-tbl-cap":{"_internalId":3248,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3247,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Table caption"},"documentation":"Table caption","$id":"quarto-resource-cell-table-tbl-cap"},"quarto-resource-cell-table-tbl-subcap":{"_internalId":3260,"type":"anyOf","anyOf":[{"_internalId":3253,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3259,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3258,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Table subcaptions","tags":{"description":"Table subcaptions"},"$id":"quarto-resource-cell-table-tbl-subcap"},"quarto-resource-cell-table-tbl-colwidths":{"_internalId":3273,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3267,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3272,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: `true` or `false`, 'auto', an array of values, where each element must be a number","tags":{"contexts":["document-tables"],"engine":["knitr","jupyter"],"formats":["$pdf-all","$html-all"],"description":{"short":"Apply explicit table column widths","long":"Apply explicit table column widths for markdown grid tables and pipe\ntables that are more than `columns` characters wide (72 by default). \n\nSome formats (e.g. HTML) do an excellent job automatically sizing\ntable columns and so don't benefit much from column width specifications.\nOther formats (e.g. LaTeX) require table column sizes in order to \ncorrectly flow longer cell content (this is a major reason why tables \n> 72 columns wide are assigned explicit widths by Pandoc).\n\nThis can be specified as:\n\n- `auto`: Apply markdown table column widths except when there is a\n hyperlink in the table (which tends to throw off automatic\n calculation of column widths based on the markdown text width of cells).\n (`auto` is the default for HTML output formats)\n\n- `true`: Always apply markdown table widths (`true` is the default\n for all non-HTML formats)\n\n- `false`: Never apply markdown table widths.\n\n- An array of numbers (e.g. `[40, 30, 30]`): Array of explicit width percentages.\n"}},"documentation":"Apply explicit table column widths","$id":"quarto-resource-cell-table-tbl-colwidths"},"quarto-resource-cell-table-html-table-processing":{"_internalId":3276,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If none, do not process raw HTML table in cell output\nand leave it as-is","tags":{"description":"If `none`, do not process raw HTML table in cell output and leave it as-is"},"$id":"quarto-resource-cell-table-html-table-processing"},"quarto-resource-cell-textoutput-output":{"_internalId":3288,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3283,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3286,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, 'asis', a string, an object","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include the results of executing the code in the output (specify `asis` to\ntreat output as raw markdown with no enclosing containers).\n","long":"Include the results of executing the code in the output. Possible values:\n\n- `true`: Include results.\n- `false`: Do not include results.\n- `asis`: Treat output as raw markdown with no enclosing containers.\n"}},"documentation":"Include the results of executing the code in the output (specify\nasis to treat output as raw markdown with no enclosing\ncontainers).","$id":"quarto-resource-cell-textoutput-output"},"quarto-resource-cell-textoutput-warning":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include warnings in rendered output."},"documentation":"Include warnings in rendered output.","$id":"quarto-resource-cell-textoutput-warning"},"quarto-resource-cell-textoutput-error":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include errors in the output (note that this implies that errors executing code\nwill not halt processing of the document).\n"},"documentation":"Include errors in the output (note that this implies that errors\nexecuting code will not halt processing of the document).","$id":"quarto-resource-cell-textoutput-error"},"quarto-resource-cell-textoutput-include":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Catch all for preventing any output (code or results) from being included in output.\n"},"documentation":"Catch all for preventing any output (code or results) from being\nincluded in output.","$id":"quarto-resource-cell-textoutput-include"},"quarto-resource-cell-textoutput-panel":{"_internalId":3297,"type":"enum","enum":["tabset","input","sidebar","fill","center"],"description":"be one of: `tabset`, `input`, `sidebar`, `fill`, `center`","completions":["tabset","input","sidebar","fill","center"],"exhaustiveCompletions":true,"documentation":"Panel type for cell output (tabset, input,\nsidebar, fill, center)","tags":{"description":"Panel type for cell output (`tabset`, `input`, `sidebar`, `fill`, `center`)"},"$id":"quarto-resource-cell-textoutput-panel"},"quarto-resource-cell-textoutput-output-location":{"_internalId":3300,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-cell-textoutput-output-location"},"quarto-resource-cell-textoutput-message":{"_internalId":3303,"type":"enum","enum":[true,false,"NA"],"description":"be one of: `true`, `false`, `NA`","completions":["true","false","NA"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Include messages in rendered output.","long":"Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"}},"documentation":"Include messages in rendered output.","$id":"quarto-resource-cell-textoutput-message"},"quarto-resource-cell-textoutput-results":{"_internalId":3306,"type":"enum","enum":["markup","asis","hold","hide",false],"description":"be one of: `markup`, `asis`, `hold`, `hide`, `false`","completions":["markup","asis","hold","hide","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to display text results","long":"How to display text results. Note that this option only applies to normal text output (not warnings,\nmessages, or errors). The possible values are as follows:\n\n- `markup`: Mark up text output with the appropriate environments\n depending on the output format. For example, if the text\n output is a character string `\"[1] 1 2 3\"`, the actual output that\n **knitr** produces will be:\n\n ```` md\n ```\n [1] 1 2 3\n ```\n ````\n\n In this case, `results: markup` means to put the text output in fenced\n code blocks (```` ``` ````).\n\n- `asis`: Write text output as-is, i.e., write the raw text results\n directly into the output document without any markups.\n\n ```` md\n ```{r}\n #| results: asis\n cat(\"I'm raw **Markdown** content.\\n\")\n ```\n ````\n\n- `hold`: Hold all pieces of text output in a chunk and flush them to the\n end of the chunk.\n\n- `hide` (or `false`): Hide text output.\n"}},"documentation":"How to display text results","$id":"quarto-resource-cell-textoutput-results"},"quarto-resource-cell-textoutput-comment":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Prefix to be added before each line of text output.","long":"Prefix to be added before each line of text output.\nBy default, the text output is commented out by `##`, so if\nreaders want to copy and run the source code from the output document, they\ncan select and copy everything from the chunk, since the text output is\nmasked in comments (and will be ignored when running the copied text). Set\n`comment: ''` to remove the default `##`.\n"}},"documentation":"Prefix to be added before each line of text output.","$id":"quarto-resource-cell-textoutput-comment"},"quarto-resource-cell-textoutput-class-output":{"_internalId":3314,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3313,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for text/console output"},"documentation":"Class name(s) for text/console output","$id":"quarto-resource-cell-textoutput-class-output"},"quarto-resource-cell-textoutput-attr-output":{"_internalId":3320,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3319,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for text/console output"},"documentation":"Attribute(s) for text/console output","$id":"quarto-resource-cell-textoutput-attr-output"},"quarto-resource-cell-textoutput-class-warning":{"_internalId":3326,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3325,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for warning output"},"documentation":"Class name(s) for warning output","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_internalId":3332,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3331,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for warning output"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_internalId":3338,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3337,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for message output"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_internalId":3344,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3343,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for message output"},"documentation":"Attribute(s) for message output","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_internalId":3350,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3349,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for error output"},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_internalId":3356,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3355,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for error output"},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-attr-error"},"quarto-resource-document-about-about":{"_internalId":3365,"type":"anyOf","anyOf":[{"_internalId":3361,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"_internalId":3364,"type":"ref","$ref":"website-about","description":"be website-about"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, website-about","tags":{"formats":["$html-doc"],"description":{"short":"Specifies that the page is an 'about' page and which template to use when laying out the page.","long":"Specifies that the page is an 'about' page and which template to use when laying out the page.\n\nThe allowed values are either:\n\n- one of the possible template values (`jolla`, `trestles`, `solana`, `marquee`, or `broadside`))\n- an object describing the 'about' page in more detail. See [About Pages](https://quarto.org/docs/websites/website-about.html) for more.\n"}},"documentation":"Specifies that the page is an ‘about’ page and which template to use\nwhen laying out the page.","$id":"quarto-resource-document-about-about"},"quarto-resource-document-attributes-title":{"type":"string","description":"be a string","documentation":"Document title","tags":{"description":"Document title"},"$id":"quarto-resource-document-attributes-title"},"quarto-resource-document-attributes-subtitle":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-all","context","muse","odt","docx"],"description":"Identifies the subtitle of the document."},"documentation":"Identifies the subtitle of the document.","$id":"quarto-resource-document-attributes-subtitle"},"quarto-resource-document-attributes-date":{"_internalId":3372,"type":"ref","$ref":"date","description":"be date","documentation":"Document date","tags":{"description":"Document date"},"$id":"quarto-resource-document-attributes-date"},"quarto-resource-document-attributes-date-format":{"_internalId":3375,"type":"ref","$ref":"date-format","description":"be date-format","documentation":"Date format for the document","tags":{"description":"Date format for the document"},"$id":"quarto-resource-document-attributes-date-format"},"quarto-resource-document-attributes-date-modified":{"_internalId":3378,"type":"ref","$ref":"date","description":"be date","tags":{"formats":["$html-doc"],"description":"Document date modified"},"documentation":"Document date modified","$id":"quarto-resource-document-attributes-date-modified"},"quarto-resource-document-attributes-author":{"_internalId":3389,"type":"anyOf","anyOf":[{"_internalId":3387,"type":"anyOf","anyOf":[{"_internalId":3383,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3388,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3387,"type":"anyOf","anyOf":[{"_internalId":3383,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"description":"Author or authors of the document"},"documentation":"Author or authors of the document","$id":"quarto-resource-document-attributes-author"},"quarto-resource-document-attributes-affiliation":{"_internalId":3400,"type":"anyOf","anyOf":[{"_internalId":3398,"type":"anyOf","anyOf":[{"_internalId":3394,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3399,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3398,"type":"anyOf","anyOf":[{"_internalId":3394,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$jats-all"],"description":{"short":"The list of organizations with which contributors are affiliated.","long":"The list of organizations with which contributors are\naffiliated. Each institution is added as an [``] element to\nthe author's contrib-group. See the Pandoc [JATS documentation](https://pandoc.org/jats.html) \nfor details on `affiliation` fields.\n"}},"documentation":"The list of organizations with which contributors are affiliated.","$id":"quarto-resource-document-attributes-affiliation"},"quarto-resource-document-attributes-copyright":{"_internalId":3401,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Licensing and copyright information.","long":"Licensing and copyright information. This information is\nrendered via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/permissions.html) element.\nThe variables `type`, `link`, and `text` should always be used\ntogether. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)\nfor details on `copyright` fields.\n"}},"documentation":"Licensing and copyright information.","$id":"quarto-resource-document-attributes-copyright"},"quarto-resource-document-attributes-article":{"_internalId":3403,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information concerning the article that identifies or describes it.","long":"Information concerning the article that identifies or describes\nit. The key-value pairs within this map are typically used\nwithin the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html) element.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `article` fields.\n"}},"documentation":"Information concerning the article that identifies or describes\nit.","$id":"quarto-resource-document-attributes-article"},"quarto-resource-document-attributes-journal":{"_internalId":3405,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information on the journal in which the article is published.","long":"Information on the journal in which the article is published.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `journal` fields.\n"}},"documentation":"Information on the journal in which the article is published.","$id":"quarto-resource-document-attributes-journal"},"quarto-resource-document-attributes-institute":{"_internalId":3417,"type":"anyOf","anyOf":[{"_internalId":3415,"type":"anyOf","anyOf":[{"_internalId":3411,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3416,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3415,"type":"anyOf","anyOf":[{"_internalId":3411,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-pres","beamer"],"description":"Author affiliations for the presentation."},"documentation":"Author affiliations for the presentation.","$id":"quarto-resource-document-attributes-institute"},"quarto-resource-document-attributes-abstract":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-doc","$epub-all","$asciidoc-all","$jats-all","context","ms","odt","docx"],"description":"Summary of document"},"documentation":"Summary of document","$id":"quarto-resource-document-attributes-abstract"},"quarto-resource-document-attributes-abstract-title":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","$epub-all","docx","typst"],"description":"Title used to label document abstract"},"documentation":"Title used to label document abstract","$id":"quarto-resource-document-attributes-abstract-title"},"quarto-resource-document-attributes-notes":{"type":"string","description":"be a string","tags":{"formats":["$jats-all"],"description":"Additional notes concerning the whole article. Added to the\narticle's frontmatter via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/notes.html) element.\n"},"documentation":"Additional notes concerning the whole article. Added to the article’s\nfrontmatter via the <notes>\nelement.","$id":"quarto-resource-document-attributes-notes"},"quarto-resource-document-attributes-tags":{"_internalId":3428,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$jats-all"],"description":"List of keywords. Items are used as contents of the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd.html) element; the elements are grouped in a [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd-group.html) with the [`kwd-group-type`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/attribute/kwd-group-type.html) value `author`."},"documentation":"List of keywords. Items are used as contents of the <kwd>\nelement; the elements are grouped in a <kwd-group>\nwith the kwd-group-type\nvalue author.","$id":"quarto-resource-document-attributes-tags"},"quarto-resource-document-attributes-doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Displays the document Digital Object Identifier in the header."},"documentation":"Displays the document Digital Object Identifier in the header.","$id":"quarto-resource-document-attributes-doi"},"quarto-resource-document-attributes-thanks":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The contents of an acknowledgments footnote after the document title."},"documentation":"The contents of an acknowledgments footnote after the document\ntitle.","$id":"quarto-resource-document-attributes-thanks"},"quarto-resource-document-attributes-order":{"type":"number","description":"be a number","documentation":"Order for document when included in a website automatic sidebar\nmenu.","tags":{"description":"Order for document when included in a website automatic sidebar menu."},"$id":"quarto-resource-document-attributes-order"},"quarto-resource-document-citation-citation":{"_internalId":3442,"type":"anyOf","anyOf":[{"_internalId":3439,"type":"ref","$ref":"citation-item","description":"be citation-item"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: citation-item, `true` or `false`","documentation":"Citation information for the document itself.","tags":{"description":{"short":"Citation information for the document itself.","long":"Citation information for the document itself specified as [CSL](https://docs.citationstyles.org/en/stable/specification.html) \nYAML in the document front matter.\n\nFor more on supported options, see [Citation Metadata](https://quarto.org/docs/reference/metadata/citation.html).\n"}},"$id":"quarto-resource-document-citation-citation"},"quarto-resource-document-code-code-copy":{"_internalId":3450,"type":"anyOf","anyOf":[{"_internalId":3447,"type":"enum","enum":["hover"],"description":"be 'hover'","completions":["hover"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'hover', `true` or `false`","tags":{"formats":["$html-all"],"description":{"short":"Enable a code copy icon for code blocks.","long":"Enable a code copy icon for code blocks. \n\n- `true`: Always show the icon\n- `false`: Never show the icon\n- `hover` (default): Show the icon when the mouse hovers over the code block\n"}},"documentation":"Enable a code copy icon for code blocks.","$id":"quarto-resource-document-code-code-copy"},"quarto-resource-document-code-code-link":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$html-files"],"description":{"short":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n","long":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n\nCode linking is currently implemented only for the knitr engine \n(via the [downlit](https://downlit.r-lib.org/) package). \nA limitation of downlit currently prevents code linking \nif `code-line-numbers` is also `true`.\n"}},"documentation":"Enables hyper-linking of functions within code blocks to their online\ndocumentation.","$id":"quarto-resource-document-code-code-link"},"quarto-resource-document-code-code-annotations":{"_internalId":3460,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3459,"type":"enum","enum":["hover","select","below","none"],"description":"be one of: `hover`, `select`, `below`, `none`","completions":["hover","select","below","none"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `hover`, `select`, `below`, `none`","documentation":"The style to use when displaying code annotations","tags":{"description":{"short":"The style to use when displaying code annotations","long":"The style to use when displaying code annotations. Set this value\nto false to hide code annotations.\n"}},"$id":"quarto-resource-document-code-code-annotations"},"quarto-resource-document-code-code-tools":{"_internalId":3479,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3478,"type":"object","description":"be an object","properties":{"source":{"_internalId":3473,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string"},"toggle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"caption":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-doc"],"description":{"short":"Include a code tools menu (for hiding and showing code).","long":"Include a code tools menu (for hiding and showing code).\nUse `true` or `false` to enable or disable the standard code \ntools menu. Specify sub-properties `source`, `toggle`, and\n`caption` to customize the behavior and appearance of code tools.\n"}},"documentation":"Include a code tools menu (for hiding and showing code).","$id":"quarto-resource-document-code-code-tools"},"quarto-resource-document-code-code-block-border-left":{"_internalId":3486,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a thick left border on code blocks.","long":"Specifies to apply a left border on code blocks. Provide a hex color to specify that the border is\nenabled as well as the color of the border.\n"}},"documentation":"Show a thick left border on code blocks.","$id":"quarto-resource-document-code-code-block-border-left"},"quarto-resource-document-code-code-block-bg":{"_internalId":3493,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a background color for code blocks.","long":"Specifies to apply a background color on code blocks. Provide a hex color to specify that the background color is\nenabled as well as the color of the background.\n"}},"documentation":"Show a background color for code blocks.","$id":"quarto-resource-document-code-code-block-bg"},"quarto-resource-document-code-highlight-style":{"_internalId":3505,"type":"anyOf","anyOf":[{"_internalId":3502,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string","completions":["a11y","arrow","atom-one","ayu","ayu-mirage","breeze","breezedark","dracula","espresso","github","gruvbox","haddock","kate","monochrome","monokai","none","nord","oblivion","printing","pygments","radical","solarized","tango","vim-dark","zenburn"]}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":{"short":"Specifies the coloring style to be used in highlighted source code.","long":"Specifies the coloring style to be used in highlighted source code.\n\nInstead of a *STYLE* name, a JSON file with extension\n` .theme` may be supplied. This will be parsed as a KDE\nsyntax highlighting theme and (if valid) used as the\nhighlighting style.\n"}},"documentation":"Specifies the coloring style to be used in highlighted source\ncode.","$id":"quarto-resource-document-code-highlight-style"},"quarto-resource-document-code-syntax-definition":{"type":"string","description":"be a string","tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"KDE language syntax definition file (XML)","hidden":true},"documentation":"KDE language syntax definition file (XML)","$id":"quarto-resource-document-code-syntax-definition"},"quarto-resource-document-code-syntax-definitions":{"_internalId":3512,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"KDE language syntax definition files (XML)"},"documentation":"KDE language syntax definition files (XML)","$id":"quarto-resource-document-code-syntax-definitions"},"quarto-resource-document-code-listings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Use the listings package for LaTeX code blocks.","long":"Use the `listings` package for LaTeX code blocks. The package\ndoes not support multi-byte encoding for source code. To handle UTF-8\nyou would need to use a custom template. This issue is fully\ndocumented here: [Encoding issue with the listings package](https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings#Encoding_issue)\n"}},"documentation":"Use the listings package for LaTeX code blocks.","$id":"quarto-resource-document-code-listings"},"quarto-resource-document-code-indented-code-classes":{"_internalId":3519,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"Specify classes to use for all indented code blocks"},"documentation":"Specify classes to use for all indented code blocks","$id":"quarto-resource-document-code-indented-code-classes"},"quarto-resource-document-colors-fontcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `color` property."},"documentation":"Sets the CSS color property.","$id":"quarto-resource-document-colors-fontcolor"},"quarto-resource-document-colors-linkcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the color of hyperlinks in the document.","long":"For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n"}},"documentation":"Sets the color of hyperlinks in the document.","$id":"quarto-resource-document-colors-linkcolor"},"quarto-resource-document-colors-monobackgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["html","html4","html5","slidy","slideous","s5","dzslides"],"description":"Sets the CSS `background-color` property on code elements and adds extra padding."},"documentation":"Sets the CSS background-color property on code elements\nand adds extra padding.","$id":"quarto-resource-document-colors-monobackgroundcolor"},"quarto-resource-document-colors-backgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `background-color` property on the html element.\n"},"documentation":"Sets the CSS background-color property on the html\nelement.","$id":"quarto-resource-document-colors-backgroundcolor"},"quarto-resource-document-colors-filecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for external links using color options allowed by `xcolor`","long":"The color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for external links using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-filecolor"},"quarto-resource-document-colors-citecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for citation links using color options allowed by `xcolor`","long":"The color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for citation links using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-citecolor"},"quarto-resource-document-colors-urlcolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for linked URLs using color options allowed by `xcolor`","long":"The color used for linked URLs using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for linked URLs using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-urlcolor"},"quarto-resource-document-colors-toccolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for links in the Table of Contents using color options allowed by `xcolor`","long":"The color used for links in the Table of Contents using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for links in the Table of Contents using color options\nallowed by xcolor","$id":"quarto-resource-document-colors-toccolor"},"quarto-resource-document-colors-colorlinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Add color to link text, automatically enabled if any of \n`linkcolor`, `filecolor`, `citecolor`, `urlcolor`, or `toccolor` are set.\n"},"documentation":"Add color to link text, automatically enabled if any of\nlinkcolor, filecolor, citecolor,\nurlcolor, or toccolor are set.","$id":"quarto-resource-document-colors-colorlinks"},"quarto-resource-document-colors-contrastcolor":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Color for links to other content within the document.","long":"Color for links to other content within the document. \n\nSee [ConTeXt Color](https://wiki.contextgarden.net/Color) for additional information.\n"}},"documentation":"Color for links to other content within the document.","$id":"quarto-resource-document-colors-contrastcolor"},"quarto-resource-document-comments-comments":{"_internalId":3542,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration","tags":{"formats":["$html-files"],"description":"Configuration for document commenting."},"documentation":"Configuration for document commenting.","$id":"quarto-resource-document-comments-comments"},"quarto-resource-document-crossref-crossref":{"_internalId":3688,"type":"anyOf","anyOf":[{"_internalId":3547,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3687,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3575,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3574,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3556,"type":"enum","enum":["float"],"description":"be 'float'","completions":["float"],"exhaustiveCompletions":true,"tags":{"description":"The kind of cross reference (currently only \"float\" is supported)."},"documentation":"The kind of cross reference (currently only “float” is\nsupported)."},"reference-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered references when referencing this type."},"documentation":"The prefix used in rendered references when referencing this\ntype."},"caption-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered captions when referencing this type. If omitted, the field `reference-prefix` is used."},"documentation":"The prefix used in rendered captions when referencing this type. If\nomitted, the field reference-prefix is used."},"space-before-numbering":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, use no space between crossref prefixes and numbering."},"documentation":"If false, use no space between crossref prefixes and numbering."},"key":{"type":"string","description":"be a string","tags":{"description":"The key used to prefix reference labels of this type, such as \"fig\", \"tbl\", \"lst\", etc."},"documentation":"The key used to prefix reference labels of this type, such as “fig”,\n“tbl”, “lst”, etc."},"latex-env":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the name of the custom environment to be used."},"documentation":"In LaTeX output, the name of the custom environment to be used."},"latex-list-of-file-extension":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the extension of the auxiliary file used by LaTeX to collect names to be used in the custom \"list of\" command. If omitted, a string with prefix `lo` and suffix with the value of `ref-type` is used."},"documentation":"In LaTeX output, the extension of the auxiliary file used by LaTeX to\ncollect names to be used in the custom “list of” command. If omitted, a\nstring with prefix lo and suffix with the value of\nref-type is used."},"latex-list-of-description":{"type":"string","description":"be a string","tags":{"description":"The description of the crossreferenceable object to be used in the title of the \"list of\" command. If omitted, the field `reference-prefix` is used."},"documentation":"The description of the crossreferenceable object to be used in the\ntitle of the “list of” command. If omitted, the field\nreference-prefix is used."},"caption-location":{"_internalId":3573,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"description":"The location of the caption relative to the crossreferenceable content."},"documentation":"The location of the caption relative to the crossreferenceable\ncontent."}},"patternProperties":{},"required":["kind","reference-prefix","key"],"closed":true,"tags":{"description":"A custom cross reference type. See [Custom](https://quarto.org/docs/reference/metadata/crossref.html#custom) for more details."},"documentation":"A custom cross reference type. See Custom\nfor more details."}},"chapters":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Use top level sections (H1) in this document as chapters."},"documentation":"Use top level sections (H1) in this document as chapters."},"title-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter used between the prefix and the caption."},"documentation":"The delimiter used between the prefix and the caption."},"fig-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for figure captions."},"documentation":"The title prefix used for figure captions."},"tbl-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for table captions."},"documentation":"The title prefix used for table captions."},"eq-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for equation captions."},"documentation":"The title prefix used for equation captions."},"lst-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for listing captions."},"documentation":"The title prefix used for listing captions."},"thm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for theorem captions."},"documentation":"The title prefix used for theorem captions."},"lem-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for lemma captions."},"documentation":"The title prefix used for lemma captions."},"cor-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for corollary captions."},"documentation":"The title prefix used for corollary captions."},"prp-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for proposition captions."},"documentation":"The title prefix used for proposition captions."},"cnj-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for conjecture captions."},"documentation":"The title prefix used for conjecture captions."},"def-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for definition captions."},"documentation":"The title prefix used for definition captions."},"exm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for example captions."},"documentation":"The title prefix used for example captions."},"exr-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for exercise captions."},"documentation":"The title prefix used for exercise captions."},"fig-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a figure."},"documentation":"The prefix used for an inline reference to a figure."},"tbl-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a table."},"documentation":"The prefix used for an inline reference to a table."},"eq-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an equation."},"documentation":"The prefix used for an inline reference to an equation."},"sec-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a section."},"documentation":"The prefix used for an inline reference to a section."},"lst-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a listing."},"documentation":"The prefix used for an inline reference to a listing."},"thm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a theorem."},"documentation":"The prefix used for an inline reference to a theorem."},"lem-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a lemma."},"documentation":"The prefix used for an inline reference to a lemma."},"cor-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a corollary."},"documentation":"The prefix used for an inline reference to a corollary."},"prp-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a proposition."},"documentation":"The prefix used for an inline reference to a proposition."},"cnj-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a conjecture."},"documentation":"The prefix used for an inline reference to a conjecture."},"def-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a definition."},"documentation":"The prefix used for an inline reference to a definition."},"exm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an example."},"documentation":"The prefix used for an inline reference to an example."},"exr-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an exercise."},"documentation":"The prefix used for an inline reference to an exercise."},"fig-labels":{"_internalId":3632,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for figures."},"documentation":"The numbering scheme used for figures."},"tbl-labels":{"_internalId":3635,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for tables."},"documentation":"The numbering scheme used for tables."},"eq-labels":{"_internalId":3638,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for equations."},"documentation":"The numbering scheme used for equations."},"sec-labels":{"_internalId":3641,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for sections."},"documentation":"The numbering scheme used for sections."},"lst-labels":{"_internalId":3644,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for listings."},"documentation":"The numbering scheme used for listings."},"thm-labels":{"_internalId":3647,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for theorems."},"documentation":"The numbering scheme used for theorems."},"lem-labels":{"_internalId":3650,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for lemmas."},"documentation":"The numbering scheme used for lemmas."},"cor-labels":{"_internalId":3653,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for corollaries."},"documentation":"The numbering scheme used for corollaries."},"prp-labels":{"_internalId":3656,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for propositions."},"documentation":"The numbering scheme used for propositions."},"cnj-labels":{"_internalId":3659,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for conjectures."},"documentation":"The numbering scheme used for conjectures."},"def-labels":{"_internalId":3662,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for definitions."},"documentation":"The numbering scheme used for definitions."},"exm-labels":{"_internalId":3665,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for examples."},"documentation":"The numbering scheme used for examples."},"exr-labels":{"_internalId":3668,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for exercises."},"documentation":"The numbering scheme used for exercises."},"lof-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of figures."},"documentation":"The title used for the list of figures."},"lot-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of tables."},"documentation":"The title used for the list of tables."},"lol-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of listings."},"documentation":"The title used for the list of listings."},"labels":{"_internalId":3677,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for references."},"documentation":"The number scheme used for references."},"subref-labels":{"_internalId":3680,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for sub references."},"documentation":"The number scheme used for sub references."},"ref-hyperlink":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether cross references should be hyper-linked."},"documentation":"Whether cross references should be hyper-linked."},"appendix-title":{"type":"string","description":"be a string","tags":{"description":"The title used for appendix."},"documentation":"The title used for appendix."},"appendix-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter beween appendix number and title."},"documentation":"The delimiter beween appendix number and title."}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","documentation":"Configuration for cross-reference labels and prefixes.","tags":{"description":{"short":"Configuration for cross-reference labels and prefixes.","long":"Configuration for cross-reference labels and prefixes. See [Cross-Reference Options](https://quarto.org/docs/reference/metadata/crossref.html) for more details."}},"$id":"quarto-resource-document-crossref-crossref"},"quarto-resource-document-crossref-crossrefs-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for cross references that shows the item being referenced."},"documentation":"Enables a hover popup for cross references that shows the item being\nreferenced.","$id":"quarto-resource-document-crossref-crossrefs-hover"},"quarto-resource-document-dashboard-logo":{"_internalId":3693,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["dashboard"],"description":"Logo image(s) (placed on the left side of the navigation bar)"},"documentation":"Logo image(s) (placed on the left side of the navigation bar)","$id":"quarto-resource-document-dashboard-logo"},"quarto-resource-document-dashboard-orientation":{"_internalId":3696,"type":"enum","enum":["rows","columns"],"description":"be one of: `rows`, `columns`","completions":["rows","columns"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Default orientation for dashboard content (default `rows`)"},"documentation":"Default orientation for dashboard content (default\nrows)","$id":"quarto-resource-document-dashboard-orientation"},"quarto-resource-document-dashboard-scrolling":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Use scrolling rather than fill layout (default: `false`)"},"documentation":"Use scrolling rather than fill layout (default:\nfalse)","$id":"quarto-resource-document-dashboard-scrolling"},"quarto-resource-document-dashboard-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Make card content expandable (default: `true`)"},"documentation":"Make card content expandable (default: true)","$id":"quarto-resource-document-dashboard-expandable"},"quarto-resource-document-dashboard-nav-buttons":{"_internalId":3726,"type":"anyOf","anyOf":[{"_internalId":3724,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3723,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"},{"_internalId":3725,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3724,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3723,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"formats":["dashboard"],"description":"Links to display on the dashboard navigation bar"},"documentation":"Links to display on the dashboard navigation bar","$id":"quarto-resource-document-dashboard-nav-buttons"},"quarto-resource-document-editor-editor":{"_internalId":3767,"type":"anyOf","anyOf":[{"_internalId":3731,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3766,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3736,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true,"tags":{"description":"Default editing mode for document"},"documentation":"Default editing mode for document"},"markdown":{"_internalId":3761,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3746,"type":"anyOf","anyOf":[{"_internalId":3743,"type":"enum","enum":["sentence","none"],"description":"be one of: `sentence`, `none`","completions":["sentence","none"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: one of: `sentence`, `none`, a number","tags":{"description":"A column number (e.g. 72), `sentence`, or `none`"},"documentation":"A column number (e.g. 72), sentence, or\nnone"},"canonical":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write standard visual editor markdown from source mode."},"documentation":"Write standard visual editor markdown from source mode."},"references":{"_internalId":3760,"type":"object","description":"be an object","properties":{"location":{"_internalId":3755,"type":"enum","enum":["block","section","document"],"description":"be one of: `block`, `section`, `document`","completions":["block","section","document"],"exhaustiveCompletions":true,"tags":{"description":"Location to write references (`block`, `section`, or `document`)"},"documentation":"Location to write references (block,\nsection, or document)"},"links":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write markdown links as references rather than inline."},"documentation":"Write markdown links as references rather than inline."},"prefix":{"type":"string","description":"be a string","tags":{"description":"Unique prefix for references (`none` to prevent automatic prefixes)"},"documentation":"Unique prefix for references (none to prevent automatic\nprefixes)"}},"patternProperties":{},"tags":{"description":"Reference writing options for visual editor"},"documentation":"Reference writing options for visual editor"}},"patternProperties":{},"tags":{"description":"Markdown writing options for visual editor"},"documentation":"Markdown writing options for visual editor"},"render-on-save":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":["jupyter"],"description":"Automatically re-render for preview whenever document is saved (note that this requires a preview\nfor the saved document be already running). This option currently works only within VS Code.\n"},"documentation":"Automatically re-render for preview whenever document is saved (note\nthat this requires a preview for the saved document be already running).\nThis option currently works only within VS Code."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention mode,markdown,render-on-save","type":"string","pattern":"(?!(^render_on_save$|^renderOnSave$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}],"description":"be at least one of: one of: `source`, `visual`, an object","documentation":"Visual editor configuration","tags":{"description":"Visual editor configuration"},"$id":"quarto-resource-document-editor-editor"},"quarto-resource-document-editor-zotero":{"_internalId":3778,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3777,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3776,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","documentation":"Enable (true) or disable (false) Zotero for\na document. Alternatively, provide a list of one or more Zotero group\nlibraries to use with the document.","tags":{"description":"Enable (`true`) or disable (`false`) Zotero for a document. Alternatively, provide a list of one or\nmore Zotero group libraries to use with the document.\n"},"$id":"quarto-resource-document-editor-zotero"},"quarto-resource-document-epub-identifier":{"_internalId":3791,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3790,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The identifier value."},"documentation":"The identifier value."},"schema":{"_internalId":3789,"type":"enum","enum":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"description":"be one of: `ISBN-10`, `GTIN-13`, `UPC`, `ISMN-10`, `DOI`, `LCCN`, `GTIN-14`, `ISBN-13`, `Legal deposit number`, `URN`, `OCLC`, `ISMN-13`, `ISBN-A`, `JP`, `OLCC`","completions":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"exhaustiveCompletions":true,"tags":{"description":"The identifier schema (e.g. `DOI`, `ISBN-A`, etc.)"},"documentation":"The identifier schema (e.g. DOI, ISBN-A,\netc.)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The identifier for this publication."},"documentation":"The identifier for this publication.","$id":"quarto-resource-document-epub-identifier"},"quarto-resource-document-epub-creator":{"_internalId":3794,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Creators of this publication."},"documentation":"Creators of this publication.","$id":"quarto-resource-document-epub-creator"},"quarto-resource-document-epub-contributor":{"_internalId":3797,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Contributors to this publication."},"documentation":"Contributors to this publication.","$id":"quarto-resource-document-epub-contributor"},"quarto-resource-document-epub-subject":{"_internalId":3811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3810,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The subject text."},"documentation":"The subject text."},"authority":{"type":"string","description":"be a string","tags":{"description":"An EPUB reserved authority value."},"documentation":"An EPUB reserved authority value."},"term":{"type":"string","description":"be a string","tags":{"description":"The subject term (defined by the schema)."},"documentation":"The subject term (defined by the schema)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The subject of the publication."},"documentation":"The subject of the publication.","$id":"quarto-resource-document-epub-subject"},"quarto-resource-document-epub-type":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Text describing the specialized type of this publication.","long":"Text describing the specialized type of this publication.\n\nAn informative registry of specialized EPUB Publication \ntypes for use with this element is maintained in the \n[TypesRegistry](https://www.w3.org/publishing/epub32/epub-packages.html#bib-typesregistry), \nbut Authors may use any text string as a value.\n"}},"documentation":"Text describing the specialized type of this publication.","$id":"quarto-resource-document-epub-type"},"quarto-resource-document-epub-format":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the format of this publication."},"documentation":"Text describing the format of this publication.","$id":"quarto-resource-document-epub-format"},"quarto-resource-document-epub-relation":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the relation of this publication."},"documentation":"Text describing the relation of this publication.","$id":"quarto-resource-document-epub-relation"},"quarto-resource-document-epub-coverage":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the coverage of this publication."},"documentation":"Text describing the coverage of this publication.","$id":"quarto-resource-document-epub-coverage"},"quarto-resource-document-epub-rights":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the rights of this publication."},"documentation":"Text describing the rights of this publication.","$id":"quarto-resource-document-epub-rights"},"quarto-resource-document-epub-belongs-to-collection":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Identifies the name of a collection to which the EPUB Publication belongs."},"documentation":"Identifies the name of a collection to which the EPUB Publication\nbelongs.","$id":"quarto-resource-document-epub-belongs-to-collection"},"quarto-resource-document-epub-group-position":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":"Indicates the numeric position in which this publication \nbelongs relative to other works belonging to the same \n`belongs-to-collection` field.\n"},"documentation":"Indicates the numeric position in which this publication belongs\nrelative to other works belonging to the same\nbelongs-to-collection field.","$id":"quarto-resource-document-epub-group-position"},"quarto-resource-document-epub-page-progression-direction":{"_internalId":3828,"type":"enum","enum":["ltr","rtl"],"description":"be one of: `ltr`, `rtl`","completions":["ltr","rtl"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"Sets the global direction in which content flows (`ltr` or `rtl`)"},"documentation":"Sets the global direction in which content flows (ltr or\nrtl)","$id":"quarto-resource-document-epub-page-progression-direction"},"quarto-resource-document-epub-ibooks":{"_internalId":3838,"type":"object","description":"be an object","properties":{"version":{"type":"string","description":"be a string","tags":{"description":"What is new in this version of the book."},"documentation":"What is new in this version of the book."},"specified-fonts":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this book provides embedded fonts in a flowing or fixed layout book."},"documentation":"Whether this book provides embedded fonts in a flowing or fixed\nlayout book."},"scroll-axis":{"_internalId":3837,"type":"enum","enum":["vertical","horizontal","default"],"description":"be one of: `vertical`, `horizontal`, `default`","completions":["vertical","horizontal","default"],"exhaustiveCompletions":true,"tags":{"description":"The scroll direction for this book (`vertical`, `horizontal`, or `default`)"},"documentation":"The scroll direction for this book (vertical,\nhorizontal, or default)"}},"patternProperties":{},"closed":true,"tags":{"formats":["$epub-all"],"description":"iBooks specific metadata options."},"documentation":"iBooks specific metadata options.","$id":"quarto-resource-document-epub-ibooks"},"quarto-resource-document-epub-epub-metadata":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\n","long":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\nFor example:\n\n```xml\nCreative Commons\nes-AR\n```\n\nBy default, pandoc will include the following metadata elements:\n`` (from the document title), `` (from the\ndocument authors), `` (from the document date, which should\nbe in [ISO 8601 format]), `` (from the `lang`\nvariable, or, if is not set, the locale), and `` (a randomly generated UUID). Any of these may be\noverridden by elements in the metadata file.\n\nNote: if the source document is Markdown, a YAML metadata block\nin the document can be used instead.\n"}},"documentation":"Look in the specified XML file for metadata for the EPUB. The file\nshould contain a series of Dublin\nCore elements.","$id":"quarto-resource-document-epub-epub-metadata"},"quarto-resource-document-epub-epub-subdirectory":{"_internalId":3847,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"formats":["$epub-all"],"description":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is `EPUB`. To put the EPUB \ncontents in the top level, use an empty string.\n"},"documentation":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is EPUB. To put the\nEPUB contents in the top level, use an empty string.","$id":"quarto-resource-document-epub-epub-subdirectory"},"quarto-resource-document-epub-epub-fonts":{"_internalId":3852,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$epub-all"],"description":{"short":"Embed the specified fonts in the EPUB","long":"Embed the specified fonts in the EPUB. Wildcards can also be used: for example,\n`DejaVuSans-*.ttf`. To use the embedded fonts, you will need to add declarations\nlike the following to your CSS:\n\n```css\n@font-face {\n font-family: DejaVuSans;\n font-style: normal;\n font-weight: normal;\n src:url(\"DejaVuSans-Regular.ttf\");\n}\n```\n"}},"documentation":"Embed the specified fonts in the EPUB","$id":"quarto-resource-document-epub-epub-fonts"},"quarto-resource-document-epub-epub-chapter-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-epub-epub-chapter-level"},"quarto-resource-document-epub-epub-cover-image":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Use the specified image as the EPUB cover. It is recommended\nthat the image be less than 1000px in width and height.\n"},"documentation":"Use the specified image as the EPUB cover. It is recommended that the\nimage be less than 1000px in width and height.","$id":"quarto-resource-document-epub-epub-cover-image"},"quarto-resource-document-epub-epub-title-page":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"If false, disables the generation of a title page."},"documentation":"If false, disables the generation of a title page.","$id":"quarto-resource-document-epub-epub-title-page"},"quarto-resource-document-execute-engine":{"type":"string","description":"be a string","completions":["jupyter","knitr","julia"],"documentation":"Engine used for executable code blocks.","tags":{"description":"Engine used for executable code blocks."},"$id":"quarto-resource-document-execute-engine"},"quarto-resource-document-execute-jupyter":{"_internalId":3879,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3878,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3877,"type":"object","description":"be an object","properties":{"display_name":{"type":"string","description":"be a string","tags":{"description":"The name to display in the UI."},"documentation":"The name to display in the UI."},"language":{"type":"string","description":"be a string","tags":{"description":"The name of the language the kernel implements."},"documentation":"The name of the language the kernel implements."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of the kernel."},"documentation":"The name of the kernel."}},"patternProperties":{},"required":["display_name","language","name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention display_name,language,name","type":"string","pattern":"(?!(^display-name$|^displayName$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"completions":[],"tags":{"hidden":true}}],"description":"be at least one of: `true` or `false`, a string, an object","documentation":"Configures the Jupyter engine.","tags":{"description":"Configures the Jupyter engine."},"$id":"quarto-resource-document-execute-jupyter"},"quarto-resource-document-execute-julia":{"_internalId":3896,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3888,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Arguments to pass to the Julia worker process."},"documentation":"Arguments to pass to the Julia worker process."},"env":{"_internalId":3895,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Environment variables to pass to the Julia worker process."},"documentation":"Environment variables to pass to the Julia worker process."}},"patternProperties":{},"documentation":"Configures the Julia engine.","tags":{"description":"Configures the Julia engine."},"$id":"quarto-resource-document-execute-julia"},"quarto-resource-document-execute-knitr":{"_internalId":3910,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3909,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3905,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Knit options."},"opts_chunk":{"_internalId":3908,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knitr chunk options."},"documentation":"Knitr chunk options."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","documentation":"Set Knitr options.","tags":{"description":"Set Knitr options."},"$id":"quarto-resource-document-execute-knitr"},"quarto-resource-document-execute-cache":{"_internalId":3918,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3917,"type":"enum","enum":["refresh"],"description":"be 'refresh'","completions":["refresh"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'refresh'","tags":{"execute-only":true,"description":{"short":"Cache results of computations.","long":"Cache results of computations (using the [knitr cache](https://yihui.org/knitr/demo/cache/) \nfor R documents, and [Jupyter Cache](https://jupyter-cache.readthedocs.io/en/latest/) \nfor Jupyter documents).\n\nNote that cache invalidation is triggered by changes in chunk source code \n(or other cache attributes you've defined). \n\n- `true`: Cache results\n- `false`: Do not cache results\n- `refresh`: Force a refresh of the cache even if has not been otherwise invalidated.\n"}},"documentation":"Cache results of computations.","$id":"quarto-resource-document-execute-cache"},"quarto-resource-document-execute-freeze":{"_internalId":3926,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3925,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"execute-only":true,"description":{"short":"Re-use previous computational output when rendering","long":"Control the re-use of previous computational output when rendering.\n\n- `true`: Never recompute previously generated computational output during a global project render\n- `false` (default): Recompute previously generated computational output\n- `auto`: Re-compute previously generated computational output only in case their source file changes\n"}},"documentation":"Re-use previous computational output when rendering","$id":"quarto-resource-document-execute-freeze"},"quarto-resource-document-execute-server":{"_internalId":3950,"type":"anyOf","anyOf":[{"_internalId":3931,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3949,"type":"object","description":"be an object","properties":{"type":{"_internalId":3936,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true,"tags":{"description":"Type of server to run behind the document (e.g. `shiny`)"},"documentation":"Type of server to run behind the document\n(e.g. shiny)"},"ojs-export":{"_internalId":3942,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3941,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"OJS variables to export to server."},"documentation":"OJS variables to export to server."},"ojs-import":{"_internalId":3948,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3947,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Server reactive values to import into OJS."},"documentation":"Server reactive values to import into OJS."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,ojs-export,ojs-import","type":"string","pattern":"(?!(^ojs_export$|^ojsExport$|^ojs_import$|^ojsImport$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: 'shiny', an object","documentation":"Document server","tags":{"description":"Document server","hidden":true},"$id":"quarto-resource-document-execute-server"},"quarto-resource-document-execute-daemon":{"_internalId":3957,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","documentation":"Run Jupyter kernels within a peristent daemon (to mitigate kernel\nstartup time).","tags":{"description":{"short":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).","long":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).\nBy default a daemon with a timeout of 300 seconds will be used. Set `daemon`\nto another timeout value or to `false` to disable it altogether.\n"},"hidden":true},"$id":"quarto-resource-document-execute-daemon"},"quarto-resource-document-execute-daemon-restart":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Restart any running Jupyter daemon before rendering.","tags":{"description":"Restart any running Jupyter daemon before rendering.","hidden":true},"$id":"quarto-resource-document-execute-daemon-restart"},"quarto-resource-document-execute-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Enable code cell execution.","tags":{"description":"Enable code cell execution.","hidden":true},"$id":"quarto-resource-document-execute-enabled"},"quarto-resource-document-execute-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Execute code cell execution in Jupyter notebooks.","tags":{"description":"Execute code cell execution in Jupyter notebooks.","hidden":true},"$id":"quarto-resource-document-execute-ipynb"},"quarto-resource-document-execute-debug":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Show code-execution related debug information.","tags":{"description":"Show code-execution related debug information.","hidden":true},"$id":"quarto-resource-document-execute-debug"},"quarto-resource-document-figures-fig-width":{"type":"number","description":"be a number","documentation":"Default width for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default width for figures generated by Matplotlib or R graphics","long":"Default width for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-width"},"quarto-resource-document-figures-fig-height":{"type":"number","description":"be a number","documentation":"Default height for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default height for figures generated by Matplotlib or R graphics","long":"Default height for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-height"},"quarto-resource-document-figures-fig-format":{"_internalId":3972,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"documentation":"Default format for figures generated by Matplotlib or R graphics\n(retina, png, jpeg,\nsvg, or pdf)","tags":{"description":"Default format for figures generated by Matplotlib or R graphics (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"$id":"quarto-resource-document-figures-fig-format"},"quarto-resource-document-figures-fig-dpi":{"type":"number","description":"be a number","documentation":"Default DPI for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default DPI for figures generated by Matplotlib or R graphics","long":"Default DPI for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-dpi"},"quarto-resource-document-figures-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":{"short":"The aspect ratio of the plot, i.e., the ratio of height/width.\n","long":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified,\nthe height of a plot (the option `fig-height`) is calculated from `fig-width * fig-asp`.\n\nThe `fig-asp` option is only available within the knitr engine.\n"}},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width.","$id":"quarto-resource-document-figures-fig-asp"},"quarto-resource-document-figures-fig-responsive":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Whether to make images in this document responsive."},"documentation":"Whether to make images in this document responsive.","$id":"quarto-resource-document-figures-fig-responsive"},"quarto-resource-document-fonts-mainfont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font for the document.","long":"For HTML output, sets the CSS `font-family` on the HTML element.\n\nFor LaTeX output, the main font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the main font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Sets the main font for the document.","$id":"quarto-resource-document-fonts-mainfont"},"quarto-resource-document-fonts-monofont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the font used for when displaying code.","long":"For HTML output, sets the CSS font-family property on code elements.\n\nFor PowerPoint output, sets the font used for code.\n\nFor LaTeX output, the monospace font family for use with `xelatex` or \n`lualatex`: take the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the monspace font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Sets the font used for when displaying code.","$id":"quarto-resource-document-fonts-monofont"},"quarto-resource-document-fonts-fontsize":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font size for the document.","long":"For HTML output, sets the base CSS `font-size` property.\n\nFor LaTeX and ConTeXt output, sets the font size for the document body text.\n"}},"documentation":"Sets the main font size for the document.","$id":"quarto-resource-document-fonts-fontsize"},"quarto-resource-document-fonts-fontenc":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"Allows font encoding to be specified through `fontenc` package.","long":"Allows font encoding to be specified through [`fontenc`](https://www.ctan.org/pkg/fontenc) package.\n\nSee [LaTeX Font Encodings Guide](https://ctan.org/pkg/encguide) for addition information on font encoding.\n"}},"documentation":"Allows font encoding to be specified through fontenc\npackage.","$id":"quarto-resource-document-fonts-fontenc"},"quarto-resource-document-fonts-fontfamily":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Font package to use when compiling a PDF with the `pdflatex` `pdf-engine`.","long":"Font package to use when compiling a PDf with the `pdflatex` `pdf-engine`. \n\nSee [The LaTeX Font Catalogue](https://tug.org/FontCatalogue/) for a \nsummary of font options available.\n\nFor groff (`ms`) files, the font family for example, `T` or `P`.\n"}},"documentation":"Font package to use when compiling a PDF with the\npdflatex pdf-engine.","$id":"quarto-resource-document-fonts-fontfamily"},"quarto-resource-document-fonts-fontfamilyoptions":{"_internalId":3994,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3993,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the package used as `fontfamily`.","long":"Options for the package used as `fontfamily`.\n\nFor example, to use the Libertine font with proportional lowercase\n(old-style) figures through the [`libertinus`](https://ctan.org/pkg/libertinus) package:\n\n```yaml\nfontfamily: libertinus\nfontfamilyoptions:\n - osf\n - p\n```\n"}},"documentation":"Options for the package used as fontfamily.","$id":"quarto-resource-document-fonts-fontfamilyoptions"},"quarto-resource-document-fonts-sansfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The sans serif font family for use with `xelatex` or `lualatex`.","long":"The sans serif font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The sans serif font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfont"},"quarto-resource-document-fonts-mathfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The math font family for use with `xelatex` or `lualatex`.","long":"The math font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The math font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mathfont"},"quarto-resource-document-fonts-CJKmainfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The CJK main font family for use with `xelatex` or `lualatex`.","long":"The CJK main font family for use with `xelatex` or \n`lualatex` using the [`xecjk`](https://ctan.org/pkg/xecjk) package.\n"}},"documentation":"The CJK main font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKmainfont"},"quarto-resource-document-fonts-mainfontoptions":{"_internalId":4006,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4005,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The main font options for use with `xelatex` or `lualatex`.","long":"The main font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n\nFor example, to use the [TeX Gyre](http://www.gust.org.pl/projects/e-foundry/tex-gyre) \nversion of Palatino with lowercase figures:\n\n```yaml\nmainfont: TeX Gyre Pagella\nmainfontoptions:\n - Numbers=Lowercase\n - Numbers=Proportional \n```\n"}},"documentation":"The main font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mainfontoptions"},"quarto-resource-document-fonts-sansfontoptions":{"_internalId":4012,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4011,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The sans serif font options for use with `xelatex` or `lualatex`.","long":"The sans serif font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The sans serif font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfontoptions"},"quarto-resource-document-fonts-monofontoptions":{"_internalId":4018,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4017,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The monospace font options for use with `xelatex` or `lualatex`.","long":"The monospace font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The monospace font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-monofontoptions"},"quarto-resource-document-fonts-mathfontoptions":{"_internalId":4024,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4023,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The math font options for use with `xelatex` or `lualatex`.","long":"The math font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The math font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mathfontoptions"},"quarto-resource-document-fonts-font-paths":{"_internalId":4030,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4029,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["typst"],"description":{"short":"Adds additional directories to search for fonts when compiling with Typst.","long":"Locally, Typst uses installed system fonts. In addition, some custom path \ncan be specified to add directories that should be scanned for fonts.\nSetting this configuration will take precedence over any path set in TYPST_FONT_PATHS environment variable.\n"}},"documentation":"Adds additional directories to search for fonts when compiling with\nTypst.","$id":"quarto-resource-document-fonts-font-paths"},"quarto-resource-document-fonts-CJKoptions":{"_internalId":4036,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4035,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The CJK font options for use with `xelatex` or `lualatex`.","long":"The CJK font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The CJK font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKoptions"},"quarto-resource-document-fonts-microtypeoptions":{"_internalId":4042,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4041,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options to pass to the microtype package.","long":"Options to pass to the [microtype](https://ctan.org/pkg/microtype) package."}},"documentation":"Options to pass to the microtype package.","$id":"quarto-resource-document-fonts-microtypeoptions"},"quarto-resource-document-fonts-pointsize":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The point size, for example, `10p`."},"documentation":"The point size, for example, 10p.","$id":"quarto-resource-document-fonts-pointsize"},"quarto-resource-document-fonts-lineheight":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The line height, for example, `12p`."},"documentation":"The line height, for example, 12p.","$id":"quarto-resource-document-fonts-lineheight"},"quarto-resource-document-fonts-linestretch":{"_internalId":4053,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the line height or spacing for text in the document.","long":"For HTML output sets the CSS `line-height` property on the html \nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the \n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n"}},"documentation":"Sets the line height or spacing for text in the document.","$id":"quarto-resource-document-fonts-linestretch"},"quarto-resource-document-fonts-interlinespace":{"_internalId":4059,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4058,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":"Adjusts line spacing using the `\\setupinterlinespace` command."},"documentation":"Adjusts line spacing using the \\setupinterlinespace\ncommand.","$id":"quarto-resource-document-fonts-interlinespace"},"quarto-resource-document-fonts-linkstyle":{"type":"string","description":"be a string","completions":["normal","bold","slanted","boldslanted","type","cap","small"],"tags":{"formats":["context"],"description":"The typeface style for links in the document."},"documentation":"The typeface style for links in the document.","$id":"quarto-resource-document-fonts-linkstyle"},"quarto-resource-document-fonts-whitespace":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Set the spacing between paragraphs, for example `none`, `small.","long":"Set the spacing between paragraphs, for example `none`, `small` \nusing the [`setupwhitespace`](https://wiki.contextgarden.net/Command/setupwhitespace) \ncommand.\n"}},"documentation":"Set the spacing between paragraphs, for example none,\n`small.","$id":"quarto-resource-document-fonts-whitespace"},"quarto-resource-document-footnotes-footnotes-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for footnotes that shows the footnote contents."},"documentation":"Enables a hover popup for footnotes that shows the footnote\ncontents.","$id":"quarto-resource-document-footnotes-footnotes-hover"},"quarto-resource-document-footnotes-links-as-notes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Causes links to be printed as footnotes."},"documentation":"Causes links to be printed as footnotes.","$id":"quarto-resource-document-footnotes-links-as-notes"},"quarto-resource-document-footnotes-reference-location":{"_internalId":4070,"type":"enum","enum":["block","section","margin","document"],"description":"be one of: `block`, `section`, `margin`, `document`","completions":["block","section","margin","document"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","muse","$html-files","pdf","typst"],"description":{"short":"Location for footnotes and references\n","long":"Specify location for footnotes. Also controls the location of references, if `reference-links` is set.\n\n- `block`: Place at end of current top-level block\n- `section`: Place at end of current section\n- `margin`: Place at the margin\n- `document`: Place at end of document\n"}},"documentation":"Location for footnotes and references","$id":"quarto-resource-document-footnotes-reference-location"},"quarto-resource-document-formatting-indenting":{"_internalId":4076,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4075,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Set the indentation of paragraphs with one or more options.","long":"Set the indentation of paragraphs with one or more options.\n\nSee [ConTeXt Indentation](https://wiki.contextgarden.net/Indentation) for additional information.\n"}},"documentation":"Set the indentation of paragraphs with one or more options.","$id":"quarto-resource-document-formatting-indenting"},"quarto-resource-document-formatting-adjusting":{"_internalId":4079,"type":"enum","enum":["l","r","c","b"],"description":"be one of: `l`, `r`, `c`, `b`","completions":["l","r","c","b"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":"Adjusts text to the left, right, center, or both margins (`l`, `r`, `c`, or `b`)."},"documentation":"Adjusts text to the left, right, center, or both margins\n(l, r, c, or b).","$id":"quarto-resource-document-formatting-adjusting"},"quarto-resource-document-formatting-hyphenate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":{"short":"Whether to hyphenate text at line breaks even in words that do not contain hyphens.","long":"Whether to hyphenate text at line breaks even in words that do not contain \nhyphens if it is necessary to do so to lay out words on a line without excessive spacing\n"}},"documentation":"Whether to hyphenate text at line breaks even in words that do not\ncontain hyphens.","$id":"quarto-resource-document-formatting-hyphenate"},"quarto-resource-document-formatting-list-tables":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["rst"],"description":"If true, tables are formatted as RST list tables."},"documentation":"If true, tables are formatted as RST list tables.","$id":"quarto-resource-document-formatting-list-tables"},"quarto-resource-document-formatting-split-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all","chunkedhtml"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-formatting-split-level"},"quarto-resource-document-funding-funding":{"_internalId":4188,"type":"anyOf","anyOf":[{"_internalId":4186,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4185,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"awards":{"_internalId":4184,"type":"anyOf","anyOf":[{"_internalId":4182,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4123,"type":"anyOf","anyOf":[{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4122,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4152,"type":"anyOf","anyOf":[{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4151,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}},{"_internalId":4183,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4182,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4123,"type":"anyOf","anyOf":[{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4122,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4152,"type":"anyOf","anyOf":[{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4151,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4187,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4186,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4185,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"awards":{"_internalId":4184,"type":"anyOf","anyOf":[{"_internalId":4182,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4123,"type":"anyOf","anyOf":[{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4122,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4152,"type":"anyOf","anyOf":[{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4151,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}},{"_internalId":4183,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4182,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4123,"type":"anyOf","anyOf":[{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4122,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4121,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4120,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4152,"type":"anyOf","anyOf":[{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4151,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4150,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4134,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4139,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4149,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4146,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4181,"type":"anyOf","anyOf":[{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4180,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4179,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4163,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4168,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4178,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4177,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4175,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Information about the funding of the research reported in the article \n(for example, grants, contracts, sponsors) and any open access fees for the article itself\n"},"documentation":"Information about the funding of the research reported in the article\n(for example, grants, contracts, sponsors) and any open access fees for\nthe article itself","$id":"quarto-resource-document-funding-funding"},"quarto-resource-document-hidden-to":{"type":"string","description":"be a string","documentation":"Format to write to (e.g. html)","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-to"},"quarto-resource-document-hidden-writer":{"type":"string","description":"be a string","documentation":"Format to write to (e.g. html)","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-writer"},"quarto-resource-document-hidden-input-file":{"type":"string","description":"be a string","documentation":"Input file to read from","tags":{"description":"Input file to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-file"},"quarto-resource-document-hidden-input-files":{"_internalId":4197,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Input files to read from","tags":{"description":"Input files to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-files"},"quarto-resource-document-hidden-defaults":{"_internalId":4202,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Include options from the specified defaults files","tags":{"description":"Include options from the specified defaults files","hidden":true},"$id":"quarto-resource-document-hidden-defaults"},"quarto-resource-document-hidden-variables":{"_internalId":4203,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Pandoc metadata variables","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-variables"},"quarto-resource-document-hidden-metadata":{"_internalId":4205,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Pandoc metadata variables","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-metadata"},"quarto-resource-document-hidden-request-headers":{"_internalId":4209,"type":"ref","$ref":"pandoc-format-request-headers","description":"be pandoc-format-request-headers","documentation":"Headers to include with HTTP requests by Pandoc","tags":{"description":"Headers to include with HTTP requests by Pandoc","hidden":true},"$id":"quarto-resource-document-hidden-request-headers"},"quarto-resource-document-hidden-trace":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Display trace debug output.","tags":{"description":"Display trace debug output."},"$id":"quarto-resource-document-hidden-trace"},"quarto-resource-document-hidden-fail-if-warnings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Exit with error status if there are any warnings.","tags":{"description":"Exit with error status if there are any warnings."},"$id":"quarto-resource-document-hidden-fail-if-warnings"},"quarto-resource-document-hidden-dump-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Print information about command-line arguments to stdout,\nthen exit.","tags":{"description":"Print information about command-line arguments to *stdout*, then exit.","hidden":true},"$id":"quarto-resource-document-hidden-dump-args"},"quarto-resource-document-hidden-ignore-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Ignore command-line arguments (for use in wrapper scripts).","tags":{"description":"Ignore command-line arguments (for use in wrapper scripts).","hidden":true},"$id":"quarto-resource-document-hidden-ignore-args"},"quarto-resource-document-hidden-file-scope":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Parse each file individually before combining for multifile\ndocuments.","tags":{"description":"Parse each file individually before combining for multifile documents.","hidden":true},"$id":"quarto-resource-document-hidden-file-scope"},"quarto-resource-document-hidden-data-dir":{"type":"string","description":"be a string","documentation":"Specify the user data directory to search for pandoc data files.","tags":{"description":"Specify the user data directory to search for pandoc data files.","hidden":true},"$id":"quarto-resource-document-hidden-data-dir"},"quarto-resource-document-hidden-verbosity":{"_internalId":4224,"type":"enum","enum":["ERROR","WARNING","INFO"],"description":"be one of: `ERROR`, `WARNING`, `INFO`","completions":["ERROR","WARNING","INFO"],"exhaustiveCompletions":true,"documentation":"Level of program output (INFO, ERROR, or\nWARNING)","tags":{"description":"Level of program output (`INFO`, `ERROR`, or `WARNING`)","hidden":true},"$id":"quarto-resource-document-hidden-verbosity"},"quarto-resource-document-hidden-log-file":{"type":"string","description":"be a string","documentation":"Write log messages in machine-readable JSON format to FILE.","tags":{"description":"Write log messages in machine-readable JSON format to FILE.","hidden":true},"$id":"quarto-resource-document-hidden-log-file"},"quarto-resource-document-hidden-track-changes":{"_internalId":4229,"type":"enum","enum":["accept","reject","all"],"description":"be one of: `accept`, `reject`, `all`","completions":["accept","reject","all"],"exhaustiveCompletions":true,"tags":{"formats":["docx"],"description":{"short":"Specify what to do with insertions, deletions, and comments produced by \nthe MS Word “Track Changes” feature.\n","long":"Specify what to do with insertions, deletions, and comments\nproduced by the MS Word \"Track Changes\" feature. \n\n- `accept` (default): Process all insertions and deletions.\n- `reject`: Ignore them.\n- `all`: Include all insertions, deletions, and comments, wrapped\n in spans with `insertion`, `deletion`, `comment-start`, and\n `comment-end` classes, respectively. The author and time of\n change is included. \n\nNotes:\n\n- Both `accept` and `reject` ignore comments.\n\n- `all` is useful for scripting: only\n accepting changes from a certain reviewer, say, or before a\n certain date. If a paragraph is inserted or deleted,\n `track-changes: all` produces a span with the class\n `paragraph-insertion`/`paragraph-deletion` before the\n affected paragraph break. \n\n- This option only affects the docx reader.\n"},"hidden":true},"documentation":"Specify what to do with insertions, deletions, and comments produced\nby the MS Word “Track Changes” feature.","$id":"quarto-resource-document-hidden-track-changes"},"quarto-resource-document-hidden-keep-source":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Embed the input file source code in the generated HTML","long":"Embed the input file source code in the generated HTML. A hidden div with \nclass `quarto-embedded-source-code` will be added to the document. This\noption is not normally used directly but rather in the implementation\nof the `code-tools` option.\n"},"hidden":true},"documentation":"Embed the input file source code in the generated HTML","$id":"quarto-resource-document-hidden-keep-source"},"quarto-resource-document-hidden-keep-hidden":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Keep hidden source code and output (marked with class `.hidden`)","hidden":true},"documentation":"Keep hidden source code and output (marked with class\n.hidden)","$id":"quarto-resource-document-hidden-keep-hidden"},"quarto-resource-document-hidden-prefer-html":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all"],"description":{"short":"Generate HTML output (if necessary) even when targeting markdown.","long":"Generate HTML output (if necessary) even when targeting markdown. Enables the \nembedding of more sophisticated output (e.g. Jupyter widgets) in markdown.\n"},"hidden":true},"documentation":"Generate HTML output (if necessary) even when targeting markdown.","$id":"quarto-resource-document-hidden-prefer-html"},"quarto-resource-document-hidden-output-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Indicates that computational output should not be written within\ndivs. This is necessary for some formats (e.g. pptx) to\nproperly layout figures.","tags":{"description":"Indicates that computational output should not be written within divs. \nThis is necessary for some formats (e.g. `pptx`) to properly layout\nfigures.\n","hidden":true},"$id":"quarto-resource-document-hidden-output-divs"},"quarto-resource-document-hidden-merge-includes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Disable merging of string based and file based includes (some\nformats, specifically ePub, do not correctly handle this merging)","tags":{"description":"Disable merging of string based and file based includes (some formats, \nspecifically ePub, do not correctly handle this merging)\n","hidden":true},"$id":"quarto-resource-document-hidden-merge-includes"},"quarto-resource-document-includes-header-includes":{"_internalId":4245,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4244,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document header.","hidden":true},"documentation":"Content to include at the end of the document header.","$id":"quarto-resource-document-includes-header-includes"},"quarto-resource-document-includes-include-before":{"_internalId":4251,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4250,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the beginning of the document body (e.g. after the `` tag in HTML, or the `\\begin{document}` command in LaTeX).","hidden":true},"documentation":"Content to include at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).","$id":"quarto-resource-document-includes-include-before"},"quarto-resource-document-includes-include-after":{"_internalId":4257,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4256,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document body (before the `` tag in HTML, or the `\\end{document}` command in LaTeX).","hidden":true},"documentation":"Content to include at the end of the document body (before the\n</body> tag in HTML, or the\n\\end{document} command in LaTeX).","$id":"quarto-resource-document-includes-include-after"},"quarto-resource-document-includes-include-before-body":{"_internalId":4269,"type":"anyOf","anyOf":[{"_internalId":4267,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4266,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4268,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4267,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4266,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the beginning of the document body\n(e.g. after the `` tag in HTML, or the `\\begin{document}` command\nin LaTeX).\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include contents at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-before-body"},"quarto-resource-document-includes-include-after-body":{"_internalId":4281,"type":"anyOf","anyOf":[{"_internalId":4279,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4278,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4280,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4279,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4278,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include content at the end of the document body immediately after the markdown content. While it will be included before the closing `` tag in HTML and the `\\end{document}` command in LaTeX, this option refers to the end of the markdown content.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include content at the end of the document body immediately after the\nmarkdown content. While it will be included before the closing\n</body> tag in HTML and the\n\\end{document} command in LaTeX, this option refers to the\nend of the markdown content.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-after-body"},"quarto-resource-document-includes-include-in-header":{"_internalId":4293,"type":"anyOf","anyOf":[{"_internalId":4291,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4290,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4292,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4291,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4290,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the end of the header. This can\nbe used, for example, to include special CSS or JavaScript in HTML\ndocuments.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include contents at the end of the header. This can be used, for\nexample, to include special CSS or JavaScript in HTML documents.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-in-header"},"quarto-resource-document-includes-resources":{"_internalId":4299,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4298,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Path (or glob) to files to publish with this document."},"documentation":"Path (or glob) to files to publish with this document.","$id":"quarto-resource-document-includes-resources"},"quarto-resource-document-includes-headertext":{"_internalId":4305,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4304,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running header.","long":"Text to be in a running header.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n"}},"documentation":"Text to be in a running header.","$id":"quarto-resource-document-includes-headertext"},"quarto-resource-document-includes-footertext":{"_internalId":4311,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4310,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running footer.","long":"Text to be in a running footer.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n\nSee [ConTeXt Headers and Footers](https://wiki.contextgarden.net/Headers_and_Footers) for more information.\n"}},"documentation":"Text to be in a running footer.","$id":"quarto-resource-document-includes-footertext"},"quarto-resource-document-includes-includesource":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["context"],"description":"Whether to include all source documents as file attachments in the PDF file."},"documentation":"Whether to include all source documents as file attachments in the\nPDF file.","$id":"quarto-resource-document-includes-includesource"},"quarto-resource-document-includes-footer":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The footer for man pages."},"documentation":"The footer for man pages.","$id":"quarto-resource-document-includes-footer"},"quarto-resource-document-includes-header":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The header for man pages."},"documentation":"The header for man pages.","$id":"quarto-resource-document-includes-header"},"quarto-resource-document-includes-metadata-file":{"type":"string","description":"be a string","documentation":"Include file with YAML metadata","tags":{"description":{"short":"Include file with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) file. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nMetadata values specified inside the document, or by using `-M`,\noverwrite values specified with this option.\n"},"hidden":true},"$id":"quarto-resource-document-includes-metadata-file"},"quarto-resource-document-includes-metadata-files":{"_internalId":4324,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Include files with YAML metadata","tags":{"description":{"short":"Include files with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) files. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nValues in files specified later in the list will be preferred\nover those specified earlier. Metadata values specified inside\nthe document, or by using `-M`, overwrite values specified with\nthis option.\n"}},"$id":"quarto-resource-document-includes-metadata-files"},"quarto-resource-document-language-lang":{"type":"string","description":"be a string","documentation":"Identifies the main language of the document (e.g. en or\nen-GB).","tags":{"description":{"short":"Identifies the main language of the document (e.g. `en` or `en-GB`).","long":"Identifies the main language of the document using IETF language tags \n(following the [BCP 47](https://www.rfc-editor.org/info/bcp47) standard), \nsuch as `en` or `en-GB`. The [Language subtag lookup](https://r12a.github.io/app-subtags/) \ntool can look up or verify these tags. \n\nThis affects most formats, and controls hyphenation \nin PDF output when using LaTeX (through [`babel`](https://ctan.org/pkg/babel) \nand [`polyglossia`](https://ctan.org/pkg/polyglossia)) or ConTeXt.\n"}},"$id":"quarto-resource-document-language-lang"},"quarto-resource-document-language-language":{"_internalId":4333,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4331,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","documentation":"YAML file containing custom language translations","tags":{"description":"YAML file containing custom language translations"},"$id":"quarto-resource-document-language-language"},"quarto-resource-document-language-shorthands":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Enable babel language-specific shorthands in LaTeX output.","long":"Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"}},"documentation":"Enable babel language-specific shorthands in LaTeX output.","$id":"quarto-resource-document-language-shorthands"},"quarto-resource-document-language-dir":{"_internalId":4338,"type":"enum","enum":["rtl","ltr"],"description":"be one of: `rtl`, `ltr`","completions":["rtl","ltr"],"exhaustiveCompletions":true,"documentation":"The base script direction for the document (rtl or\nltr).","tags":{"description":{"short":"The base script direction for the document (`rtl` or `ltr`).","long":"The base script direction for the document (`rtl` or `ltr`).\n\nFor bidirectional documents, native pandoc `span`s and\n`div`s with the `dir` attribute can\nbe used to override the base direction in some output\nformats. This may not always be necessary if the final\nrenderer (e.g. the browser, when generating HTML) supports\nthe [Unicode Bidirectional Algorithm].\n\nWhen using LaTeX for bidirectional documents, only the\n`xelatex` engine is fully supported (use\n`--pdf-engine=xelatex`).\n"}},"$id":"quarto-resource-document-language-dir"},"quarto-resource-document-latexmk-latex-auto-mk":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Use Quarto's built-in PDF rendering wrapper","long":"Use Quarto's built-in PDF rendering wrapper (includes support \nfor automatically installing missing LaTeX packages)\n"}},"documentation":"Use Quarto’s built-in PDF rendering wrapper","$id":"quarto-resource-document-latexmk-latex-auto-mk"},"quarto-resource-document-latexmk-latex-auto-install":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Enable/disable automatic LaTeX package installation"},"documentation":"Enable/disable automatic LaTeX package installation","$id":"quarto-resource-document-latexmk-latex-auto-install"},"quarto-resource-document-latexmk-latex-min-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Minimum number of compilation passes."},"documentation":"Minimum number of compilation passes.","$id":"quarto-resource-document-latexmk-latex-min-runs"},"quarto-resource-document-latexmk-latex-max-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Maximum number of compilation passes."},"documentation":"Maximum number of compilation passes.","$id":"quarto-resource-document-latexmk-latex-max-runs"},"quarto-resource-document-latexmk-latex-clean":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Clean intermediates after compilation."},"documentation":"Clean intermediates after compilation.","$id":"quarto-resource-document-latexmk-latex-clean"},"quarto-resource-document-latexmk-latex-makeindex":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Program to use for `makeindex`."},"documentation":"Program to use for makeindex.","$id":"quarto-resource-document-latexmk-latex-makeindex"},"quarto-resource-document-latexmk-latex-makeindex-opts":{"_internalId":4355,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `makeindex`."},"documentation":"Array of command line options for makeindex.","$id":"quarto-resource-document-latexmk-latex-makeindex-opts"},"quarto-resource-document-latexmk-latex-tlmgr-opts":{"_internalId":4360,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `tlmgr`."},"documentation":"Array of command line options for tlmgr.","$id":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"quarto-resource-document-latexmk-latex-output-dir":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Output directory for intermediates and PDF."},"documentation":"Output directory for intermediates and PDF.","$id":"quarto-resource-document-latexmk-latex-output-dir"},"quarto-resource-document-latexmk-latex-tinytex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Set to `false` to prevent an installation of TinyTex from being used to compile PDF documents."},"documentation":"Set to false to prevent an installation of TinyTex from\nbeing used to compile PDF documents.","$id":"quarto-resource-document-latexmk-latex-tinytex"},"quarto-resource-document-latexmk-latex-input-paths":{"_internalId":4369,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of paths LaTeX should search for inputs."},"documentation":"Array of paths LaTeX should search for inputs.","$id":"quarto-resource-document-latexmk-latex-input-paths"},"quarto-resource-document-layout-documentclass":{"type":"string","description":"be a string","completions":["scrartcl","scrbook","scrreprt","scrlttr2","article","book","report","memoir"],"tags":{"formats":["$pdf-all"],"description":"The document class."},"documentation":"The document class.","$id":"quarto-resource-document-layout-documentclass"},"quarto-resource-document-layout-classoption":{"_internalId":4377,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4376,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-files","$pdf-all"],"description":{"short":"Options for the document class,","long":"For LaTeX/PDF output, the options set for the document\nclass.\n\nFor HTML output using KaTeX, you can render display\nmath equations flush left using `classoption: fleqn`\n"}},"documentation":"Options for the document class,","$id":"quarto-resource-document-layout-classoption"},"quarto-resource-document-layout-pagestyle":{"type":"string","description":"be a string","completions":["plain","empty","headings"],"tags":{"formats":["$pdf-all"],"description":"Control the `\\pagestyle{}` for the document."},"documentation":"Control the \\pagestyle{} for the document.","$id":"quarto-resource-document-layout-pagestyle"},"quarto-resource-document-layout-papersize":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The paper size for the document.\n"},"documentation":"The paper size for the document.","$id":"quarto-resource-document-layout-papersize"},"quarto-resource-document-layout-brand-mode":{"_internalId":4384,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"formats":["typst","revealjs"],"description":"The brand mode to use for rendering the document, `light` or `dark`.\n"},"documentation":"The brand mode to use for rendering the document, light\nor dark.","$id":"quarto-resource-document-layout-brand-mode"},"quarto-resource-document-layout-layout":{"_internalId":4390,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4389,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"The options for margins and text layout for this document.","long":"The options for margins and text layout for this document.\n\nSee [ConTeXt Layout](https://wiki.contextgarden.net/Layout) for additional information.\n"}},"documentation":"The options for margins and text layout for this document.","$id":"quarto-resource-document-layout-layout"},"quarto-resource-document-layout-page-layout":{"_internalId":4393,"type":"enum","enum":["article","full","custom"],"description":"be one of: `article`, `full`, `custom`","completions":["article","full","custom"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The page layout to use for this document (`article`, `full`, or `custom`)"},"documentation":"The page layout to use for this document (article,\nfull, or custom)","$id":"quarto-resource-document-layout-page-layout"},"quarto-resource-document-layout-page-width":{"type":"number","description":"be a number","tags":{"formats":["docx","$odt-all"],"description":{"short":"Target page width for output (used to compute columns widths for `layout` divs)\n","long":"Target body page width for output (used to compute columns widths for `layout` divs).\nDefaults to 6.5 inches, which corresponds to default letter page settings in \ndocx and odt (8.5 inches with 1 inch for each margins).\n"}},"documentation":"Target page width for output (used to compute columns widths for\nlayout divs)","$id":"quarto-resource-document-layout-page-width"},"quarto-resource-document-layout-grid":{"_internalId":4409,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4400,"type":"enum","enum":["auto","standard","full","slim"],"description":"be one of: `auto`, `standard`, `full`, `slim`","completions":["auto","standard","full","slim"],"exhaustiveCompletions":true,"tags":{"description":"Defines whether to use the standard, slim, or full content grid or to automatically select the most appropriate content grid."},"documentation":"Defines whether to use the standard, slim, or full content grid or to\nautomatically select the most appropriate content grid."},"sidebar-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the sidebar (left) column in an HTML page."},"documentation":"The base width of the sidebar (left) column in an HTML page."},"margin-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the margin (right) column. For Typst, this controls the width of the margin note column."},"documentation":"The base width of the margin (right) column. For Typst, this controls\nthe width of the margin note column."},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column. For Typst, this is computed as the remainder after other columns."},"documentation":"The base width of the body (center) column. For Typst, this is\ncomputed as the remainder after other columns."},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes."},"documentation":"The width of the gutter that appears between columns. For Typst, this\nis the gap between the text column and margin notes."}},"patternProperties":{},"closed":true,"tags":{"formats":["$html-doc","typst"],"description":{"short":"Properties of the grid system used to layout Quarto HTML and Typst pages."}},"documentation":"Properties of the grid system used to layout Quarto HTML and Typst\npages.","$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4415,"type":"anyOf","anyOf":[{"_internalId":4414,"type":"enum","enum":["default","plain","none"],"description":"be one of: `default`, `plain`, `none`","completions":["default","plain","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the appendix for this document (`none`, `plain`, or `default`)","long":"The layout of the appendix for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the appendix, choose the appendix style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"The layout of the appendix for this document (none,\nplain, or default)","$id":"quarto-resource-document-layout-appendix-style"},"quarto-resource-document-layout-appendix-cite-as":{"_internalId":4427,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4426,"type":"anyOf","anyOf":[{"_internalId":4424,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4425,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4424,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the formats which are provided in the citation section of the appendix (`false`, `display`, or `bibtex`).","long":"Controls the formats which are provided in the citation section of the appendix.\n\nUse `false` to disable the display of the 'cite as' appendix. Pass one or more of `display` or `bibtex` to enable that\nformat in 'cite as' appendix.\n"}},"documentation":"Controls the formats which are provided in the citation section of\nthe appendix (false, display, or\nbibtex).","$id":"quarto-resource-document-layout-appendix-cite-as"},"quarto-resource-document-layout-title-block-style":{"_internalId":4433,"type":"anyOf","anyOf":[{"_internalId":4432,"type":"enum","enum":["default","plain","manuscript","none"],"description":"be one of: `default`, `plain`, `manuscript`, `none`","completions":["default","plain","manuscript","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `manuscript`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the title block for this document (`none`, `plain`, or `default`).","long":"The layout of the title block for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the title block, choose the style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"The layout of the title block for this document (none,\nplain, or default).","$id":"quarto-resource-document-layout-title-block-style"},"quarto-resource-document-layout-title-block-banner":{"_internalId":4440,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"Apply a banner style treatment to the title block.","long":"Applies a banner style treatment for the title block. You may specify one of the following values:\n\n`true`\n: Will enable the banner style display and automatically select a background color based upon the theme.\n\n``\n: If you provide a CSS color value, the banner will be enabled and the background color set to the provided CSS color.\n\n``\n: If you provide the path to a file, the banner will be enabled and the background image will be set to the file path.\n\nSee `title-block-banner-color` if you'd like to control the color of the title block banner text.\n"}},"documentation":"Apply a banner style treatment to the title block.","$id":"quarto-resource-document-layout-title-block-banner"},"quarto-resource-document-layout-title-block-banner-color":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":{"short":"Sets the color of text elements in a banner style title block.","long":"Sets the color of text elements in a banner style title block. Use one of the following values:\n\n`body` | `body-bg`\n: Will set the text color to the body text color or body background color, respectively.\n\n``\n: If you provide a CSS color value, the text color will be set to the provided CSS color.\n"}},"documentation":"Sets the color of text elements in a banner style title block.","$id":"quarto-resource-document-layout-title-block-banner-color"},"quarto-resource-document-layout-title-block-categories":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables or disables the display of categories in the title block."}},"documentation":"Enables or disables the display of categories in the title block.","$id":"quarto-resource-document-layout-title-block-categories"},"quarto-resource-document-layout-max-width":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Adds a css `max-width` to the body Element."},"documentation":"Adds a css max-width to the body Element.","$id":"quarto-resource-document-layout-max-width"},"quarto-resource-document-layout-margin-left":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the left margin of the document.","long":"For HTML output, sets the `margin-left` property on the Body element.\n\nFor LaTeX output, sets the left margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the left margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the left page margin.\n"}},"documentation":"Sets the left margin of the document.","$id":"quarto-resource-document-layout-margin-left"},"quarto-resource-document-layout-margin-right":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the right margin of the document.","long":"For HTML output, sets the `margin-right` property on the Body element.\n\nFor LaTeX output, sets the right margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the right margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the right page margin.\n"}},"documentation":"Sets the right margin of the document.","$id":"quarto-resource-document-layout-margin-right"},"quarto-resource-document-layout-margin-top":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the top margin of the document.","long":"For HTML output, sets the `margin-top` property on the Body element.\n\nFor LaTeX output, sets the top margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the top margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the top page margin.\n"}},"documentation":"Sets the top margin of the document.","$id":"quarto-resource-document-layout-margin-top"},"quarto-resource-document-layout-margin-bottom":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the bottom margin of the document.","long":"For HTML output, sets the `margin-bottom` property on the Body element.\n\nFor LaTeX output, sets the bottom margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the bottom margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the bottom page margin.\n"}},"documentation":"Sets the bottom margin of the document.","$id":"quarto-resource-document-layout-margin-bottom"},"quarto-resource-document-layout-geometry":{"_internalId":4460,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4459,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the geometry package.","long":"Options for the [geometry](https://ctan.org/pkg/geometry) package. For example:\n\n```yaml\ngeometry:\n - top=30mm\n - left=20mm\n - heightrounded\n```\n"}},"documentation":"Options for the geometry package.","$id":"quarto-resource-document-layout-geometry"},"quarto-resource-document-layout-hyperrefoptions":{"_internalId":4466,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4465,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Additional non-color options for the hyperref package.","long":"Options for the [hyperref](https://ctan.org/pkg/hyperref) package. For example:\n\n```yaml\nhyperrefoptions:\n - linktoc=all\n - pdfwindowui\n - pdfpagemode=FullScreen \n```\n\nTo customize link colors, please see the [Quarto PDF reference](https://quarto.org/docs/reference/formats/pdf.html#colors).\n"}},"documentation":"Additional non-color options for the hyperref package.","$id":"quarto-resource-document-layout-hyperrefoptions"},"quarto-resource-document-layout-indent":{"_internalId":4473,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Whether to use document class settings for indentation.","long":"Whether to use document class settings for indentation. If the document \nclass settings are not used, the default LaTeX template removes indentation \nand adds space between paragraphs\n\nFor groff (`ms`) documents, the paragraph indent, for example, `2m`.\n"}},"documentation":"Whether to use document class settings for indentation.","$id":"quarto-resource-document-layout-indent"},"quarto-resource-document-layout-block-headings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Make `\\paragraph` and `\\subparagraph` free-standing rather than run-in.","long":"Make `\\paragraph` and `\\subparagraph` (fourth- and\nfifth-level headings, or fifth- and sixth-level with book\nclasses) free-standing rather than run-in; requires further\nformatting to distinguish from `\\subsubsection` (third- or\nfourth-level headings). Instead of using this option,\n[KOMA-Script](https://ctan.org/pkg/koma-script) can adjust headings \nmore extensively:\n\n```yaml\nheader-includes: |\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\itshape]{paragraph}\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\scshape,\n indent=0pt]{subparagraph}\n```\n"}},"documentation":"Make \\paragraph and \\subparagraph\nfree-standing rather than run-in.","$id":"quarto-resource-document-layout-block-headings"},"quarto-resource-document-library-revealjs-url":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Directory containing reveal.js files."},"documentation":"Directory containing reveal.js files.","$id":"quarto-resource-document-library-revealjs-url"},"quarto-resource-document-library-s5-url":{"type":"string","description":"be a string","tags":{"formats":["s5"],"description":"The base url for s5 presentations."},"documentation":"The base url for s5 presentations.","$id":"quarto-resource-document-library-s5-url"},"quarto-resource-document-library-slidy-url":{"type":"string","description":"be a string","tags":{"formats":["slidy"],"description":"The base url for Slidy presentations."},"documentation":"The base url for Slidy presentations.","$id":"quarto-resource-document-library-slidy-url"},"quarto-resource-document-library-slideous-url":{"type":"string","description":"be a string","tags":{"formats":["slideous"],"description":"The base url for Slideous presentations."},"documentation":"The base url for Slideous presentations.","$id":"quarto-resource-document-library-slideous-url"},"quarto-resource-document-lightbox-lightbox":{"_internalId":4513,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4490,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4512,"type":"object","description":"be an object","properties":{"match":{"_internalId":4497,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Set this to `auto` if you'd like any image to be given lightbox treatment.","long":"Set this to `auto` if you'd like any image to be given lightbox treatment. If you omit this, only images with the class `lightbox` will be given the lightbox treatment.\n"}},"documentation":"Set this to auto if you’d like any image to be given\nlightbox treatment."},"effect":{"_internalId":4502,"type":"enum","enum":["fade","zoom","none"],"description":"be one of: `fade`, `zoom`, `none`","completions":["fade","zoom","none"],"exhaustiveCompletions":true,"tags":{"description":"The effect that should be used when opening and closing the lightbox. One of `fade`, `zoom`, `none`. Defaults to `zoom`."},"documentation":"The effect that should be used when opening and closing the lightbox.\nOne of fade, zoom, none. Defaults\nto zoom."},"desc-position":{"_internalId":4507,"type":"enum","enum":["top","bottom","left","right"],"description":"be one of: `top`, `bottom`, `left`, `right`","completions":["top","bottom","left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the title and description when displaying a lightbox. One of `top`, `bottom`, `left`, `right`. Defaults to `bottom`."},"documentation":"The position of the title and description when displaying a lightbox.\nOne of top, bottom, left,\nright. Defaults to bottom."},"loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether galleries should 'loop' to first image in the gallery if the user continues past the last image of the gallery. Boolean that defaults to `true`."},"documentation":"Whether galleries should ‘loop’ to first image in the gallery if the\nuser continues past the last image of the gallery. Boolean that defaults\nto true."},"css-class":{"type":"string","description":"be a string","tags":{"description":"A class name to apply to the lightbox to allow css targeting. This will replace the lightbox class with your custom class name."},"documentation":"A class name to apply to the lightbox to allow css targeting. This\nwill replace the lightbox class with your custom class name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, 'auto', an object","tags":{"formats":["$html-doc"],"description":"Enable or disable lightbox treatment for images in this document. See [Lightbox Figures](https://quarto.org/docs/output-formats/html-lightbox-figures.html) for more details."},"documentation":"Enable or disable lightbox treatment for images in this document. See\nLightbox\nFigures for more details.","$id":"quarto-resource-document-lightbox-lightbox"},"quarto-resource-document-links-link-external-icon":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Show a special icon next to links that leave the current site."},"documentation":"Show a special icon next to links that leave the current site.","$id":"quarto-resource-document-links-link-external-icon"},"quarto-resource-document-links-link-external-newwindow":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Open external links in a new browser window or tab (rather than navigating the current tab)."},"documentation":"Open external links in a new browser window or tab (rather than\nnavigating the current tab).","$id":"quarto-resource-document-links-link-external-newwindow"},"quarto-resource-document-links-link-external-filter":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","revealjs"],"description":{"short":"A regular expression that can be used to determine whether a link is an internal link.","long":"A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"}},"documentation":"A regular expression that can be used to determine whether a link is\nan internal link.","$id":"quarto-resource-document-links-link-external-filter"},"quarto-resource-document-links-format-links":{"_internalId":4551,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4550,"type":"anyOf","anyOf":[{"_internalId":4548,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4538,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The title for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for the link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4547,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The format that this link represents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"},{"_internalId":4549,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object","items":{"_internalId":4548,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4538,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The title for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for the link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4547,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The format that this link represents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"formats":["$html-doc"],"description":{"short":"Controls whether links to other rendered formats are displayed in HTML output.","long":"Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"}},"documentation":"Controls whether links to other rendered formats are displayed in\nHTML output.","$id":"quarto-resource-document-links-format-links"},"quarto-resource-document-links-notebook-links":{"_internalId":4559,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4558,"type":"enum","enum":["inline","global"],"description":"be one of: `inline`, `global`","completions":["inline","global"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `inline`, `global`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the display of links to notebooks that provided embedded content or are created from documents.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"}},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.","$id":"quarto-resource-document-links-notebook-links"},"quarto-resource-document-links-other-links":{"_internalId":4568,"type":"anyOf","anyOf":[{"_internalId":4564,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4567,"type":"ref","$ref":"other-links","description":"be other-links"}],"description":"be at least one of: 'false', other-links","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Other Links` section."},"documentation":"A list of links that should be displayed below the table of contents\nin an Other Links section.","$id":"quarto-resource-document-links-other-links"},"quarto-resource-document-links-code-links":{"_internalId":4577,"type":"anyOf","anyOf":[{"_internalId":4573,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4576,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: 'false', code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Code Links` section."},"documentation":"A list of links that should be displayed below the table of contents\nin an Code Links section.","$id":"quarto-resource-document-links-code-links"},"quarto-resource-document-links-notebook-subarticles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$jats-all"],"description":{"short":"Controls whether referenced notebooks are embedded in JATS output as subarticles.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nDefaults to `true` - specify `false` to disable embedding Notebook as subarticles with the JATS output.\n"}},"documentation":"Controls whether referenced notebooks are embedded in JATS output as\nsubarticles.","$id":"quarto-resource-document-links-notebook-subarticles"},"quarto-resource-document-links-notebook-view":{"_internalId":4596,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4595,"type":"anyOf","anyOf":[{"_internalId":4593,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4592,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4594,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4593,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4592,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}}],"description":"be at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"formats":["$html-doc"],"description":"Configures the HTML viewer for notebooks that provide embedded content."},"documentation":"Configures the HTML viewer for notebooks that provide embedded\ncontent.","$id":"quarto-resource-document-links-notebook-view"},"quarto-resource-document-links-notebook-view-style":{"_internalId":4599,"type":"enum","enum":["document","notebook"],"description":"be one of: `document`, `notebook`","completions":["document","notebook"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The style of document to render. Setting this to `notebook` will create additional notebook style affordances.","hidden":true},"documentation":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances.","$id":"quarto-resource-document-links-notebook-view-style"},"quarto-resource-document-links-notebook-preview-options":{"_internalId":4604,"type":"object","description":"be an object","properties":{"back":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a back button in the notebook preview."},"documentation":"Whether to show a back button in the notebook preview."}},"patternProperties":{},"tags":{"formats":["$html-doc"],"description":"Options for controlling the display and behavior of Notebook previews."},"documentation":"Options for controlling the display and behavior of Notebook\npreviews.","$id":"quarto-resource-document-links-notebook-preview-options"},"quarto-resource-document-links-canonical-url":{"_internalId":4611,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$html-doc"],"description":{"short":"Include a canonical link tag in website pages","long":"Include a canonical link tag in website pages. You may pass either `true` to \nautomatically generate a canonical link, or pass a canonical url that you'd like\nto have placed in the `href` attribute of the tag.\n\nCanonical links can only be generated for websites with a known `site-url`.\n"}},"documentation":"Include a canonical link tag in website pages","$id":"quarto-resource-document-links-canonical-url"},"quarto-resource-document-listing-listing":{"_internalId":4628,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4627,"type":"anyOf","anyOf":[{"_internalId":4625,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4624,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4626,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4625,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4624,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"}}],"description":"be at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"formats":["$html-doc"],"description":"Automatically generate the contents of a page from a list of Quarto documents or other custom data."},"documentation":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data.","$id":"quarto-resource-document-listing-listing"},"quarto-resource-document-mermaid-mermaid":{"_internalId":4634,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4633,"type":"enum","enum":["default","dark","forest","neutral"],"description":"be one of: `default`, `dark`, `forest`, `neutral`","completions":["default","dark","forest","neutral"],"exhaustiveCompletions":true,"tags":{"description":"The mermaid built-in theme to use."},"documentation":"The mermaid built-in theme to use."}},"patternProperties":{},"tags":{"formats":["$html-files"],"description":"Mermaid diagram options"},"documentation":"Mermaid diagram options","$id":"quarto-resource-document-mermaid-mermaid"},"quarto-resource-document-metadata-keywords":{"_internalId":4640,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4639,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$asciidoc-all","$html-files","$pdf-all","context","odt","$office-all"],"description":"List of keywords to be included in the document metadata."},"documentation":"List of keywords to be included in the document metadata.","$id":"quarto-resource-document-metadata-keywords"},"quarto-resource-document-metadata-subject":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$office-all","odt"],"description":"The document subject"},"documentation":"The document subject","$id":"quarto-resource-document-metadata-subject"},"quarto-resource-document-metadata-description":{"type":"string","description":"be a string","tags":{"formats":["odt","$office-all"],"description":"The document description. Some applications show this as `Comments` metadata."},"documentation":"The document description. Some applications show this as\nComments metadata.","$id":"quarto-resource-document-metadata-description"},"quarto-resource-document-metadata-category":{"type":"string","description":"be a string","tags":{"formats":["$office-all"],"description":"The document category."},"documentation":"The document category.","$id":"quarto-resource-document-metadata-category"},"quarto-resource-document-metadata-copyright":{"_internalId":4677,"type":"anyOf","anyOf":[{"_internalId":4674,"type":"object","description":"be an object","properties":{"year":{"_internalId":4661,"type":"anyOf","anyOf":[{"_internalId":4659,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"},{"_internalId":4660,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4659,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"}}],"description":"be at least one of: at least one of: a string, a number, an array of values, where each element must be at least one of: a string, a number","tags":{"complete-from":["anyOf",0],"description":"The year for this copyright"},"documentation":"The year for this copyright"},"holder":{"_internalId":4667,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The holder of the copyright."},{"_internalId":4666,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The holder of the copyright."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"statement":{"_internalId":4673,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."},{"_internalId":4672,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-doc","$jats-all"],"description":"The copyright for this document, if any."},"documentation":"The copyright for this document, if any.","$id":"quarto-resource-document-metadata-copyright"},"quarto-resource-document-metadata-license":{"_internalId":4695,"type":"anyOf","anyOf":[{"_internalId":4693,"type":"anyOf","anyOf":[{"_internalId":4690,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The type of the license."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"A URL to the license."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":4694,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4693,"type":"anyOf","anyOf":[{"_internalId":4690,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The type of the license."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"A URL to the license."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-doc","$jats-all"],"description":{"short":"The License for this document, if any. (e.g. `CC BY`)","long":"The license for this document, if any. \n\nCreative Commons licenses `CC BY`, `CC BY-SA`, `CC BY-ND`, `CC BY-NC`, `CC BY-NC-SA`, and `CC BY-NC-ND` will automatically generate a license link\nin the document appendix. Other license text will be placed in the appendix verbatim.\n"}},"documentation":"The License for this document, if any. (e.g. CC BY)","$id":"quarto-resource-document-metadata-license"},"quarto-resource-document-metadata-title-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"Sets the title metadata for the document"},"documentation":"Sets the title metadata for the document","$id":"quarto-resource-document-metadata-title-meta"},"quarto-resource-document-metadata-pagetitle":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the title metadata for the document"},"documentation":"Sets the title metadata for the document","$id":"quarto-resource-document-metadata-pagetitle"},"quarto-resource-document-metadata-title-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Specify STRING as a prefix at the beginning of the title that appears in \nthe HTML header (but not in the title as it appears at the beginning of the body)\n"},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)","$id":"quarto-resource-document-metadata-title-prefix"},"quarto-resource-document-metadata-description-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the description metadata for the document"},"documentation":"Sets the description metadata for the document","$id":"quarto-resource-document-metadata-description-meta"},"quarto-resource-document-metadata-author-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-files"],"description":"Sets the author metadata for the document"},"documentation":"Sets the author metadata for the document","$id":"quarto-resource-document-metadata-author-meta"},"quarto-resource-document-metadata-date-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-all","$pdf-all"],"description":"Sets the date metadata for the document"},"documentation":"Sets the date metadata for the document","$id":"quarto-resource-document-metadata-date-meta"},"quarto-resource-document-numbering-number-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Number section headings","tags":{"description":{"short":"Number section headings","long":"Number section headings rendered output. By default, sections are not numbered.\nSections with class `.unnumbered` will never be numbered, even if `number-sections`\nis specified.\n"}},"$id":"quarto-resource-document-numbering-number-sections"},"quarto-resource-document-numbering-number-depth":{"type":"number","description":"be a number","tags":{"formats":["$html-all","$pdf-all","docx"],"description":{"short":"The depth to which sections should be numbered.","long":"By default, all headings in your document create a \nnumbered section. You customize numbering depth using \nthe `number-depth` option. \n\nFor example, to only number sections immediately below \nthe chapter level, use this:\n\n```yaml \nnumber-depth: 1\n```\n"}},"documentation":"The depth to which sections should be numbered.","$id":"quarto-resource-document-numbering-number-depth"},"quarto-resource-document-numbering-secnumdepth":{"type":"number","description":"be a number","tags":{"formats":["$pdf-all"],"description":"The numbering depth for sections. (Use `number-depth` instead).","hidden":true},"documentation":"The numbering depth for sections. (Use number-depth\ninstead).","$id":"quarto-resource-document-numbering-secnumdepth"},"quarto-resource-document-numbering-number-offset":{"_internalId":4719,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4718,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":{"short":"Offset for section headings in output (offsets are 0 by default)","long":"Offset for section headings in output (offsets are 0 by default)\nThe first number is added to the section number for\ntop-level headings, the second for second-level headings, and so on.\nSo, for example, if you want the first top-level heading in your\ndocument to be numbered \"6\", specify `number-offset: 5`. If your\ndocument starts with a level-2 heading which you want to be numbered\n\"1.5\", specify `number-offset: [1,4]`. Implies `number-sections`\n"}},"documentation":"Offset for section headings in output (offsets are 0 by default)","$id":"quarto-resource-document-numbering-number-offset"},"quarto-resource-document-numbering-section-numbering":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"Schema to use for numbering sections, e.g. `1.A.1`"},"documentation":"Schema to use for numbering sections, e.g. 1.A.1","$id":"quarto-resource-document-numbering-section-numbering"},"quarto-resource-document-numbering-shift-heading-level-by":{"type":"number","description":"be a number","documentation":"Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.","tags":{"description":{"short":"Shift heading levels by a positive or negative integer. For example, with \n`shift-heading-level-by: -1`, level 2 headings become level 1 headings.\n","long":"Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"}},"$id":"quarto-resource-document-numbering-shift-heading-level-by"},"quarto-resource-document-numbering-page-numbering":{"_internalId":4730,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["typst"],"description":{"short":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n","long":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"}},"documentation":"Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.","$id":"quarto-resource-document-numbering-page-numbering"},"quarto-resource-document-numbering-pagenumbering":{"_internalId":4736,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4735,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Sets the page numbering style and location for the document.","long":"Sets the page numbering style and location for the document using the\n`\\setuppagenumbering` command. \n\nSee [ConTeXt Page Numbering](https://wiki.contextgarden.net/Command/setuppagenumbering) \nfor additional information.\n"}},"documentation":"Sets the page numbering style and location for the document.","$id":"quarto-resource-document-numbering-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4739,"type":"enum","enum":["default","section","chapter","part"],"description":"be one of: `default`, `section`, `chapter`, `part`","completions":["default","section","chapter","part"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","context","$docbook-all","tei"],"description":{"short":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type.\n","long":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type. \n\nThe default behavior is to determine the\nbest division type via heuristics: unless other conditions\napply, `section` is chosen. When the `documentclass`\nvariable is set to `report`, `book`, or `memoir` (unless the\n`article` option is specified), `chapter` is implied as the\nsetting for this option. If `beamer` is the output format,\nspecifying either `chapter` or `part` will cause top-level\nheadings to become `\\part{..}`, while second-level headings\nremain as their default type.\n"}},"documentation":"Treat top-level headings as the given division type\n(default, section, chapter, or\npart). The hierarchy order is part, chapter, then section;\nall headings are shifted such that the top-level heading becomes the\nspecified type.","$id":"quarto-resource-document-numbering-top-level-division"},"quarto-resource-document-ojs-ojs-engine":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"If `true`, force the presence of the OJS runtime. If `false`, force the absence instead.\nIf unset, the OJS runtime is included only if OJS cells are present in the document.\n"},"documentation":"If true, force the presence of the OJS runtime. If\nfalse, force the absence instead. If unset, the OJS runtime\nis included only if OJS cells are present in the document.","$id":"quarto-resource-document-ojs-ojs-engine"},"quarto-resource-document-options-reference-doc":{"type":"string","description":"be a string","tags":{"formats":["$office-all","odt"],"description":"Use the specified file as a style reference in producing a docx, \npptx, or odt file.\n"},"documentation":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","$id":"quarto-resource-document-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4746,"type":"ref","$ref":"brand-path-bool-light-dark","description":"be brand-path-bool-light-dark","documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"$id":"quarto-resource-document-options-brand"},"quarto-resource-document-options-theme":{"_internalId":4771,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4755,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4770,"type":"object","description":"be an object","properties":{"light":{"_internalId":4763,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"The light theme name, theme scss file, or a mix of both."},{"_internalId":4762,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"The light theme name, theme scss file, or a mix of both."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"dark":{"_internalId":4769,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"The dark theme name, theme scss file, or a mix of both."},{"_internalId":4768,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"The dark theme name, theme scss file, or a mix of both."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an array of values, where each element must be a string, an object","tags":{"formats":["$html-doc","revealjs","beamer","dashboard"],"description":"Theme name, theme scss file, or a mix of both."},"documentation":"Theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-options-theme"},"quarto-resource-document-options-body-classes":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Classes to apply to the body of the document.\n"},"documentation":"Classes to apply to the body of the document.","$id":"quarto-resource-document-options-body-classes"},"quarto-resource-document-options-minimal":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Disables the built in html features like theming, anchor sections, code block behavior, and more."},"documentation":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.","$id":"quarto-resource-document-options-minimal"},"quarto-resource-document-options-document-css":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables inclusion of Pandoc default CSS for this document.","hidden":true},"documentation":"Enables inclusion of Pandoc default CSS for this document.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4783,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4782,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"One or more CSS style sheets."},"documentation":"One or more CSS style sheets.","$id":"quarto-resource-document-options-css"},"quarto-resource-document-options-anchor-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables hover over a section title to see an anchor link."},"documentation":"Enables hover over a section title to see an anchor link.","$id":"quarto-resource-document-options-anchor-sections"},"quarto-resource-document-options-tabsets":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables tabsets to present content."},"documentation":"Enables tabsets to present content.","$id":"quarto-resource-document-options-tabsets"},"quarto-resource-document-options-smooth-scroll":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables smooth scrolling within the page."},"documentation":"Enables smooth scrolling within the page.","$id":"quarto-resource-document-options-smooth-scroll"},"quarto-resource-document-options-respect-user-color-scheme":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables setting dark mode based on the `prefers-color-scheme` media query.","long":"If set, Quarto reads the `prefers-color-scheme` media query to determine whether to show\nthe user a dark or light page. Otherwise the author-preferred color scheme is shown.\n"}},"documentation":"Enables setting dark mode based on the\nprefers-color-scheme media query.","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4805,"type":"anyOf","anyOf":[{"_internalId":4796,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4804,"type":"object","description":"be an object","properties":{"method":{"_internalId":4801,"type":"ref","$ref":"math-methods","description":"be math-methods"},"url":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["method"]}],"description":"be at least one of: math-methods, an object","tags":{"formats":["$html-doc","$epub-all","gfm"],"description":{"short":"Method use to render math in HTML output","long":"Method use to render math in HTML output (`plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`).\n\nSee the Pandoc documentation on [Math Rendering in HTML](https://pandoc.org/MANUAL.html#math-rendering-in-html)\nfor additional details.\n"}},"documentation":"Method use to render math in HTML output","$id":"quarto-resource-document-options-html-math-method"},"quarto-resource-document-options-section-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Wrap sections in `
` tags and attach identifiers to the enclosing `
`\nrather than the heading itself.\n"},"documentation":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself.","$id":"quarto-resource-document-options-section-divs"},"quarto-resource-document-options-identifier-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files","$docbook-all","$markdown-all","haddock"],"description":{"short":"Specify a prefix to be added to all identifiers and internal links.","long":"Specify a prefix to be added to all identifiers and internal links in HTML and\nDocBook output, and to footnote numbers in Markdown and Haddock output. \nThis is useful for preventing duplicate identifiers when generating fragments\nto be included in other pages.\n"}},"documentation":"Specify a prefix to be added to all identifiers and internal\nlinks.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4812,"type":"enum","enum":["none","references","javascript"],"description":"be one of: `none`, `references`, `javascript`","completions":["none","references","javascript"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Method for obfuscating mailto: links in HTML documents.","long":"Specify a method for obfuscating `mailto:` links in HTML documents.\n\n- `javascript`: Obfuscate links using JavaScript.\n- `references`: Obfuscate links by printing their letters as decimal or hexadecimal character references.\n- `none` (default): Do not obfuscate links.\n"}},"documentation":"Method for obfuscating mailto: links in HTML documents.","$id":"quarto-resource-document-options-email-obfuscation"},"quarto-resource-document-options-html-q-tags":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Use `` tags for quotes in HTML."},"documentation":"Use <q> tags for quotes in HTML.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4817,"type":"enum","enum":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"description":"be one of: `pdflatex`, `lualatex`, `xelatex`, `latexmk`, `tectonic`, `wkhtmltopdf`, `weasyprint`, `pagedjs-cli`, `prince`, `context`, `pdfroff`, `typst`","completions":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the specified engine when producing PDF output.","long":"Use the specified engine when producing PDF output. If the engine is not\nin your PATH, the full path of the engine may be specified here. If this\noption is not specified, Quarto uses the following defaults\ndepending on the output format in use:\n\n- `latex`: `lualatex` (other options: `pdflatex`, `xelatex`,\n `tectonic`, `latexmk`)\n- `context`: `context`\n- `html`: `wkhtmltopdf` (other options: `prince`, `weasyprint`, `pagedjs-cli`;\n see [print-css.rocks](https://print-css.rocks) for a good\n introduction to PDF generation from HTML/CSS.)\n- `ms`: `pdfroff`\n- `typst`: `typst`\n"}},"documentation":"Use the specified engine when producing PDF output.","$id":"quarto-resource-document-options-pdf-engine"},"quarto-resource-document-options-pdf-engine-opt":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the given string as a command-line argument to the `pdf-engine`.","long":"Use the given string as a command-line argument to the pdf-engine.\nFor example, to use a persistent directory foo for latexmk’s auxiliary\nfiles, use `pdf-engine-opt: -outdir=foo`. Note that no check for \nduplicate options is done.\n"}},"documentation":"Use the given string as a command-line argument to the\npdf-engine.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4824,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Pass multiple command-line arguments to the `pdf-engine`.","long":"Use the given strings passed as a array as command-line arguments to the pdf-engine.\nThis is an alternative to `pdf-engine-opt` for passing multiple options.\n"}},"documentation":"Pass multiple command-line arguments to the\npdf-engine.","$id":"quarto-resource-document-options-pdf-engine-opts"},"quarto-resource-document-options-beamerarticle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf"],"description":"Whether to produce a Beamer article from this presentation."},"documentation":"Whether to produce a Beamer article from this presentation.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4832,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Add an extra Beamer option using `\\setbeameroption{}`."},"documentation":"Add an extra Beamer option using \\setbeameroption{}.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4835,"type":"enum","enum":[43,169,1610,149,141,54,32],"description":"be one of: `43`, `169`, `1610`, `149`, `141`, `54`, `32`","completions":["43","169","1610","149","141","54","32"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"The aspect ratio for this presentation."},"documentation":"The aspect ratio for this presentation.","$id":"quarto-resource-document-options-aspectratio"},"quarto-resource-document-options-logo":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The logo image."},"documentation":"The logo image.","$id":"quarto-resource-document-options-logo"},"quarto-resource-document-options-titlegraphic":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The image for the title slide."},"documentation":"The image for the title slide.","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4842,"type":"enum","enum":["empty","frame","vertical","horizontal"],"description":"be one of: `empty`, `frame`, `vertical`, `horizontal`","completions":["empty","frame","vertical","horizontal"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Controls navigation symbols for the presentation (`empty`, `frame`, `vertical`, or `horizontal`)"},"documentation":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$id":"quarto-resource-document-options-navigation"},"quarto-resource-document-options-section-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Whether to enable title pages for new sections."},"documentation":"Whether to enable title pages for new sections.","$id":"quarto-resource-document-options-section-titles"},"quarto-resource-document-options-colortheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer color theme for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer color theme for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4852,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4851,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer color theme options for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer color theme options for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-colorthemeoptions"},"quarto-resource-document-options-fonttheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer font theme for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer font theme for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4860,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4859,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer font theme options for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer font theme options for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-fontthemeoptions"},"quarto-resource-document-options-innertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer inner theme for this presentation, passed to `\\useinnertheme`."},"documentation":"The Beamer inner theme for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4868,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4867,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer inner theme options for this presentation, passed to `\\useinnertheme`."},"documentation":"The Beamer inner theme options for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-innerthemeoptions"},"quarto-resource-document-options-outertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer outer theme for this presentation, passed to `\\useoutertheme`."},"documentation":"The Beamer outer theme for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4876,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4875,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer outer theme options for this presentation, passed to `\\useoutertheme`."},"documentation":"The Beamer outer theme options for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_internalId":4882,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4881,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Options passed to LaTeX Beamer themes inside `\\usetheme`."},"documentation":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-themeoptions"},"quarto-resource-document-options-section":{"type":"number","description":"be a number","tags":{"formats":["man"],"description":"The section number in man pages."},"documentation":"The section number in man pages.","$id":"quarto-resource-document-options-section"},"quarto-resource-document-options-variant":{"type":"string","description":"be a string","tags":{"formats":["$markdown-all"],"description":"Enable and disable extensions for markdown output (e.g. \"+emoji\")\n"},"documentation":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$id":"quarto-resource-document-options-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4889,"type":"enum","enum":["setext","atx"],"description":"be one of: `setext`, `atx`","completions":["setext","atx"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","ipynb"],"description":"Specify whether to use `atx` (`#`-prefixed) or\n`setext` (underlined) headings for level 1 and 2\nheadings (`atx` or `setext`).\n"},"documentation":"Specify whether to use atx (#-prefixed) or\nsetext (underlined) headings for level 1 and 2 headings\n(atx or setext).","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4892,"type":"enum","enum":["none","all","best"],"description":"be one of: `none`, `all`, `best`","completions":["none","all","best"],"exhaustiveCompletions":true,"tags":{"formats":["ipynb"],"description":{"short":"Determines which ipynb cell output formats are rendered (`none`, `all`, or `best`).","long":"Determines which ipynb cell output formats are rendered.\n\n- `all`: Preserve all of the data formats included in the original.\n- `none`: Omit the contents of data cells.\n- `best` (default): Instruct pandoc to try to pick the\n richest data block in each output cell that is compatible\n with the output format.\n"}},"documentation":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"semver version range for required quarto version","tags":{"description":{"short":"semver version range for required quarto version","long":"A semver version range describing the supported quarto versions for this document\nor project.\n\nExamples:\n\n- `>= 1.1.0`: Require at least quarto version 1.1\n- `1.*`: Require any quarto versions whose major version number is 1\n"}},"$id":"quarto-resource-document-options-quarto-required"},"quarto-resource-document-options-preview-mode":{"type":"string","description":"be a string","tags":{"formats":["$jats-all","gfm"],"description":{"short":"The mode to use when previewing this document.","long":"The mode to use when previewing this document. To disable any special\npreviewing features, pass `raw` as the preview-mode.\n"}},"documentation":"The mode to use when previewing this document.","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4903,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["context"],"description":{"short":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.","long":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.\n\nIf the value is set to `true`, `1b:2005` will be used as default.\n\nTo successfully generate PDF/A the required\nICC color profiles have to be available and the content and all\nincluded files (such as images) have to be standard conforming.\nThe ICC profiles and output intent may be specified using the\nvariables `pdfaiccprofile` and `pdfaintent`. See also [ConTeXt\nPDFA](https://wiki.contextgarden.net/PDF/A) for more details.\n"}},"documentation":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4909,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4908,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n","long":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n\nIf left unspecified, `sRGB.icc` is used as default. May be repeated to \ninclude multiple profiles. Note that the profiles have to be available \non the system. They can be obtained from \n[ConTeXt ICC Profiles](https://wiki.contextgarden.net/PDFX#ICC_profiles).\n"}},"documentation":"When used in conjunction with pdfa, specifies the ICC\nprofile to use in the PDF, e.g. default.cmyk.","$id":"quarto-resource-document-pdfa-pdfaiccprofile"},"quarto-resource-document-pdfa-pdfaintent":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the output intent for the colors.","long":"When used in conjunction with `pdfa`, specifies the output intent for\nthe colors, for example `ISO coated v2 300\\letterpercent\\space (ECI)`\n\nIf left unspecified, `sRGB IEC61966-2.1` is used as default.\n"}},"documentation":"When used in conjunction with pdfa, specifies the output\nintent for the colors.","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-pdfa-pdf-standard":{"_internalId":4918,"type":"anyOf","anyOf":[{"_internalId":4916,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true},{"_internalId":4917,"type":"array","description":"be an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","items":{"_internalId":4916,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`, an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all","typst"],"description":{"short":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","long":"Specifies PDF conformance standards and/or version for the output.\n\nAccepts a single value or array of values:\n\n**PDF versions** (both Typst and LaTeX):\n`1.4`, `1.5`, `1.6`, `1.7`, `2.0`\n\n**PDF/A standards** (both engines):\n`a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`\n\n**PDF/A standards** (Typst only):\n`a-1a`, `a-4e`\n\n**PDF/UA standards**:\n`ua-1` (Typst), `ua-2` (LaTeX)\n\n**PDF/X standards** (LaTeX only):\n`x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`\n\nExample: `pdf-standard: [a-2b, ua-2]` for accessible archival PDF.\n"}},"documentation":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","$id":"quarto-resource-document-pdfa-pdf-standard"},"quarto-resource-document-references-bibliography":{"_internalId":4924,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4923,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Document bibliography (BibTeX or CSL). May be a single file or a list of files\n"},"documentation":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Citation Style Language file to use for formatting references.","tags":{"description":"Citation Style Language file to use for formatting references."},"$id":"quarto-resource-document-references-csl"},"quarto-resource-document-references-citations-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for citation that shows the reference information."},"documentation":"Enables a hover popup for citation that shows the reference\ninformation.","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4931,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","typst"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"Where citation information should be displayed (document\nor margin)","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":4934,"type":"enum","enum":["citeproc","natbib","biblatex"],"description":"be one of: `citeproc`, `natbib`, `biblatex`","completions":["citeproc","natbib","biblatex"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Method used to format citations (`citeproc`, `natbib`, or `biblatex`).\n"},"documentation":"Method used to format citations (citeproc,\nnatbib, or biblatex).","$id":"quarto-resource-document-references-cite-method"},"quarto-resource-document-references-citeproc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Turn on built-in citation processing","tags":{"description":{"short":"Turn on built-in citation processing","long":"Turn on built-in citation processing. To use this feature, you will need\nto have a document containing citations and a source of bibliographic data: \neither an external bibliography file or a list of `references` in the \ndocument's YAML metadata. You can optionally also include a `csl` \ncitation style file.\n"}},"$id":"quarto-resource-document-references-citeproc"},"quarto-resource-document-references-biblatexoptions":{"_internalId":4942,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4941,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"A list of options for BibLaTeX."},"documentation":"A list of options for BibLaTeX.","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":4948,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4947,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"One or more options to provide for `natbib` when generating a bibliography."},"documentation":"One or more options to provide for natbib when\ngenerating a bibliography.","$id":"quarto-resource-document-references-natbiboptions"},"quarto-resource-document-references-biblio-style":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography style to use (e.g. `\\bibliographystyle{dinat}`) when using `natbib` or `biblatex`."},"documentation":"The bibliography style to use\n(e.g. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","$id":"quarto-resource-document-references-biblio-style"},"quarto-resource-document-references-bibliographystyle":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The bibliography style to use (e.g. `#set bibliography(style: \"apa\")`) when using typst built-in citation system (e.g when not `citeproc: true`)."},"documentation":"The bibliography style to use\n(e.g. #set bibliography(style: \"apa\")) when using typst\nbuilt-in citation system (e.g when not citeproc: true).","$id":"quarto-resource-document-references-bibliographystyle"},"quarto-resource-document-references-biblio-title":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography title to use when using `natbib` or `biblatex`."},"documentation":"The bibliography title to use when using natbib or\nbiblatex.","$id":"quarto-resource-document-references-biblio-title"},"quarto-resource-document-references-biblio-config":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Controls whether to output bibliography configuration for `natbib` or `biblatex` when cite method is not `citeproc`."},"documentation":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","$id":"quarto-resource-document-references-biblio-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","tags":{"description":{"short":"JSON file containing abbreviations of journals that should be used in formatted bibliographies.","long":"JSON file containing abbreviations of journals that should be\nused in formatted bibliographies when `form=\"short\"` is\nspecified. The format of the file can be illustrated with an\nexample:\n\n```json\n{ \"default\": {\n \"container-title\": {\n \"Lloyd's Law Reports\": \"Lloyd's Rep\",\n \"Estates Gazette\": \"EG\",\n \"Scots Law Times\": \"SLT\"\n }\n }\n}\n```\n"}},"$id":"quarto-resource-document-references-citation-abbreviations"},"quarto-resource-document-references-link-citations":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":"If true, citations will be hyperlinked to the corresponding bibliography entries (for author-date and numerical styles only). Defaults to false."},"documentation":"If true, citations will be hyperlinked to the corresponding\nbibliography entries (for author-date and numerical styles only).\nDefaults to false.","$id":"quarto-resource-document-references-link-citations"},"quarto-resource-document-references-link-bibliography":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks.","long":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks. (If an entry contains a DOI, PMCID, PMID, or URL, but none of \nthese fields are rendered by the style, then the title, or in the absence of a title the whole entry, will be hyperlinked.) Defaults to true.\n"}},"documentation":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","$id":"quarto-resource-document-references-link-bibliography"},"quarto-resource-document-references-notes-after-punctuation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"Places footnote references or superscripted numerical citations after following punctuation.","long":"If true (the default for note styles), Quarto (via Pandoc) will put footnote references or superscripted numerical citations after \nfollowing punctuation. For example, if the source contains `blah blah [@jones99]`., the result will look like `blah blah.[^1]`, with \nthe note moved after the period and the space collapsed. \n\nIf false, the space will still be collapsed, but the footnote will not be moved after the punctuation. The option may also be used \nin numerical styles that use superscripts for citation numbers (but for these styles the default is not to move the citation).\n"}},"documentation":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","$id":"quarto-resource-document-references-notes-after-punctuation"},"quarto-resource-document-render-from":{"type":"string","description":"be a string","documentation":"Format to read from","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-from"},"quarto-resource-document-render-reader":{"type":"string","description":"be a string","documentation":"Format to read from","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-reader"},"quarto-resource-document-render-output-file":{"_internalId":4969,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Output file to write to","tags":{"description":"Output file to write to"},"$id":"quarto-resource-document-render-output-file"},"quarto-resource-document-render-output-ext":{"type":"string","description":"be a string","documentation":"Extension to use for generated output file","tags":{"description":"Extension to use for generated output file\n"},"$id":"quarto-resource-document-render-output-ext"},"quarto-resource-document-render-template":{"type":"string","description":"be a string","tags":{"formats":["!$office-all","!ipynb"],"description":"Use the specified file as a custom template for the generated document.\n"},"documentation":"Use the specified file as a custom template for the generated\ndocument.","$id":"quarto-resource-document-render-template"},"quarto-resource-document-render-template-partials":{"_internalId":4979,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4978,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!ipynb"],"description":"Include the specified files as partials accessible to the template for the generated content.\n"},"documentation":"Include the specified files as partials accessible to the template\nfor the generated content.","$id":"quarto-resource-document-render-template-partials"},"quarto-resource-document-render-embed-resources":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies, using\n`data:` URIs to incorporate the contents of linked scripts, stylesheets,\nimages, and videos. The resulting file should be \"self-contained,\" in the\nsense that it needs no external files and no net access to be displayed\nproperly by a browser. This option works only with HTML output formats,\nincluding `html4`, `html5`, `html+lhs`, `html5+lhs`, `s5`, `slidy`,\n`slideous`, `dzslides`, and `revealjs`. Scripts, images, and stylesheets at\nabsolute URLs will be downloaded; those at relative URLs will be sought\nrelative to the working directory (if the first source\nfile is local) or relative to the base URL (if the first source\nfile is remote). Elements with the attribute\n`data-external=\"1\"` will be left alone; the documents they\nlink to will not be incorporated in the document.\nLimitation: resources that are loaded dynamically through\nJavaScript cannot be incorporated; as a result, some\nadvanced features (e.g. zoom or speaker notes) may not work\nin an offline \"self-contained\" `reveal.js` slide show.\n"}},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-render-embed-resources"},"quarto-resource-document-render-self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies. Note that\nthis option has been deprecated in favor of `embed-resources`.\n"},"hidden":true},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-render-self-contained"},"quarto-resource-document-render-self-contained-math":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Embed math libraries (e.g. MathJax) within `self-contained` output.","long":"Embed math libraries (e.g. MathJax) within `self-contained` output.\nNote that math libraries are not embedded by default because they are \n quite large and often time consuming to download.\n"}},"documentation":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$id":"quarto-resource-document-render-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":4988,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"Specify executables or Lua scripts to be used as a filter\ntransforming the pandoc AST after the input is parsed and before the\noutput is written.","tags":{"description":"Specify executables or Lua scripts to be used as a filter transforming\nthe pandoc AST after the input is parsed and before the output is written.\n"},"$id":"quarto-resource-document-render-filters"},"quarto-resource-document-render-shortcodes":{"_internalId":4991,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Specify Lua scripts that implement shortcode handlers","tags":{"description":"Specify Lua scripts that implement shortcode handlers\n"},"$id":"quarto-resource-document-render-shortcodes"},"quarto-resource-document-render-keep-md":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the markdown file generated by executing code"},"documentation":"Keep the markdown file generated by executing code","$id":"quarto-resource-document-render-keep-md"},"quarto-resource-document-render-keep-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the notebook file generated from executing code."},"documentation":"Keep the notebook file generated from executing code.","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":5000,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"contexts":["document-execute"],"description":"Filters to pre-process ipynb files before rendering to markdown"},"documentation":"Filters to pre-process ipynb files before rendering to markdown","$id":"quarto-resource-document-render-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":5003,"type":"enum","enum":[null,"all","last","last_expr","none","last_expr_or_assign"],"description":"be one of: `null`, `all`, `last`, `last_expr`, `none`, `last_expr_or_assign`","completions":["null","all","last","last_expr","none","last_expr_or_assign"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"Specify which nodes should be run interactively (displaying output from expressions)\n"},"documentation":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-ipynb-shell-interactivity"},"quarto-resource-document-render-plotly-connected":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"If true, use the \"notebook_connected\" plotly renderer, which downloads\nits dependencies from a CDN and requires an internet connection to view.\n"},"documentation":"If true, use the “notebook_connected” plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view.","$id":"quarto-resource-document-render-plotly-connected"},"quarto-resource-document-render-keep-typ":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"Keep the intermediate typst file used during render."},"documentation":"Keep the intermediate typst file used during render.","$id":"quarto-resource-document-render-keep-typ"},"quarto-resource-document-render-keep-tex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Keep the intermediate tex file used during render."},"documentation":"Keep the intermediate tex file used during render.","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","tags":{"description":{"short":"Extract images and other media contained in or linked from the source document to the\npath DIR.\n","long":"Extract images and other media contained in or linked from the source document to the\npath DIR, creating it if necessary, and adjust the images references in the document\nso they point to the extracted files. Media are downloaded, read from the file\nsystem, or extracted from a binary container (e.g. docx), as needed. The original\nfile paths are used if they are relative paths not containing ... Otherwise filenames\nare constructed from the SHA1 hash of the contents.\n"}},"$id":"quarto-resource-document-render-extract-media"},"quarto-resource-document-render-resource-path":{"_internalId":5016,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"List of paths to search for images and other resources.","tags":{"description":"List of paths to search for images and other resources.\n"},"$id":"quarto-resource-document-render-resource-path"},"quarto-resource-document-render-default-image-extension":{"type":"string","description":"be a string","documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","tags":{"description":{"short":"Specify a default extension to use when image paths/URLs have no extension.\n","long":"Specify a default extension to use when image paths/URLs have no\nextension. This allows you to use the same source for formats that\nrequire different kinds of images. Currently this option only affects\nthe Markdown and LaTeX readers.\n"}},"$id":"quarto-resource-document-render-default-image-extension"},"quarto-resource-document-render-abbreviations":{"type":"string","description":"be a string","documentation":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","tags":{"description":{"short":"Specifies a custom abbreviations file, with abbreviations one to a line.\n","long":"Specifies a custom abbreviations file, with abbreviations one to a line.\nThis list is used when reading Markdown input: strings found in this list\nwill be followed by a nonbreaking space, and the period will not produce sentence-ending space in formats like LaTeX. The strings may not contain\nspaces.\n"}},"$id":"quarto-resource-document-render-abbreviations"},"quarto-resource-document-render-dpi":{"type":"number","description":"be a number","documentation":"Specify the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","tags":{"description":{"short":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n","long":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"}},"$id":"quarto-resource-document-render-dpi"},"quarto-resource-document-render-html-table-processing":{"_internalId":5025,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If none, do not process tables in HTML input.","tags":{"description":"If `none`, do not process tables in HTML input."},"$id":"quarto-resource-document-render-html-table-processing"},"quarto-resource-document-render-html-pre-tag-processing":{"_internalId":5028,"type":"enum","enum":["none","parse"],"description":"be one of: `none`, `parse`","completions":["none","parse"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"If `none`, ignore any divs with `html-pre-tag-processing=parse` enabled."},"documentation":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5031,"type":"enum","enum":["none","translate"],"description":"be one of: `none`, `translate`","completions":["none","translate"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"CSS property translation","long":"If `translate`, translate CSS properties into output format properties. If `none`, do not process css properties."}},"documentation":"CSS property translation","$id":"quarto-resource-document-render-css-property-processing"},"quarto-resource-document-render-use-rsvg-convert":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"If `true`, attempt to use `rsvg-convert` to convert SVG images to PDF."},"documentation":"If true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5036,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["revealjs"],"description":"Logo image (placed in bottom right corner of slides)"},"documentation":"Logo image (placed in bottom right corner of slides)","$id":"quarto-resource-document-reveal-content-logo"},"quarto-resource-document-reveal-content-footer":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Footer to include on all slides","long":"Footer to include on all slides. Can also be set per-slide by including a\ndiv with class `.footer` on the slide.\n"}},"documentation":"Footer to include on all slides","$id":"quarto-resource-document-reveal-content-footer"},"quarto-resource-document-reveal-content-scrollable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Allow content that overflows slides vertically to scroll","long":"`true` to allow content that overflows slides vertically to scroll. This can also\nbe set per-slide by including the `.scrollable` class on the slide title.\n"}},"documentation":"Allow content that overflows slides vertically to scroll","$id":"quarto-resource-document-reveal-content-scrollable"},"quarto-resource-document-reveal-content-smaller":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Use a smaller default font for slide content","long":"`true` to use a smaller default font for slide content. This can also\nbe set per-slide by including the `.smaller` class on the slide title.\n"}},"documentation":"Use a smaller default font for slide content","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5045,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-document-reveal-content-output-location"},"quarto-resource-document-reveal-hidden-embedded":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags if the presentation is running in an embedded mode\n","hidden":true},"documentation":"Flags if the presentation is running in an embedded mode","$id":"quarto-resource-document-reveal-hidden-embedded"},"quarto-resource-document-reveal-hidden-display":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"The display mode that will be used to show slides","hidden":true},"documentation":"The display mode that will be used to show slides","$id":"quarto-resource-document-reveal-hidden-display"},"quarto-resource-document-reveal-layout-auto-stretch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"For slides with a single top-level image, automatically stretch it to fill the slide."},"documentation":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5058,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' width of the presentation","long":"The \"normal\" width of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"The ‘normal’ width of the presentation","$id":"quarto-resource-document-reveal-layout-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5065,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' height of the presentation","long":"The \"normal\" height of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"The ‘normal’ height of the presentation","$id":"quarto-resource-document-reveal-layout-height"},"quarto-resource-document-reveal-layout-margin":{"_internalId":5085,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5084,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 5cm)"},"documentation":"Horizontal margin (e.g. 5cm)"},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 5cm)"},"documentation":"Vertical margin (e.g. 5cm)"},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 5cm)"},"documentation":"Top margin (e.g. 5cm)"},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 5cm)"},"documentation":"Bottom margin (e.g. 5cm)"},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 5cm)"},"documentation":"Left margin (e.g. 5cm)"},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 5cm)"},"documentation":"Right margin (e.g. 5cm)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a number, an object","tags":{"formats":["revealjs","typst"],"description":"For `revealjs`, the factor of the display size that should remain empty around the content (e.g. 0.1).\n\nFor `typst`, a dictionary with the fields defined in the Typst documentation:\n`x`, `y`, `top`, `bottom`, `left`, `right` (margins are specified in `cm` units,\ne.g. `5cm`).\n"},"documentation":"For revealjs, the factor of the display size that should\nremain empty around the content (e.g. 0.1).\nFor typst, a dictionary with the fields defined in the\nTypst documentation: x, y, top,\nbottom, left, right (margins are\nspecified in cm units, e.g. 5cm).","$id":"quarto-resource-document-reveal-layout-margin"},"quarto-resource-document-reveal-layout-min-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for smallest possible scale to apply to content"},"documentation":"Bounds for smallest possible scale to apply to content","$id":"quarto-resource-document-reveal-layout-min-scale"},"quarto-resource-document-reveal-layout-max-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for largest possible scale to apply to content"},"documentation":"Bounds for largest possible scale to apply to content","$id":"quarto-resource-document-reveal-layout-max-scale"},"quarto-resource-document-reveal-layout-center":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of slides"},"documentation":"Vertical centering of slides","$id":"quarto-resource-document-reveal-layout-center"},"quarto-resource-document-reveal-layout-disable-layout":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Disables the default reveal.js slide layout (scaling and centering)\n"},"documentation":"Disables the default reveal.js slide layout (scaling and\ncentering)","$id":"quarto-resource-document-reveal-layout-disable-layout"},"quarto-resource-document-reveal-layout-code-block-height":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Sets the maximum height for source code blocks that appear in the presentation.\n"},"documentation":"Sets the maximum height for source code blocks that appear in the\npresentation.","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5103,"type":"anyOf","anyOf":[{"_internalId":5100,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'auto', `true` or `false`","tags":{"formats":["revealjs"],"description":{"short":"Open links in an iframe preview overlay (`true`, `false`, or `auto`)","long":"Open links in an iframe preview overlay.\n\n- `true`: Open links in iframe preview overlay\n- `false`: Do not open links in iframe preview overlay\n- `auto` (default): Open links in iframe preview overlay, in fullscreen mode.\n"}},"documentation":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5106,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Autoplay embedded media (`null`, `true`, or `false`). Default is `null` (only when `autoplay` \nattribute is specified)\n"},"documentation":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5109,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Global override for preloading lazy-loaded iframes (`null`, `true`, or `false`).","long":"Global override for preloading lazy-loaded iframes\n\n- `null`: Iframes with data-src AND data-preload will be loaded when within\n the `viewDistance`, iframes with only data-src will be loaded when visible\n- `true`: All iframes with data-src will be loaded when within the viewDistance\n- `false`: All iframes with data-src will be loaded only when visible\n"}},"documentation":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-media-preload-iframes"},"quarto-resource-document-reveal-media-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for"},"documentation":"Number of slides away from the current slide to pre-load resources\nfor","$id":"quarto-resource-document-reveal-media-view-distance"},"quarto-resource-document-reveal-media-mobile-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for (on mobile devices).\n"},"documentation":"Number of slides away from the current slide to pre-load resources\nfor (on mobile devices).","$id":"quarto-resource-document-reveal-media-mobile-view-distance"},"quarto-resource-document-reveal-media-parallax-background-image":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background image"},"documentation":"Parallax background image","$id":"quarto-resource-document-reveal-media-parallax-background-image"},"quarto-resource-document-reveal-media-parallax-background-size":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background size (e.g. '2100px 900px')"},"documentation":"Parallax background size (e.g. ‘2100px 900px’)","$id":"quarto-resource-document-reveal-media-parallax-background-size"},"quarto-resource-document-reveal-media-parallax-background-horizontal":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background horizontally per slide."},"documentation":"Number of pixels to move the parallax background horizontally per\nslide.","$id":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"quarto-resource-document-reveal-media-parallax-background-vertical":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background vertically per slide."},"documentation":"Number of pixels to move the parallax background vertically per\nslide.","$id":"quarto-resource-document-reveal-media-parallax-background-vertical"},"quarto-resource-document-reveal-navigation-progress":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Display a presentation progress bar"},"documentation":"Display a presentation progress bar","$id":"quarto-resource-document-reveal-navigation-progress"},"quarto-resource-document-reveal-navigation-history":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Push each slide change to the browser history\n"},"documentation":"Push each slide change to the browser history","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5128,"type":"enum","enum":["linear","vertical","grid"],"description":"be one of: `linear`, `vertical`, `grid`","completions":["linear","vertical","grid"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Navigation progression (`linear`, `vertical`, or `grid`)","long":"Changes the behavior of navigation directions.\n\n- `linear`: Removes the up/down arrows. Left/right arrows step through all\n slides (both horizontal and vertical).\n\n- `vertical`: Left/right arrow keys step between horizontal slides, up/down\n arrow keys step between vertical slides. Space key steps through\n all slides (both horizontal and vertical).\n\n- `grid`: When this is enabled, stepping left/right from a vertical stack\n to an adjacent vertical stack will land you at the same vertical\n index.\n"}},"documentation":"Navigation progression (linear, vertical,\nor grid)","$id":"quarto-resource-document-reveal-navigation-navigation-mode"},"quarto-resource-document-reveal-navigation-touch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable touch navigation on devices with touch input\n"},"documentation":"Enable touch navigation on devices with touch input","$id":"quarto-resource-document-reveal-navigation-touch"},"quarto-resource-document-reveal-navigation-keyboard":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable keyboard shortcuts for navigation"},"documentation":"Enable keyboard shortcuts for navigation","$id":"quarto-resource-document-reveal-navigation-keyboard"},"quarto-resource-document-reveal-navigation-mouse-wheel":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable slide navigation via mouse wheel"},"documentation":"Enable slide navigation via mouse wheel","$id":"quarto-resource-document-reveal-navigation-mouse-wheel"},"quarto-resource-document-reveal-navigation-hide-inactive-cursor":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Hide cursor if inactive"},"documentation":"Hide cursor if inactive","$id":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"quarto-resource-document-reveal-navigation-hide-cursor-time":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Time before the cursor is hidden (in ms)"},"documentation":"Time before the cursor is hidden (in ms)","$id":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"quarto-resource-document-reveal-navigation-loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Loop the presentation"},"documentation":"Loop the presentation","$id":"quarto-resource-document-reveal-navigation-loop"},"quarto-resource-document-reveal-navigation-shuffle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Randomize the order of slides each time the presentation loads"},"documentation":"Randomize the order of slides each time the presentation loads","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5150,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5149,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"formats":["revealjs"],"description":{"short":"Show arrow controls for navigating through slides (`true`, `false`, or `auto`).","long":"Show arrow controls for navigating through slides.\n\n- `true`: Always show controls\n- `false`: Never show controls\n- `auto` (default): Show controls when vertical slides are present or when the deck is embedded in an iframe.\n"}},"documentation":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5153,"type":"enum","enum":["edges","bottom-right"],"description":"be one of: `edges`, `bottom-right`","completions":["edges","bottom-right"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Location for navigation controls (`edges` or `bottom-right`)"},"documentation":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-controls-layout"},"quarto-resource-document-reveal-navigation-controls-tutorial":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Help the user learn the controls by providing visual hints."},"documentation":"Help the user learn the controls by providing visual hints.","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5158,"type":"enum","enum":["faded","hidden","visible"],"description":"be one of: `faded`, `hidden`, `visible`","completions":["faded","hidden","visible"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Visibility rule for backwards navigation arrows (`faded`, `hidden`, or `visible`).\n"},"documentation":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5166,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5165,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, 'false'","tags":{"formats":["revealjs"],"description":"Automatically progress all slides at the specified interval"},"documentation":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-auto-slide"},"quarto-resource-document-reveal-navigation-auto-slide-stoppable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Stop auto-sliding after user input"},"documentation":"Stop auto-sliding after user input","$id":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"quarto-resource-document-reveal-navigation-auto-slide-method":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Navigation method to use when auto sliding (defaults to navigateNext)"},"documentation":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$id":"quarto-resource-document-reveal-navigation-auto-slide-method"},"quarto-resource-document-reveal-navigation-default-timing":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Expected average seconds per slide (used by pacing timer in speaker view)"},"documentation":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$id":"quarto-resource-document-reveal-navigation-default-timing"},"quarto-resource-document-reveal-navigation-pause":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags whether it should be possible to pause the presentation (blackout)\n"},"documentation":"Flags whether it should be possible to pause the presentation\n(blackout)","$id":"quarto-resource-document-reveal-navigation-pause"},"quarto-resource-document-reveal-navigation-help":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Show a help overlay when the `?` key is pressed\n"},"documentation":"Show a help overlay when the ? key is pressed","$id":"quarto-resource-document-reveal-navigation-help"},"quarto-resource-document-reveal-navigation-hash":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Add the current slide to the URL hash"},"documentation":"Add the current slide to the URL hash","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5181,"type":"enum","enum":["number","title"],"description":"be one of: `number`, `title`","completions":["number","title"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"URL hash type (`number` or `title`)"},"documentation":"URL hash type (number or title)","$id":"quarto-resource-document-reveal-navigation-hash-type"},"quarto-resource-document-reveal-navigation-hash-one-based-index":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Use 1 based indexing for hash links to match slide number\n"},"documentation":"Use 1 based indexing for hash links to match slide number","$id":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"quarto-resource-document-reveal-navigation-respond-to-hash-changes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Monitor the hash and change slides accordingly\n"},"documentation":"Monitor the hash and change slides accordingly","$id":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"quarto-resource-document-reveal-navigation-fragment-in-url":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Include the current fragment in the URL"},"documentation":"Include the current fragment in the URL","$id":"quarto-resource-document-reveal-navigation-fragment-in-url"},"quarto-resource-document-reveal-navigation-slide-tone":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Play a subtle sound when changing slides"},"documentation":"Play a subtle sound when changing slides","$id":"quarto-resource-document-reveal-navigation-slide-tone"},"quarto-resource-document-reveal-navigation-jump-to-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Deactivate jump to slide feature."},"documentation":"Deactivate jump to slide feature.","$id":"quarto-resource-document-reveal-navigation-jump-to-slide"},"quarto-resource-document-reveal-print-pdf-max-pages-per-slide":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Slides that are too tall to fit within a single page will expand onto multiple pages","long":"Slides that are too tall to fit within a single page will expand onto multiple pages. You can limit how many pages a slide may expand to using this option.\n"}},"documentation":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$id":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"quarto-resource-document-reveal-print-pdf-separate-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Prints each fragment on a separate slide"},"documentation":"Prints each fragment on a separate slide","$id":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"quarto-resource-document-reveal-print-pdf-page-height-offset":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Offset used to reduce the height of content within exported PDF pages.","long":"Offset used to reduce the height of content within exported PDF pages.\nThis exists to account for environment differences based on how you\nprint to PDF. CLI printing options, like phantomjs and wkpdf, can end\non precisely the total height of the document whereas in-browser\nprinting has to end one pixel before.\n"}},"documentation":"Offset used to reduce the height of content within exported PDF\npages.","$id":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"quarto-resource-document-reveal-tools-overview":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable the slide overview mode"},"documentation":"Enable the slide overview mode","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5216,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5215,"type":"object","description":"be an object","properties":{"side":{"_internalId":5208,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"Side of the presentation where the menu will be shown (`left` or `right`)"},"documentation":"Side of the presentation where the menu will be shown\n(left or right)"},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"Width of the menu"},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"Add slide numbers to menu items"},"use-text-content-for-missing-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"For slides with no title, attempt to use the start of the text content as the title instead.\n"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention side,width,numbers,use-text-content-for-missing-titles","type":"string","pattern":"(?!(^use_text_content_for_missing_titles$|^useTextContentForMissingTitles$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs menu."},"documentation":"Configuration for revealjs menu.","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5239,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5238,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5225,"type":"enum","enum":["chalkboard","whiteboard"],"description":"be one of: `chalkboard`, `whiteboard`","completions":["chalkboard","whiteboard"],"exhaustiveCompletions":true,"tags":{"description":"Visual theme for drawing surface (`chalkboard` or `whiteboard`)"},"documentation":"Visual theme for drawing surface (chalkboard or\nwhiteboard)"},"boardmarker-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the boardmarker. Defaults to 3. Larger values draw thicker lines.\n"},"documentation":"The drawing width of the boardmarker. Defaults to 3. Larger values\ndraw thicker lines."},"chalk-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the chalk. Defaults to 7. Larger values draw thicker lines.\n"},"documentation":"The drawing width of the chalk. Defaults to 7. Larger values draw\nthicker lines."},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)"},"read-only":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Configuration option to prevent changes to existing drawings\n"},"documentation":"Configuration option to prevent changes to existing drawings"},"buttons":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add chalkboard buttons at the bottom of the slide\n"},"documentation":"Add chalkboard buttons at the bottom of the slide"},"transition":{"type":"number","description":"be a number","tags":{"description":"Gives the duration (in ms) of the transition for a slide change, \nso that the notes canvas is drawn after the transition is completed.\n"},"documentation":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention theme,boardmarker-width,chalk-width,src,read-only,buttons,transition","type":"string","pattern":"(?!(^boardmarker_width$|^boardmarkerWidth$|^chalk_width$|^chalkWidth$|^read_only$|^readOnly$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs chalkboard."},"documentation":"Configuration for revealjs chalkboard.","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5253,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5252,"type":"object","description":"be an object","properties":{"url":{"type":"string","description":"be a string","tags":{"description":"Multiplex token server (defaults to Reveal-hosted server)\n"},"documentation":"Multiplex token server (defaults to Reveal-hosted server)"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Unique presentation id provided by multiplex token server"},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret provided by multiplex token server"},"documentation":"Secret provided by multiplex token server"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Configuration for reveal presentation multiplexing.","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5279,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5278,"type":"object","description":"be an object","properties":{"activate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Activate scroll view by default for the presentation. Otherwise, it is manually avalaible by adding `?view=scroll` to url."},"documentation":"Activate scroll view by default for the presentation. Otherwise, it\nis manually avalaible by adding ?view=scroll to url."},"progress":{"_internalId":5269,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5268,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"description":"Show the scrollbar while scrolling, hide while idle (default `auto`). Set to 'true' to always show, `false` to always hide."},"documentation":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide."},"snap":{"_internalId":5272,"type":"enum","enum":["mandatory","proximity",false],"description":"be one of: `mandatory`, `proximity`, `false`","completions":["mandatory","proximity","false"],"exhaustiveCompletions":true,"tags":{"description":"When scrolling, it will automatically snap to the closest slide. Only snap when close to the top of a slide using `proximity`. Disable snapping altogether by setting to `false`.\n"},"documentation":"When scrolling, it will automatically snap to the closest slide. Only\nsnap when close to the top of a slide using proximity.\nDisable snapping altogether by setting to false."},"layout":{"_internalId":5275,"type":"enum","enum":["compact","full"],"description":"be one of: `compact`, `full`","completions":["compact","full"],"exhaustiveCompletions":true,"tags":{"description":"By default each slide will be sized to be as tall as the viewport. If you prefer a more dense layout with multiple slides visible in parallel, set to `compact`.\n"},"documentation":"By default each slide will be sized to be as tall as the viewport. If\nyou prefer a more dense layout with multiple slides visible in parallel,\nset to compact."},"activation-width":{"type":"number","description":"be a number","tags":{"description":"Control scroll view activation width. The scroll view is automatically unable when the viewport reaches mobile widths. Set to `0` to disable automatic scroll view.\n"},"documentation":"Control scroll view activation width. The scroll view is\nautomatically unable when the viewport reaches mobile widths. Set to\n0 to disable automatic scroll view."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention activate,progress,snap,layout,activation-width","type":"string","pattern":"(?!(^activation_width$|^activationWidth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Control the scroll view feature of Revealjs"},"documentation":"Control the scroll view feature of Revealjs","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5282,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for slides","long":"Transition style for slides backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Transition style for slides","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5285,"type":"enum","enum":["default","fast","slow"],"description":"be one of: `default`, `fast`, `slow`","completions":["default","fast","slow"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Slide transition speed (`default`, `fast`, or `slow`)"},"documentation":"Slide transition speed (default, fast, or\nslow)","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5288,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for full page slide backgrounds","long":"Transition style for full page slide backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Transition style for full page slide backgrounds","$id":"quarto-resource-document-reveal-transitions-background-transition"},"quarto-resource-document-reveal-transitions-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Turns fragments on and off globally"},"documentation":"Turns fragments on and off globally","$id":"quarto-resource-document-reveal-transitions-fragments"},"quarto-resource-document-reveal-transitions-auto-animate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Globally enable/disable auto-animate (enabled by default)"},"documentation":"Globally enable/disable auto-animate (enabled by default)","$id":"quarto-resource-document-reveal-transitions-auto-animate"},"quarto-resource-document-reveal-transitions-auto-animate-easing":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Default CSS easing function for auto-animation","long":"Default CSS easing function for auto-animation.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Default CSS easing function for auto-animation","$id":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"quarto-resource-document-reveal-transitions-auto-animate-duration":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Duration (in seconds) of auto-animate transition","long":"Duration (in seconds) of auto-animate transition.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Duration (in seconds) of auto-animate transition","$id":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"quarto-resource-document-reveal-transitions-auto-animate-unmatched":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Auto-animate unmatched elements.","long":"Auto-animate unmatched elements.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Auto-animate unmatched elements.","$id":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5304,"type":"array","description":"be an array of values, where each element must be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","items":{"_internalId":5303,"type":"enum","enum":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"description":"be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","completions":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"exhaustiveCompletions":true},"tags":{"formats":["revealjs"],"description":{"short":"CSS properties that can be auto-animated (positional styles like top, left, etc.\nare always animated).\n"}},"documentation":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated).","$id":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"quarto-resource-document-slides-incremental":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pptx","beamer","$html-pres"],"description":"Make list items in slide shows display incrementally (one by one). \nThe default is for lists to be displayed all at once.\n"},"documentation":"Make list items in slide shows display incrementally (one by one).\nThe default is for lists to be displayed all at once.","$id":"quarto-resource-document-slides-incremental"},"quarto-resource-document-slides-slide-level":{"type":"number","description":"be a number","tags":{"formats":["pptx","beamer","$html-pres"],"description":{"short":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections.\n","long":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections; headings below this level create \nsubheads within a slide. Valid values are 0-6. If a slide level\nof 0 is specified, slides will not be split automatically on \nheadings, and horizontal rules must be used to indicate slide \nboundaries. If a slide level is not specified explicitly, the\nslide level will be set automatically based on the contents of\nthe document\n"}},"documentation":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide the slide\nshow into sections.","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5316,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5315,"type":"enum","enum":["h.v","h/v","c","c/t"],"description":"be one of: `h.v`, `h/v`, `c`, `c/t`","completions":["h.v","h/v","c","c/t"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `h.v`, `h/v`, `c`, `c/t`","tags":{"formats":["revealjs"],"description":{"short":"Display the page number of the current slide","long":"Display the page number of the current slide\n\n- `true`: Show slide number\n- `false`: Hide slide number\n\nCan optionally be set as a string that specifies the number formatting:\n\n- `h.v`: Horizontal . vertical slide number\n- `h/v`: Horizontal / vertical slide number\n- `c`: Flattened slide number\n- `c/t`: Flattened slide number / total slides (default)\n"}},"documentation":"Display the page number of the current slide","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5319,"type":"enum","enum":["all","print","speaker"],"description":"be one of: `all`, `print`, `speaker`","completions":["all","print","speaker"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Contexts in which the slide number appears (`all`, `print`, or `speaker`)"},"documentation":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5334,"type":"object","description":"be an object","properties":{"data-background-color":{"type":"string","description":"be a string","tags":{"description":"CSS color for title slide background"},"documentation":"CSS color for title slide background"},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"URL or path to the background image."},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"CSS background size (defaults to cover)"},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"CSS background position (defaults to center)"},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"CSS background repeat (defaults to no-repeat)"},"data-background-opacity":{"type":"string","description":"be a string","tags":{"description":"Opacity of the background image on a 0-1 scale. \n0 is transparent and 1 is fully opaque.\n"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention data-background-color,data-background-image,data-background-size,data-background-position,data-background-repeat,data-background-opacity","type":"string","pattern":"(?!(^data_background_color$|^dataBackgroundColor$|^data_background_image$|^dataBackgroundImage$|^data_background_size$|^dataBackgroundSize$|^data_background_position$|^dataBackgroundPosition$|^data_background_repeat$|^dataBackgroundRepeat$|^data_background_opacity$|^dataBackgroundOpacity$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"formats":["revealjs"],"description":{"short":"Additional attributes for the title slide of a reveal.js presentation.","long":"Additional attributes for the title slide of a reveal.js presentation as a map of \nattribute names and values. For example\n\n```yaml\n title-slide-attributes:\n data-background-image: /path/to/title_image.png\n data-background-size: contain \n```\n\n(Note that the data- prefix is required here, as it isn’t added automatically.)\n"}},"documentation":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5337,"type":"enum","enum":["pandoc","default"],"description":"be one of: `pandoc`, `default`","completions":["pandoc","default"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"The title slide style. Use `pandoc` to select the Pandoc default title slide style."},"documentation":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style.","$id":"quarto-resource-document-slides-title-slide-style"},"quarto-resource-document-slides-center-title-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of title slide"},"documentation":"Vertical centering of title slide","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5347,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5346,"type":"enum","enum":["separate-page"],"description":"be 'separate-page'","completions":["separate-page"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'separate-page'","tags":{"formats":["revealjs"],"description":"Make speaker notes visible to all viewers\n"},"documentation":"Make speaker notes visible to all viewers","$id":"quarto-resource-document-slides-show-notes"},"quarto-resource-document-slides-rtl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Change the presentation direction to be RTL\n"},"documentation":"Change the presentation direction to be RTL","$id":"quarto-resource-document-slides-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5352,"type":"enum","enum":["default","kable","tibble","paged"],"description":"be one of: `default`, `kable`, `tibble`, `paged`","completions":["default","kable","tibble","paged"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Uses `default` if not specified.\n","long":"Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"}},"documentation":"Method used to print tables in Knitr engine documents\n(default, kable, tibble, or\npaged). Uses default if not specified.","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5355,"type":"enum","enum":["auto","none","preserve"],"description":"be one of: `auto`, `none`, `preserve`","completions":["auto","none","preserve"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Determine how text is wrapped in the output (`auto`, `none`, or `preserve`).","long":"Determine how text is wrapped in the output (the source code, not the rendered\nversion). \n\n- `auto` (default): Pandoc will attempt to wrap lines to the column width specified by `columns` (default 72). \n- `none`: Pandoc will not wrap lines at all. \n- `preserve`: Pandoc will attempt to preserve the wrapping from the source\n document. Where there are nonsemantic newlines in the source, there will be\n nonsemantic newlines in the output as well.\n"}},"documentation":"Determine how text is wrapped in the output (auto,\nnone, or preserve).","$id":"quarto-resource-document-text-wrap"},"quarto-resource-document-text-columns":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all","typst"],"description":{"short":"For text formats, specify length of lines in characters. For `typst`, number of columns for body text.","long":"Specify length of lines in characters. This affects text wrapping in generated source\ncode (see `wrap`). It also affects calculation of column widths for plain text\ntables. \n\nFor `typst`, number of columns for body text.\n"}},"documentation":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text.","$id":"quarto-resource-document-text-columns"},"quarto-resource-document-text-tab-stop":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Specify the number of spaces per tab (default is 4).","long":"Specify the number of spaces per tab (default is 4). Note that tabs\nwithin normal textual input are always converted to spaces. Tabs \nwithin code are also converted, however this can be disabled with\n`preserve-tabs: false`.\n"}},"documentation":"Specify the number of spaces per tab (default is 4).","$id":"quarto-resource-document-text-tab-stop"},"quarto-resource-document-text-preserve-tabs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Preserve tabs within code instead of converting them to spaces.\n","long":"Preserve tabs within code instead of converting them to spaces.\n(By default, pandoc converts tabs to spaces before parsing its input.) \nNote that this will only affect tabs in literal code spans and code blocks. \nTabs in regular text are always treated as spaces.\n"}},"documentation":"Preserve tabs within code instead of converting them to spaces.","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5364,"type":"enum","enum":["lf","crlf","native"],"description":"be one of: `lf`, `crlf`, `native`","completions":["lf","crlf","native"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Manually specify line endings (`lf`, `crlf`, or `native`).","long":"Manually specify line endings: \n\n- `crlf`: Use Windows line endings\n- `lf`: Use macOS/Linux/UNIX line endings\n- `native` (default): Use line endings appropriate to the OS on which pandoc is being run).\n"}},"documentation":"Manually specify line endings (lf, crlf, or\nnative).","$id":"quarto-resource-document-text-eol"},"quarto-resource-document-text-strip-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","textile","$html-files"],"description":{"short":"Strip out HTML comments in source, rather than passing them on to output.","long":"Strip out HTML comments in the Markdown source,\nrather than passing them on to Markdown, Textile or HTML\noutput as raw HTML. This does not apply to HTML comments\ninside raw HTML blocks when the `markdown_in_html_blocks`\nextension is not set.\n"}},"documentation":"Strip out HTML comments in source, rather than passing them on to\noutput.","$id":"quarto-resource-document-text-strip-comments"},"quarto-resource-document-text-ascii":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all","$pdf-all","$markdown-all","ms"],"description":{"short":"Use only ASCII characters in output.","long":"Use only ASCII characters in output. Currently supported for XML\nand HTML formats (which use entities instead of UTF-8 when this\noption is selected), CommonMark, gfm, and Markdown (which use\nentities), roff ms (which use hexadecimal escapes), and to a\nlimited degree LaTeX (which uses standard commands for accented\ncharacters when possible). roff man output uses ASCII by default.\n"}},"documentation":"Use only ASCII characters in output.","$id":"quarto-resource-document-text-ascii"},"quarto-resource-document-toc-toc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-toc-toc"},"quarto-resource-document-toc-table-of-contents":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-toc-table-of-contents"},"quarto-resource-document-toc-toc-indent":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The amount of indentation to use for each level of the table of contents.\nThe default is \"1.5em\".\n"},"documentation":"The amount of indentation to use for each level of the table of\ncontents. The default is “1.5em”.","$id":"quarto-resource-document-toc-toc-indent"},"quarto-resource-document-toc-toc-depth":{"type":"number","description":"be a number","tags":{"formats":["!man","!$docbook-all","!$jats-all","!beamer"],"description":"Specify the number of section levels to include in the table of contents.\nThe default is 3\n"},"documentation":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5377,"type":"enum","enum":["body","left","right","left-body","right-body"],"description":"be one of: `body`, `left`, `right`, `left-body`, `right-body`","completions":["body","left","right","left-body","right-body"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Location for table of contents (`body`, `left`, `right` (default), `left-body`, `right-body`).\n","long":"Location for table of contents:\n\n- `body`: Show the Table of Contents in the center body of the document. \n- `left`: Show the Table of Contents in left margin of the document.\n- `right`(default): Show the Table of Contents in right margin of the document.\n- `left-body`: Show two Tables of Contents in both the center body and the left margin of the document.\n- `right-body`: Show two Tables of Contents in both the center body and the right margin of the document.\n"}},"documentation":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$id":"quarto-resource-document-toc-toc-location"},"quarto-resource-document-toc-toc-title":{"type":"string","description":"be a string","tags":{"formats":["$epub-all","$odt-all","$office-all","$pdf-all","$html-doc","revealjs"],"description":"The title used for the table of contents."},"documentation":"The title used for the table of contents.","$id":"quarto-resource-document-toc-toc-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5386,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","tags":{"formats":["$html-doc"],"description":"Specifies the depth of items in the table of contents that should be displayed as expanded in HTML output. Use `true` to expand all or `false` to collapse all.\n"},"documentation":"Specifies the depth of items in the table of contents that should be\ndisplayed as expanded in HTML output. Use true to expand\nall or false to collapse all.","$id":"quarto-resource-document-toc-toc-expand"},"quarto-resource-document-toc-lof":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of figures in the document."},"documentation":"Print a list of figures in the document.","$id":"quarto-resource-document-toc-lof"},"quarto-resource-document-toc-lot":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of tables in the document."},"documentation":"Print a list of tables in the document.","$id":"quarto-resource-document-toc-lot"},"quarto-resource-document-website-search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Setting this to false prevents this document from being included in searches."},"documentation":"Setting this to false prevents this document from being included in\nsearches.","$id":"quarto-resource-document-website-search"},"quarto-resource-document-website-repo-actions":{"_internalId":5404,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5403,"type":"anyOf","anyOf":[{"_internalId":5401,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":5402,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5401,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"formats":["$html-doc"],"description":"Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"},"documentation":"Setting this to false prevents the repo-actions from\nappearing on this page. Other possible values are none or\none or more of edit, source, and\nissue, e.g.\n[edit, source, issue].","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5409,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-doc"],"description":"URLs that alias this document, when included in a website."},"documentation":"URLs that alias this document, when included in a website.","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5416,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"The path to a preview image for this document.","long":"The path to a preview image for this content. By default, \nQuarto will use the image value from the site: metadata. \nIf you provide an image, you may also optionally provide \nan image-width and image-height to improve \nthe appearance of your Twitter Card.\n\nIf image is not provided, Quarto will automatically attempt \nto locate a preview image.\n"}},"documentation":"The path to a preview image for this document.","$id":"quarto-resource-document-website-image"},"quarto-resource-document-website-image-height":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The height of the preview image for this document."},"documentation":"The height of the preview image for this document.","$id":"quarto-resource-document-website-image-height"},"quarto-resource-document-website-image-width":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The width of the preview image for this document."},"documentation":"The width of the preview image for this document.","$id":"quarto-resource-document-website-image-width"},"quarto-resource-document-website-image-alt":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The alt text for preview image on this page."},"documentation":"The alt text for preview image on this page.","$id":"quarto-resource-document-website-image-alt"},"quarto-resource-document-website-image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"If true, the preview image will only load when it comes into view.","long":"Enables lazy loading for the preview image. If true, the preview image element \nwill have `loading=\"lazy\"`, and will only load when it comes into view.\n\nIf false, the preview image will load immediately.\n"}},"documentation":"If true, the preview image will only load when it comes into\nview.","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5489,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Project type (default, website,\nbook, or manuscript)"},"render":{"_internalId":5437,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Files to render (defaults to all files)"},"execute-dir":{"_internalId":5440,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Working directory for computations"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Output directory"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"HTML library (JS/CSS/etc.) directory"},"resources":{"_internalId":5452,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":5451,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":5457,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},"preview":{"_internalId":5462,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Options for quarto preview"},"pre-render":{"_internalId":5470,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5469,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Scripts to run as a pre-render step"},"post-render":{"_internalId":5478,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5477,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Scripts to run as a post-render step"},"detect":{"_internalId":5488,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":5487,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Array of paths used to detect the project type within a directory"}},"patternProperties":{},"closed":true,"documentation":"Project configuration.","tags":{"description":"Project configuration."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5492,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Website configuration.","tags":{"description":"Website configuration."},"$id":"quarto-resource-project-website"},"quarto-resource-project-book":{"_internalId":1704,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Description metadata for HTML version of book"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"The path to the favicon for this website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Base URL for published website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Base URL for website source code repository"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the target attribute for repo links"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Subdirectory of repository containing website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Branch of website source code (defaults to main)"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"URL to use for the ‘report an issue’ repository action."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Links to source repository actions"},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Enable Google Analytics for this website"},"google-analytics":{"_internalId":535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":534,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"Storage options for Google Analytics data"},"storage":{"_internalId":526,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Anonymize the user ip address."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The version number of Google Analytics to use."},"version":{"_internalId":533,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The Google tracking Id or measurement Id of this website."},"plausible-analytics":{"_internalId":545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":544,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Provides an announcement displayed at the top of the page."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"announcement":{"_internalId":575,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":574,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"Whether this announcement may be dismissed by the user."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The icon to display in the announcement"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The position of the announcement."},"position":{"_internalId":568,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"type":{"_internalId":573,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The content of the announcement"},"cookie-consent":{"_internalId":607,"type":"anyOf","anyOf":[{"_internalId":580,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":606,"type":"object","description":"be an object","properties":{"type":{"_internalId":587,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The style of the consent banner that is displayed"},"style":{"_internalId":590,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"palette":{"_internalId":593,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"The url to the website’s cookie or privacy policy."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Provide full text search for website"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"The type of consent that should be requested"},"search":{"_internalId":694,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":693,"type":"object","description":"be an object","properties":{"location":{"_internalId":616,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Type of search UI (overlay or textbox)"},"type":{"_internalId":619,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Number of matches to display (defaults to 20)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Matches after which to collapse additional results"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Provide button for copying search link"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"keyboard-shortcut":{"_internalId":641,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_internalId":640,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":651,"type":"anyOf","anyOf":[{"_internalId":648,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Use external Algolia search index"},"algolia":{"_internalId":692,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The unique ID used by Algolia to identify your application"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The Search-Only API key to use to connect to Algolia"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Enable tracking of Algolia analytics events"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Field that contains the URL of index entries"},"index-fields":{"_internalId":688,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the title of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the text of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the section of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true},"params":{"_internalId":691,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Top navigation options"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The name of the index to use when performing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Location for search widget (navbar or\nsidebar)"},"navbar":{"_internalId":748,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":747,"type":"object","description":"be an object","properties":{"title":{"_internalId":707,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo":{"_internalId":710,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"The navbar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"Include a search box in the navbar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Always show the navbar (keeping it pinned)."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"collapse-below":{"_internalId":727,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"List of items for the left side of the navbar."},"left":{"_internalId":733,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":732,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the right side of the navbar."},"right":{"_internalId":739,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":738,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"toggle-position":{"_internalId":744,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Side navigation options"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The navbar title. Uses the project title if none is specified."},"sidebar":{"_internalId":819,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":818,"type":"anyOf","anyOf":[{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":817,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The identifier for this sidebar."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert below each page’s body."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place above margin content (text or file path)"},"margin-header":{"_internalId":829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"margin-footer":{"_internalId":835,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":834,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Provide next and previous article links in footer"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide a ‘back to top’ navigation button"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Shared page footer"},"page-footer":{"_internalId":849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":848,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"comments":{"_internalId":858,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":866,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":865,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish twitter card metadata"},"twitter-card":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":873,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"A list of other links to appear below the TOC."},"other-links":{"_internalId":879,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of code links to appear with this document."},"code-links":{"_internalId":889,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":888,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of input documents that should be treated as drafts"},"drafts":{"_internalId":897,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":896,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"How to handle drafts that are encountered."},"draft-mode":{"_internalId":902,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"author":{"_internalId":922,"type":"anyOf","anyOf":[{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Format string for dates in the book"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book abstract"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book part and chapter files"},"chapters":{"_internalId":935,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book appendix files"},"appendices":{"_internalId":940,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book references file"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"sharing":{"_internalId":955,"type":"anyOf","anyOf":[{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":954,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":962,"type":"anyOf","anyOf":[{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"},{"_internalId":961,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":968,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":967,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"The Digital Object Identifier for this book."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"A url to the abstract for this item."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Date the item has been accessed."},"accessed":{"_internalId":1413,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Archive storing the item"},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Collection the item is part of within an archive."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Geographic location of the archive."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Date the item was initially available"},"available-date":{"_internalId":1436,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Call number (to locate the item in a library)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chair":{"_internalId":1441,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"chapter-number":{"_internalId":1444,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"citation-number":{"_internalId":1453,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book).","completions":[]},"collection-editor":{"_internalId":1456,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-number":{"_internalId":1459,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"compiler":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-author":{"_internalId":1470,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Title of the container holding the item."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Short/abbreviated form of container-title;"},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography.","completions":[]},"contributor":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"curator":{"_internalId":1480,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Director (e.g. of a film)."},"director":{"_internalId":1485,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1494,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"The editor of the item."},"editor":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editorial-director":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Combined editor and translator of a work."},"editor-translator":{"_internalId":1503,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Date the event related to an item took place."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1510,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Executive producer of the item (e.g. of a television series)."},"executive-producer":{"_internalId":1517,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"first-reference-note-number":{"_internalId":1522,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"A url to the full text for this item."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Type, class, or subtype of the item"},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Guest (e.g. on a TV show or podcast)."},"guest":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"host":{"_internalId":1532,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"A value which uniquely identifies this item."},"id":{"_internalId":1539,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"illustrator":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1545,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Serial Number."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Issue number of the item or container holding the item"},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1560,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Date the item was issued/published."},"issued":{"_internalId":1563,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The language of the item (used only for citation of the item)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The license information applicable to an item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"A cite-specific pinpointer within the item."},"locator":{"_internalId":1574,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Narrator (e.g. of an audio book)."},"narrator":{"_internalId":1579,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Number identifying the item (e.g. a report number)."},"number":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of pages of the cited item."},"number-of-pages":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"number-of-volumes":{"_internalId":1590,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"organizer":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"The original creator of a work."},"original-author":{"_internalId":1596,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Issue date of the original version."},"original-date":{"_internalId":1599,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-first":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-number":{"_internalId":1617,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Title of the specific part of an item being cited."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A url to the pdf for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"performer":{"_internalId":1624,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"PubMed Central reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Printing number of the item or container holding the item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"producer":{"_internalId":1642,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"A public url for this item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The publisher of the item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The geographic location of the publisher."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Recipient (e.g. of a letter)."},"recipient":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Author of the item reviewed by the current item."},"reviewed-author":{"_internalId":1654,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Title of the item reviewed by the current item."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Scale of e.g. a map or model."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"script-writer":{"_internalId":1663,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"section":{"_internalId":1666,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Creator of a series (e.g. of a television series)."},"series-creator":{"_internalId":1669,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"submitted":{"_internalId":1676,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"supplement-number":{"_internalId":1679,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Short/abbreviated form oftitle."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Translator","completions":[]},"translator":{"_internalId":1684,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"type":{"_internalId":1687,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume":{"_internalId":1699,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Manuscript configuration"}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Book configuration.","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5502,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Manuscript configuration","tags":{"description":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5505,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"internal-schema-hack","tags":{"description":"internal-schema-hack","hidden":true},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5516,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5515,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5514,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."},"$id":"quarto-resource-project-engines"},"quarto-resource-document-a11y-axe":{"_internalId":5527,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5526,"type":"object","description":"be an object","properties":{"output":{"_internalId":5525,"type":"enum","enum":["json","console","document"],"description":"be one of: `json`, `console`, `document`","completions":["json","console","document"],"exhaustiveCompletions":true,"tags":{"description":"If set, output axe-core results on console. `json`: produce structured output; `console`: print output to javascript console; `document`: produce a visual report of violations in the document itself."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-files"],"description":"When defined, run axe-core accessibility tests on the document."},"documentation":"When defined, run axe-core accessibility tests on the document.","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5530,"type":"ref","$ref":"logo-light-dark-specifier-path-optional","description":"be logo-light-dark-specifier-path-optional","tags":{"formats":["typst"],"description":"The logo image."},"documentation":"The logo image.","$id":"quarto-resource-document-typst-logo"},"quarto-resource-document-typst-margin-geometry":{"_internalId":5541,"type":"object","description":"be an object","properties":{"inner":{"_internalId":5535,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Inner (left) margin geometry."},"documentation":"Inner (left) margin geometry."},"outer":{"_internalId":5538,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Outer (right) margin geometry."},"documentation":"Outer (right) margin geometry."},"clearance":{"type":"string","description":"be a string","tags":{"description":"Minimum vertical spacing between margin notes (default: 8pt)."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."}},"patternProperties":{},"closed":true,"tags":{"formats":["typst"],"description":{"short":"Advanced geometry settings for Typst margin layout.","long":"Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n"}},"documentation":"Advanced geometry settings for Typst margin layout.","$id":"quarto-resource-document-typst-margin-geometry"},"quarto-resource-document-typst-theorem-appearance":{"_internalId":5544,"type":"enum","enum":["simple","fancy","clouds","rainbow"],"description":"be one of: `simple`, `fancy`, `clouds`, `rainbow`","completions":["simple","fancy","clouds","rainbow"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"Visual style for theorem environments in Typst output.","long":"Controls how theorems, lemmas, definitions, etc. are rendered:\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n"}},"documentation":"Project configuration.","$id":"quarto-resource-document-typst-theorem-appearance"},"front-matter-execute":{"_internalId":5568,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5545,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5546,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5547,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5548,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5549,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5550,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5551,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5552,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5553,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5554,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5555,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5556,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5557,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5558,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5559,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5560,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5561,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5562,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5563,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5564,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5565,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5566,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5567,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected","type":"string","pattern":"(?!(^daemon_restart$|^daemonRestart$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"front-matter-execute"},"front-matter-format":{"_internalId":214420,"type":"anyOf","anyOf":[{"_internalId":214416,"type":"anyOf","anyOf":[{"_internalId":214336,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":214337,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":214338,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":214339,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":214340,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":214341,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":214342,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":214343,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":214344,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":214345,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":214346,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":214347,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":214348,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":214349,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":214350,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":214351,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":214352,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":214353,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":214354,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":214355,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":214356,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":214357,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":214358,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":214359,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":214360,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":214361,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":214362,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":214363,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":214364,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":214365,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":214366,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":214367,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":214368,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":214369,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":214370,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":214371,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":214372,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":214373,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":214374,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":214375,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":214376,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":214377,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":214378,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":214379,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":214380,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":214381,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":214382,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":214383,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":214384,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":214385,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":214386,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":214387,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":214388,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":214389,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":214390,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":214391,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":214392,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":214393,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":214394,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":214395,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":214396,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":214397,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":214398,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":214399,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":214400,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":214401,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":214402,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":214403,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":214404,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":214405,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":214406,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":214407,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":214408,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":214409,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":214410,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":214411,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":214412,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":214413,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":214414,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":214415,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":214417,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":214415,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":214419,"type":"allOf","allOf":[{"_internalId":214418,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8196,"type":"anyOf","anyOf":[{"_internalId":8194,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8099,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8100,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8101,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8102,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8103,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8104,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8105,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8106,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8107,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8108,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8109,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8110,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8111,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8112,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8113,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":8114,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8115,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8116,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8117,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8118,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8119,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8120,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8121,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8122,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8123,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8124,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8125,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8126,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8127,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8128,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8129,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8130,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8131,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8132,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8133,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8133,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8134,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8135,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8136,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8137,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8138,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8139,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8140,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8141,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8142,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8143,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8144,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8145,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8146,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8147,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8148,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8149,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8150,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8151,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8152,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8153,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8154,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8155,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8156,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8157,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8158,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8159,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8160,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":8161,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8162,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8163,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8164,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8165,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8166,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8167,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8168,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8170,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8171,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8172,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8173,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8174,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8175,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8176,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8177,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8178,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8179,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8180,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8181,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8182,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8183,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8184,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8185,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8186,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8187,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8188,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8189,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8190,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8191,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8192,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8192,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8193,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":8195,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10825,"type":"anyOf","anyOf":[{"_internalId":10823,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10726,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10727,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10728,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10729,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10730,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10731,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10732,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10733,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10734,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10735,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10736,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10737,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10738,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10739,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10740,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10741,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":10742,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10743,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10744,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10745,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10746,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10747,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10748,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10749,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10750,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10751,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10752,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10753,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10754,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10755,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10756,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10757,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10758,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10759,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10760,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10761,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10761,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10762,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10763,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10764,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10765,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10766,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10767,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10768,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10769,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10770,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10771,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10772,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10773,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10774,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10775,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10776,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10777,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10778,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10779,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10780,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10781,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10782,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10783,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10784,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10785,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10786,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10787,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10788,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":10789,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10790,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10791,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10792,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10793,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10794,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10795,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10796,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10797,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10798,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10798,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10799,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10800,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10801,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10802,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10803,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10804,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10805,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10806,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10807,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10808,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10809,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10810,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10811,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10812,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10813,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10814,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10815,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10816,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10817,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10818,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10819,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10820,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10821,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10821,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10822,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":10824,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13452,"type":"anyOf","anyOf":[{"_internalId":13450,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13355,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13356,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13357,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13358,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13359,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13360,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13361,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13362,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13363,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13364,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13365,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13366,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13367,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13368,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13369,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":13370,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13371,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13372,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13373,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13374,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13375,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13376,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13377,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13378,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13379,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13380,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13381,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13382,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13383,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13384,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13385,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13386,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13387,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13388,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13389,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13389,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13390,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13391,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13392,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13393,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13394,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13395,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13396,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13397,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13398,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13399,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13400,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13401,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13402,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13403,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13404,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13405,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13406,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13407,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13408,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13409,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13410,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13411,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13412,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13413,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13414,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13415,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13416,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":13417,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13418,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13419,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13420,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13421,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13422,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13423,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13424,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13425,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13425,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13426,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13427,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13428,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13429,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13430,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13431,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13432,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13433,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13434,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13435,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13436,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13437,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13438,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13439,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13440,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13441,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13442,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13443,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13444,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13445,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13446,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13447,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13448,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13448,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13449,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":13451,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":16081,"type":"anyOf","anyOf":[{"_internalId":16079,"type":"object","description":"be an object","properties":{"eval":{"_internalId":15982,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":15983,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":15984,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":15985,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":15986,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":15987,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":15988,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":15989,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":15990,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":15991,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":15992,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":15993,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":15994,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":15995,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":15996,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":15997,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":15998,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":15999,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":16000,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":16001,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":16002,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":16003,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":16004,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":16005,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":16006,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":16007,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":16008,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":16009,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":16010,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":16011,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":16012,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":16013,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":16014,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":16015,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":16016,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":16017,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":16017,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":16018,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":16019,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":16020,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":16021,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":16022,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":16023,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":16024,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":16025,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":16026,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":16027,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":16028,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":16029,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":16030,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":16031,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":16032,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":16033,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":16034,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":16035,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":16036,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":16037,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":16038,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":16039,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":16040,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":16041,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":16042,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":16043,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":16044,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":16045,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":16046,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":16047,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":16048,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":16049,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":16050,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":16051,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":16052,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":16053,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":16054,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":16054,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":16055,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":16056,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":16057,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":16058,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":16059,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":16060,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":16061,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":16062,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":16063,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":16064,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":16065,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":16066,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":16067,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":16068,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":16069,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":16070,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":16071,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":16072,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":16073,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":16074,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":16075,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":16076,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":16077,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":16077,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":16078,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":16080,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18708,"type":"anyOf","anyOf":[{"_internalId":18706,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18611,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18612,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18613,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18614,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18615,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18616,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18617,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18618,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18619,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18620,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18621,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18622,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18623,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18624,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18625,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":18626,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18627,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18628,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18629,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18630,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18631,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18632,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18633,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18634,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18635,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18636,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18637,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18638,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18639,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18640,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18641,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18642,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18643,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18644,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18645,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18645,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18646,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18647,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18648,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18649,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18650,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18651,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18652,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18653,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18654,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18655,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18656,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18657,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18658,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18659,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18660,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18661,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18662,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18663,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18664,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18665,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18666,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18667,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18668,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18669,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18670,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18671,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18672,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":18673,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18674,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18675,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18676,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18677,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18678,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18679,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18680,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18681,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18681,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18682,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18683,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18684,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18685,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18686,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18687,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18688,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18689,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18690,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18691,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18692,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18693,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18694,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18695,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18696,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18697,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18698,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18699,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18700,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18701,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18702,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18703,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18705,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":18707,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21335,"type":"anyOf","anyOf":[{"_internalId":21333,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21238,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21239,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21240,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21241,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21242,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21243,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21244,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21245,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21246,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21247,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21248,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21249,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21250,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21251,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21252,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":21253,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21254,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21255,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21256,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21257,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21258,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21259,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21260,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21261,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21262,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21263,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21264,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21265,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21266,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21267,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21268,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21269,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21270,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21271,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21273,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21274,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21275,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21276,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21277,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21278,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21279,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21280,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21281,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21282,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21283,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21284,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21285,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21286,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21287,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21288,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21289,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21290,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21291,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21292,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21293,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21294,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21295,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21296,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21297,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21298,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21299,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":21300,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21301,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21302,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21303,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21304,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21305,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21306,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21307,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21308,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21308,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21309,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21310,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21311,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21312,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21313,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21314,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21315,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21316,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21317,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21318,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21319,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21320,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21321,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21322,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21323,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21324,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21325,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21326,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21327,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21328,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21329,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21330,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21332,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":21334,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":23962,"type":"anyOf","anyOf":[{"_internalId":23960,"type":"object","description":"be an object","properties":{"eval":{"_internalId":23865,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":23866,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":23867,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":23868,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":23869,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":23870,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":23871,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":23872,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":23873,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":23874,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":23875,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":23876,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":23877,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":23878,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":23879,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":23880,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":23881,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":23882,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":23883,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":23884,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":23885,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":23886,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":23887,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":23888,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":23889,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":23890,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":23891,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":23892,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":23893,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":23894,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":23895,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":23896,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":23897,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":23898,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":23899,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":23899,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":23900,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":23901,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":23902,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":23903,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":23904,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":23905,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":23906,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":23907,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":23908,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":23909,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":23910,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":23911,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":23912,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":23913,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":23914,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":23915,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":23916,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":23917,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":23918,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":23919,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":23920,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":23921,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":23922,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":23923,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":23924,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":23925,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":23926,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":23927,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":23928,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":23929,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":23930,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":23931,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":23932,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":23933,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":23934,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":23935,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":23935,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":23936,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":23937,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":23938,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":23939,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":23940,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":23941,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":23942,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":23943,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":23944,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":23945,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":23946,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":23947,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":23948,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":23949,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":23950,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":23951,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":23952,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":23953,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":23954,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":23955,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":23956,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":23957,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":23958,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":23958,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":23959,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":23961,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26589,"type":"anyOf","anyOf":[{"_internalId":26587,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26492,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26493,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26494,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26495,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26496,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26497,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26498,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26499,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26500,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26501,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26502,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26503,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26504,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26505,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26506,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":26507,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26508,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26509,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26510,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26511,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26512,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26513,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26514,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26515,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26516,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26517,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26518,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26519,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26520,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26521,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26522,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26523,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26524,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26525,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26526,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26526,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26527,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26528,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26529,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26530,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26531,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26532,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26533,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26534,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26535,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26536,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26537,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26538,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26539,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26540,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26541,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26542,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26543,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26544,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26545,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26546,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26547,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26548,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26549,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26550,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26551,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26552,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26553,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":26554,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26555,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26556,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26557,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26558,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26559,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26560,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26561,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26562,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26562,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26563,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26564,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26565,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26566,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26567,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26568,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26569,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26570,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26571,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26572,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26573,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26574,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26575,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26576,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26577,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26578,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26579,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26580,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26581,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26582,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26583,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26584,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26585,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26585,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26586,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":26588,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":29216,"type":"anyOf","anyOf":[{"_internalId":29214,"type":"object","description":"be an object","properties":{"eval":{"_internalId":29119,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":29120,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":29121,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":29122,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":29123,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":29124,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":29125,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":29126,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":29127,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":29128,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":29129,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":29130,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":29131,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":29132,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":29133,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":29134,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":29135,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":29136,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":29137,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":29138,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":29139,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":29140,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":29141,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":29142,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":29143,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":29144,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":29145,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":29146,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":29147,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":29148,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":29149,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":29150,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":29151,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":29152,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":29153,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":29153,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":29154,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":29155,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":29156,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":29157,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":29158,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":29159,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":29160,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":29161,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":29162,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":29163,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":29164,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":29165,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":29166,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":29167,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":29168,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":29169,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":29170,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":29171,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":29172,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":29173,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":29174,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":29175,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":29176,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":29177,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":29178,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":29179,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":29180,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":29181,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":29182,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":29183,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":29184,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":29185,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":29186,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":29187,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":29188,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":29189,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":29189,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":29190,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":29191,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":29192,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":29193,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":29194,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":29195,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":29196,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":29197,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":29198,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":29199,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":29200,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":29201,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":29202,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":29203,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":29204,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":29205,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":29206,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":29207,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":29208,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":29209,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":29210,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":29211,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":29212,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":29212,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":29213,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":29215,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":31843,"type":"anyOf","anyOf":[{"_internalId":31841,"type":"object","description":"be an object","properties":{"eval":{"_internalId":31746,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":31747,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":31748,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":31749,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":31750,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":31751,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":31752,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":31753,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":31754,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":31755,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":31756,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":31757,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":31758,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":31759,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":31760,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":31761,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":31762,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":31763,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":31764,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":31765,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":31766,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":31767,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":31768,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":31769,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":31770,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":31771,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":31772,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":31773,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":31774,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":31775,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":31776,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":31777,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":31778,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":31779,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":31780,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":31780,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":31781,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":31782,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":31783,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":31784,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":31785,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":31786,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":31787,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":31788,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":31789,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":31790,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":31791,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":31792,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":31793,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":31794,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":31795,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":31796,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":31797,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":31798,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":31799,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":31800,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":31801,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":31802,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":31803,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":31804,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":31805,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":31806,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":31807,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":31808,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":31809,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":31810,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":31811,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":31812,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":31813,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":31814,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":31815,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":31816,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":31816,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":31817,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":31818,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":31819,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":31820,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":31821,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":31822,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":31823,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":31824,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":31825,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":31826,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":31827,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":31828,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":31829,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":31830,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":31831,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":31832,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":31833,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":31834,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":31835,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":31836,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":31837,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":31838,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":31839,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":31839,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":31840,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":31842,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34576,"type":"anyOf","anyOf":[{"_internalId":34574,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34373,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34374,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34375,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34376,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34377,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34378,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34379,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34380,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34381,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34382,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34383,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34384,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34385,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34386,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34387,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34388,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34389,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34390,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34391,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34392,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34393,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34394,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34395,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34396,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34397,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34398,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34399,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":34400,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34401,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34402,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34403,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34404,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34405,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34406,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34407,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34408,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34409,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34410,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34411,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34412,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":34413,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34414,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34415,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34416,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34417,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34418,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34419,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34420,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34421,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34422,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34423,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34424,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34425,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34426,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34427,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34428,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34429,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34430,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34431,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34432,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34433,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34434,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34435,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34436,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34437,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34438,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34439,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34440,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34441,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34442,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34443,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34444,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34445,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34446,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34447,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34448,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34449,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34449,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34450,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34451,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34452,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34453,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34454,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34455,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34456,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34457,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34458,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34459,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34460,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34461,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34462,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34463,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34464,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34465,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34466,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34467,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34468,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34469,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34470,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34471,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34472,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34473,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34474,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34475,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34476,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34477,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34478,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34479,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34480,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34481,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34482,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34483,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34484,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34485,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34486,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34487,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34488,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34489,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34490,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34491,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34492,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":34493,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34494,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34495,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34496,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34497,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34498,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34499,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34500,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34501,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34502,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34503,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34504,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34505,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34506,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34507,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34508,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34509,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34510,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34511,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34512,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34513,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34514,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34515,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34516,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34517,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34518,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34519,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34520,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34521,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34522,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34523,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34524,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34525,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34526,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34527,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34528,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34529,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34530,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34531,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":34532,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":34533,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34534,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34535,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34536,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34537,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34538,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34539,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34540,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34541,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34542,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34543,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34544,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34545,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34546,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34546,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34547,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34548,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34549,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34550,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34551,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34552,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34553,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34554,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34555,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34556,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34557,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34558,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34559,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34560,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34561,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34562,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34563,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34564,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34565,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34566,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34567,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34568,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34569,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34570,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34570,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34571,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34572,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34573,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,theme,pdf-engine,pdf-engine-opt,pdf-engine-opts,beameroption,aspectratio,logo,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,incremental,slide-level,df-print,ascii,toc,table-of-contents,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":34575,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":37203,"type":"anyOf","anyOf":[{"_internalId":37201,"type":"object","description":"be an object","properties":{"eval":{"_internalId":37106,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":37107,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":37108,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":37109,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":37110,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":37111,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":37112,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":37113,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":37114,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":37115,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":37116,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":37117,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":37118,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":37119,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":37120,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":37121,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":37122,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":37123,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":37124,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":37125,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":37126,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":37127,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":37128,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":37129,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":37130,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":37131,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":37132,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":37133,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":37134,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":37135,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":37136,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":37137,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":37138,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":37139,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":37140,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":37140,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":37141,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":37142,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":37143,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":37144,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":37145,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":37146,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":37147,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":37148,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":37149,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":37150,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":37151,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":37152,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":37153,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":37154,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":37155,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":37156,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":37157,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":37158,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":37159,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":37160,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":37161,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":37162,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":37163,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":37164,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":37165,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":37166,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":37167,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":37168,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":37169,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":37170,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":37171,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":37172,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":37173,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":37174,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":37175,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":37176,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":37176,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":37177,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":37178,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":37179,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":37180,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":37181,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":37182,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":37183,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":37184,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":37185,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":37186,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":37187,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":37188,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":37189,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":37190,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":37191,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":37192,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":37193,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":37194,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":37195,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":37196,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":37197,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":37198,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":37199,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":37199,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":37200,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":37202,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":39830,"type":"anyOf","anyOf":[{"_internalId":39828,"type":"object","description":"be an object","properties":{"eval":{"_internalId":39733,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":39734,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":39735,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":39736,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":39737,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":39738,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":39739,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":39740,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":39741,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":39742,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":39743,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":39744,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":39745,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":39746,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":39747,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":39748,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":39749,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":39750,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":39751,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":39752,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":39753,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":39754,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":39755,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":39756,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":39757,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":39758,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":39759,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":39760,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":39761,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":39762,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":39763,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":39764,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":39765,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":39766,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":39767,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":39767,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":39768,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":39769,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":39770,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":39771,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":39772,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":39773,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":39774,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":39775,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":39776,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":39777,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":39778,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":39779,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":39780,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":39781,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":39782,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":39783,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":39784,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":39785,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":39786,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":39787,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":39788,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":39789,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":39790,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":39791,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":39792,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":39793,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":39794,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":39795,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":39796,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":39797,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":39798,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":39799,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":39800,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":39801,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":39802,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":39803,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":39803,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":39804,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":39805,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":39806,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":39807,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":39808,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":39809,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":39810,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":39811,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":39812,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":39813,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":39814,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":39815,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":39816,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":39817,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":39818,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":39819,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":39820,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":39821,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":39822,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":39823,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":39824,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":39825,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":39826,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":39826,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":39827,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":39829,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42458,"type":"anyOf","anyOf":[{"_internalId":42456,"type":"object","description":"be an object","properties":{"eval":{"_internalId":42360,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":42361,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":42362,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":42363,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":42364,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":42365,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":42366,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":42367,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":42368,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":42369,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":42370,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":42371,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":42372,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":42373,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":42374,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":42375,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":42376,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":42377,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":42378,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":42379,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":42380,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":42381,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":42382,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":42383,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":42384,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":42385,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":42386,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":42387,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":42388,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":42389,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":42390,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":42391,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":42392,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":42393,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":42394,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":42395,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":42395,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":42396,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":42397,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":42398,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":42399,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":42400,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":42401,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":42402,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":42403,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":42404,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":42405,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":42406,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":42407,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":42408,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":42409,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":42410,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":42411,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":42412,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":42413,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":42414,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":42415,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":42416,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":42417,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":42418,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":42419,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":42420,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":42421,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":42422,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":42423,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42424,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42425,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42426,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42427,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42428,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42429,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42430,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42431,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42431,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42432,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42433,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42434,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42435,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42436,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42437,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42438,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42439,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42440,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42441,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42442,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42443,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42444,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42445,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42446,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42447,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42448,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42449,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42450,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42451,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42452,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42453,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42454,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42454,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42455,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":42457,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":45092,"type":"anyOf","anyOf":[{"_internalId":45090,"type":"object","description":"be an object","properties":{"eval":{"_internalId":44988,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":44989,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":44990,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":44991,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":44992,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":44993,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":44994,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":44995,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":44996,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":44997,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":44998,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":44999,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":45000,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":45001,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":45002,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":45003,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":45004,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":45005,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":45006,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":45007,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":45008,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":45009,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":45010,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":45011,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":45012,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":45013,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":45014,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":45015,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":45016,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":45017,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":45018,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":45019,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":45020,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":45021,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":45022,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":45023,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":45023,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":45024,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":45025,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":45026,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":45027,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":45028,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":45029,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":45030,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":45031,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":45032,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":45033,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":45034,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":45035,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":45036,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":45037,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":45038,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":45039,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":45040,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":45041,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":45042,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":45043,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":45044,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":45045,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":45046,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":45047,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":45048,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":45049,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":45050,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":45051,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":45052,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":45053,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":45054,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":45055,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":45056,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":45057,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":45058,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":45059,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":45060,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":45061,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":45062,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":45063,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":45063,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":45064,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":45065,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":45066,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":45067,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":45068,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":45069,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":45070,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":45071,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":45072,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":45073,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":45074,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":45075,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":45076,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":45077,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":45078,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":45079,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":45080,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":45081,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":45082,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":45083,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":45084,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":45085,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":45086,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":45087,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":45088,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":45088,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":45089,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":45091,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":47726,"type":"anyOf","anyOf":[{"_internalId":47724,"type":"object","description":"be an object","properties":{"eval":{"_internalId":47622,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":47623,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":47624,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":47625,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":47626,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":47627,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":47628,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":47629,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":47630,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":47631,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":47632,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":47633,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":47634,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":47635,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":47636,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":47637,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":47638,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":47639,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":47640,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":47641,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":47642,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":47643,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":47644,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":47645,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":47646,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":47647,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":47648,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":47649,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":47650,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":47651,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":47652,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":47653,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":47654,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":47655,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":47656,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":47657,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":47657,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":47658,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":47659,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":47660,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":47661,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":47662,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":47663,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":47664,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":47665,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":47666,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":47667,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":47668,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":47669,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":47670,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":47671,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":47672,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":47673,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":47674,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":47675,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":47676,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":47677,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":47678,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":47679,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":47680,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":47681,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":47682,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":47683,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":47684,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":47685,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":47686,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":47687,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":47688,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":47689,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":47690,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":47691,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":47692,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":47693,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":47694,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":47695,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":47696,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":47697,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":47697,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":47698,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":47699,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":47700,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":47701,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":47702,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":47703,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":47704,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":47705,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":47706,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":47707,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":47708,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":47709,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":47710,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":47711,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":47712,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":47713,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":47714,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":47715,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":47716,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":47717,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":47718,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":47719,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":47720,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":47721,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":47722,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":47722,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":47723,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":47725,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":50382,"type":"anyOf","anyOf":[{"_internalId":50380,"type":"object","description":"be an object","properties":{"eval":{"_internalId":50256,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":50257,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":50258,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":50259,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":50260,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":50261,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":50262,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":50263,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":50264,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":50265,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":50266,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":50267,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":50268,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":50269,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":50270,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":50271,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":50272,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":50273,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":50274,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":50275,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":50276,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":50277,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":50278,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":50279,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":50280,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":50281,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":50282,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":50283,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":50284,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":50285,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":50286,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":50287,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":50288,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":50289,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":50290,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":50291,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":50292,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":50293,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":50294,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":50295,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":50296,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":50297,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":50298,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":50299,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":50300,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":50301,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":50302,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":50302,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":50303,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":50304,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":50305,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":50306,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":50307,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":50308,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":50309,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":50310,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":50311,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":50312,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":50313,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":50314,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":50315,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":50316,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":50317,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":50318,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":50319,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":50320,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":50321,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":50322,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":50323,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":50324,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":50325,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":50326,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":50327,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":50328,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":50329,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":50330,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":50331,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":50332,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":50333,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"margin-left":{"_internalId":50334,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":50335,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":50336,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":50337,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":50338,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":50339,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":50340,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":50341,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":50342,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":50343,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":50344,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":50345,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":50346,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":50347,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":50348,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":50349,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":50350,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":50351,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":50352,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":50353,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":50354,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":50355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":50355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":50356,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":50357,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":50358,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":50359,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":50360,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":50361,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":50362,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":50363,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":50364,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":50365,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":50366,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":50367,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":50368,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":50369,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":50370,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":50371,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":50372,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":50373,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":50374,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":50375,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":50376,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":50377,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":50378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":50378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":50379,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,linkcolor,contrastcolor,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,linestretch,interlinespace,linkstyle,whitespace,indenting,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,headertext,footertext,includesource,metadata-file,metadata-files,lang,language,dir,layout,margin-left,margin-right,margin-top,margin-bottom,keywords,number-sections,shift-heading-level-by,pagenumbering,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdfa,pdfaiccprofile,pdfaintent,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":50381,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":53009,"type":"anyOf","anyOf":[{"_internalId":53007,"type":"object","description":"be an object","properties":{"eval":{"_internalId":52912,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":52913,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":52914,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":52915,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":52916,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":52917,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":52918,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":52919,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":52920,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":52921,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":52922,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":52923,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":52924,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":52925,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":52926,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":52927,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":52928,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":52929,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":52930,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":52931,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":52932,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":52933,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":52934,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":52935,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":52936,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":52937,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":52938,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":52939,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":52940,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":52941,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":52942,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":52943,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":52944,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":52945,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":52946,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":52946,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":52947,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":52948,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":52949,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":52950,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":52951,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":52952,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":52953,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":52954,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":52955,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":52956,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":52957,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":52958,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":52959,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":52960,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":52961,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":52962,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":52963,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":52964,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":52965,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":52966,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":52967,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":52968,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":52969,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":52970,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":52971,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":52972,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":52973,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":52974,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":52975,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":52976,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":52977,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":52978,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":52979,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":52980,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":52981,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":52982,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":52982,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":52983,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":52984,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":52985,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":52986,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":52987,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":52988,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":52989,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":52990,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":52991,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":52992,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":52993,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":52994,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":52995,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":52996,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":52997,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":52998,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":52999,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":53000,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":53001,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":53002,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":53003,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":53004,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":53005,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":53005,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":53006,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":53008,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":55636,"type":"anyOf","anyOf":[{"_internalId":55634,"type":"object","description":"be an object","properties":{"eval":{"_internalId":55539,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":55540,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":55541,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":55542,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":55543,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":55544,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":55545,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":55546,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":55547,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":55548,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":55549,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":55550,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":55551,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":55552,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":55553,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":55554,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":55555,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":55556,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":55557,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":55558,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":55559,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":55560,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":55561,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":55562,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":55563,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":55564,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":55565,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":55566,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":55567,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":55568,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":55569,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":55570,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":55571,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":55572,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":55573,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":55573,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":55574,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":55575,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":55576,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":55577,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":55578,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":55579,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":55580,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":55581,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":55582,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":55583,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":55584,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":55585,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":55586,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":55587,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":55588,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":55589,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":55590,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":55591,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":55592,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":55593,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":55594,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":55595,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":55596,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":55597,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":55598,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":55599,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":55600,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":55601,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":55602,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":55603,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":55604,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":55605,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":55606,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":55607,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":55608,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":55609,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":55609,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":55610,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":55611,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":55612,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":55613,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":55614,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":55615,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":55616,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":55617,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":55618,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":55619,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":55620,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":55621,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":55622,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":55623,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":55624,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":55625,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":55626,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":55627,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":55628,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":55629,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":55630,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":55631,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":55632,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":55632,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":55633,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":55635,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":58259,"type":"anyOf","anyOf":[{"_internalId":58257,"type":"object","description":"be an object","properties":{"eval":{"_internalId":58166,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":58167,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":58168,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":58169,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":58170,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":58171,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":58172,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":58173,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":58174,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":58175,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":58176,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":58177,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":58178,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":58179,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":58180,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":58181,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":58182,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":58183,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":58184,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":58185,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":58186,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":58187,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":58188,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":58189,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":58190,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":58191,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":58192,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":58193,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":58194,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":58195,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":58196,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":58197,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":58198,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":58199,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":58200,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":58200,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":58201,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":58202,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":58203,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":58204,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":58205,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":58206,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":58207,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":58208,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":58209,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":58210,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":58211,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":58212,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":58213,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":58214,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":58215,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":58216,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":58217,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":58218,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":58219,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":58220,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":58221,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":58222,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":58223,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":58224,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":58225,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":58226,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":58227,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":58228,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":58229,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":58230,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":58231,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":58232,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":58233,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":58234,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":58235,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":58236,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":58237,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":58238,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":58238,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":58239,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":58240,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":58241,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":58242,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":58243,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":58244,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":58245,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":58246,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":58247,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":58248,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":58249,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":58250,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":58251,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":58252,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":58253,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":58254,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":58255,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":58256,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":58258,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":60882,"type":"anyOf","anyOf":[{"_internalId":60880,"type":"object","description":"be an object","properties":{"eval":{"_internalId":60789,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":60790,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":60791,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":60792,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":60793,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":60794,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":60795,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":60796,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":60797,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":60798,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":60799,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":60800,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":60801,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":60802,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":60803,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":60804,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":60805,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":60806,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":60807,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":60808,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":60809,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":60810,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":60811,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":60812,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":60813,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":60814,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":60815,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":60816,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":60817,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":60818,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":60819,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":60820,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":60821,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":60822,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":60823,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":60823,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":60824,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":60825,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":60826,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":60827,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":60828,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":60829,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":60830,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":60831,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":60832,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":60833,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":60834,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":60835,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":60836,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":60837,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":60838,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":60839,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":60840,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":60841,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":60842,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":60843,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":60844,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":60845,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":60846,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":60847,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":60848,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":60849,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":60850,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":60851,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":60852,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":60853,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":60854,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":60855,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":60856,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":60857,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":60858,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":60859,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":60860,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":60861,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":60861,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":60862,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":60863,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":60864,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":60865,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":60866,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":60867,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":60868,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":60869,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":60870,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":60871,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":60872,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":60873,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":60874,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":60875,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":60876,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":60877,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":60878,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":60879,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":60881,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":63505,"type":"anyOf","anyOf":[{"_internalId":63503,"type":"object","description":"be an object","properties":{"eval":{"_internalId":63412,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":63413,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":63414,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":63415,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":63416,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":63417,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":63418,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":63419,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":63420,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":63421,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":63422,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":63423,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":63424,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":63425,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":63426,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":63427,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":63428,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":63429,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":63430,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":63431,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":63432,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":63433,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":63434,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":63435,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":63436,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":63437,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":63438,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":63439,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":63440,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":63441,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":63442,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":63443,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":63444,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":63445,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":63446,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":63446,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":63447,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":63448,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":63449,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":63450,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":63451,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":63452,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":63453,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":63454,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":63455,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":63456,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":63457,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":63458,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":63459,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":63460,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":63461,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":63462,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":63463,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":63464,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":63465,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":63466,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":63467,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":63468,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":63469,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":63470,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":63471,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":63472,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":63473,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":63474,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":63475,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":63476,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":63477,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":63478,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":63479,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":63480,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":63481,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":63482,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":63483,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":63484,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":63484,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":63485,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":63486,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":63487,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":63488,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":63489,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":63490,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":63491,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":63492,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":63493,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":63494,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":63495,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":63496,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":63497,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":63498,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":63499,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":63500,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":63501,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":63502,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":63504,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":66140,"type":"anyOf","anyOf":[{"_internalId":66138,"type":"object","description":"be an object","properties":{"eval":{"_internalId":66035,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":66036,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":66037,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":66038,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":66039,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":66040,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":66041,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":66042,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":66043,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":66044,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":66045,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":66046,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":66047,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":66048,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":66049,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":66050,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":66051,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":66052,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":66053,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":66054,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":66055,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":66056,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":66057,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":66058,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":66059,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":66060,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":66061,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":66062,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":66063,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":66064,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":66065,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":66066,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":66067,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":66068,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":66069,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":66070,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":66071,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":66072,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":66073,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":66074,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":66075,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":66076,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":66077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":66077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":66078,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":66079,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":66080,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":66081,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":66082,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":66083,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":66084,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":66085,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":66086,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":66087,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":66088,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":66089,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":66090,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":66091,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":66092,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":66093,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":66094,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":66095,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":66096,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":66097,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":66098,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":66099,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":66100,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":66101,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":66102,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":66103,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":66104,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":66105,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":66106,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":66107,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":66108,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":66109,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":66110,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":66111,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":66112,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":66113,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":66114,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":66115,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":66116,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":66117,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":66118,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":66118,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":66119,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":66120,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":66121,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":66122,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":66123,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":66124,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":66125,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":66126,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":66127,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":66128,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":66129,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":66130,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":66131,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":66132,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":66133,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":66134,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":66135,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":66135,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":66136,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":66137,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,category,number-sections,number-depth,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":66139,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":68767,"type":"anyOf","anyOf":[{"_internalId":68765,"type":"object","description":"be an object","properties":{"eval":{"_internalId":68670,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":68671,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":68672,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":68673,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":68674,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":68675,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":68676,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":68677,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":68678,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":68679,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":68680,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":68681,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":68682,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":68683,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":68684,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":68685,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":68686,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":68687,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":68688,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":68689,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":68690,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":68691,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":68692,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":68693,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":68694,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":68695,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":68696,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":68697,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":68698,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":68699,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":68700,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":68701,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":68702,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":68703,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":68704,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":68704,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":68705,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":68706,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":68707,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":68708,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":68709,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":68710,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":68711,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":68712,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":68713,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":68714,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":68715,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":68716,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":68717,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":68718,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":68719,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":68720,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":68721,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":68722,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":68723,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":68724,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":68725,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":68726,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":68727,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":68728,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":68729,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":68730,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":68731,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":68732,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":68733,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":68734,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":68735,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":68736,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":68737,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":68738,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":68739,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":68740,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":68740,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":68741,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":68742,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":68743,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":68744,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":68745,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":68746,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":68747,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":68748,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":68749,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":68750,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":68751,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":68752,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":68753,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":68754,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":68755,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":68756,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":68757,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":68758,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":68759,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":68760,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":68761,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":68762,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":68763,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":68763,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":68764,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":68766,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":71444,"type":"anyOf","anyOf":[{"_internalId":71442,"type":"object","description":"be an object","properties":{"eval":{"_internalId":71297,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":71298,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":71299,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":71300,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":71301,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":71302,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":71303,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":71304,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":71305,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":71306,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":71307,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":71308,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":71309,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":71310,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":71311,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":71312,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":71313,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":71314,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":71315,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":71316,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":71317,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":71318,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":71319,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":71320,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":71321,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":71322,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":71323,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":71324,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":71325,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":71326,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":71327,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":71328,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":71329,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":71330,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":71331,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":71332,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":71333,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":71334,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":71335,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":71336,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":71337,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":71338,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":71339,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":71340,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":71341,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":71342,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":71343,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":71344,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":71345,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":71346,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":71347,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":71348,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":71349,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":71350,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":71351,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":71352,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":71353,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":71354,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":71354,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":71355,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":71356,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":71357,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":71358,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":71359,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":71360,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":71361,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":71362,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":71363,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":71364,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":71365,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":71366,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":71367,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":71368,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":71369,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":71370,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":71371,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":71372,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":71373,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":71374,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":71375,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":71376,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":71377,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":71378,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":71379,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":71380,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":71381,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":71382,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":71383,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":71384,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":71385,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":71386,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":71387,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":71388,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":71389,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":71390,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":71391,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":71392,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":71393,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":71394,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":71395,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":71396,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":71397,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":71398,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":71399,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":71400,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":71401,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":71402,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":71403,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":71404,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":71405,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":71406,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":71407,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":71408,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":71409,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":71410,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":71411,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":71412,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":71413,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":71413,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":71414,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":71415,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":71416,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":71417,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":71418,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":71419,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":71420,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":71421,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":71422,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":71423,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":71424,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":71425,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":71426,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":71427,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":71428,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":71429,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":71430,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":71431,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":71432,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":71433,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":71434,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":71435,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":71436,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":71437,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":71438,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":71439,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":71439,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":71440,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":71441,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":71443,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":74111,"type":"anyOf","anyOf":[{"_internalId":74109,"type":"object","description":"be an object","properties":{"eval":{"_internalId":73974,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":73975,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":73976,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":73977,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":73978,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":73979,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":73980,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":73981,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":73982,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":73983,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":73984,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":73985,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":73986,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":73987,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":73988,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":73989,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":73990,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":73991,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":73992,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":73993,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":73994,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":73995,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":73996,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":73997,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":73998,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":73999,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":74000,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":74001,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":74002,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":74003,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":74004,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":74005,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":74006,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":74007,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":74008,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":74009,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":74010,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":74011,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":74012,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":74013,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":74014,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":74015,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":74016,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":74017,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":74018,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":74019,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":74020,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":74021,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":74022,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":74023,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":74024,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":74025,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":74026,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":74027,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":74028,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":74029,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":74030,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":74031,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":74032,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":74033,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":74034,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":74035,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":74036,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":74037,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":74038,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":74039,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":74040,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":74041,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":74042,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":74043,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":74043,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":74044,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":74045,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":74046,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":74047,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":74048,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":74049,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":74050,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":74051,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":74052,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":74053,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":74054,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":74055,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":74056,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":74057,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":74058,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":74059,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":74060,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":74061,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":74062,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":74063,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":74064,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":74065,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":74066,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":74067,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":74068,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":74069,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":74070,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":74071,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":74072,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":74073,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":74074,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":74075,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":74076,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":74077,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":74078,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":74079,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":74080,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":74081,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":74082,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":74083,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":74084,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":74085,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":74086,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":74086,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":74087,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":74088,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":74089,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":74090,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":74091,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":74092,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":74093,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":74094,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":74095,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":74096,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":74097,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":74098,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":74099,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":74100,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":74101,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":74102,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":74103,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":74104,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":74105,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":74106,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":74106,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":74107,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":74108,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":74110,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":76778,"type":"anyOf","anyOf":[{"_internalId":76776,"type":"object","description":"be an object","properties":{"eval":{"_internalId":76641,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":76642,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":76643,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":76644,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":76645,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":76646,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":76647,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":76648,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":76649,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":76650,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":76651,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":76652,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":76653,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":76654,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":76655,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":76656,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":76657,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":76658,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":76659,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":76660,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":76661,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":76662,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":76663,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":76664,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":76665,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":76666,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":76667,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":76668,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":76669,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":76670,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":76671,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":76672,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":76673,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":76674,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":76675,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":76676,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":76677,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":76678,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":76679,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":76680,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":76681,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":76682,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":76683,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":76684,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":76685,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":76686,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":76687,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":76688,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":76689,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":76690,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":76691,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":76692,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":76693,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":76694,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":76695,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":76696,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":76697,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":76698,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":76699,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":76700,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":76701,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":76702,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":76703,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":76704,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":76705,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":76706,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":76707,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":76708,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":76709,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":76710,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":76710,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":76711,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":76712,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":76713,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":76714,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":76715,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":76716,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":76717,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":76718,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":76719,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":76720,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":76721,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":76722,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":76723,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":76724,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":76725,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":76726,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":76727,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":76728,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":76729,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":76730,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":76731,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":76732,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":76733,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":76734,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":76735,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":76736,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":76737,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":76738,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":76739,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":76740,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":76741,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":76742,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":76743,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":76744,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":76745,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":76746,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":76747,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":76748,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":76749,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":76750,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":76751,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":76752,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":76753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":76753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":76754,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":76755,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":76756,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":76757,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":76758,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":76759,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":76760,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":76761,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":76762,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":76763,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":76764,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":76765,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":76766,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":76767,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":76768,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":76769,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":76770,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":76771,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":76772,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":76773,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":76773,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":76774,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":76775,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":76777,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":79445,"type":"anyOf","anyOf":[{"_internalId":79443,"type":"object","description":"be an object","properties":{"eval":{"_internalId":79308,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":79309,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":79310,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":79311,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":79312,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":79313,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":79314,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":79315,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":79316,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":79317,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":79318,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":79319,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":79320,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":79321,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":79322,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":79323,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":79324,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":79325,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":79326,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":79327,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":79328,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":79329,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":79330,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":79331,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":79332,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":79333,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":79334,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":79335,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":79336,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":79337,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":79338,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":79339,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":79340,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":79341,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":79342,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":79343,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":79344,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":79345,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":79346,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":79347,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":79348,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":79349,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":79350,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":79351,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":79352,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":79353,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":79354,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":79355,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":79356,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":79357,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":79358,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":79359,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":79360,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":79361,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":79362,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":79363,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":79364,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":79365,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":79366,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":79367,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":79368,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":79369,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":79370,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":79371,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":79372,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":79373,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":79374,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":79375,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":79376,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":79377,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":79377,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":79378,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":79379,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":79380,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":79381,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":79382,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":79383,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":79384,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":79385,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":79386,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":79387,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":79388,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":79389,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":79390,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":79391,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":79392,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":79393,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":79394,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":79395,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":79396,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":79397,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":79398,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":79399,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":79400,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":79401,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":79402,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":79403,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":79404,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":79405,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"date-meta":{"_internalId":79406,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":79407,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":79408,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":79409,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":79410,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":79411,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":79412,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":79413,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":79414,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":79415,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":79416,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":79417,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":79418,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":79419,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":79420,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":79420,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":79421,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":79422,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":79423,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":79424,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":79425,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":79426,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":79427,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":79428,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":79429,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":79430,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":79431,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":79432,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":79433,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":79434,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":79435,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":79436,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":79437,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":79438,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":79439,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":79440,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":79440,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":79441,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":79442,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,identifier,creator,contributor,subject,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":79444,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":82072,"type":"anyOf","anyOf":[{"_internalId":82070,"type":"object","description":"be an object","properties":{"eval":{"_internalId":81975,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":81976,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":81977,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":81978,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":81979,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":81980,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":81981,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":81982,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":81983,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":81984,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":81985,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":81986,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":81987,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":81988,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":81989,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":81990,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":81991,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":81992,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":81993,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":81994,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":81995,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":81996,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":81997,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":81998,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":81999,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":82000,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":82001,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":82002,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":82003,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":82004,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":82005,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":82006,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":82007,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":82008,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":82009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":82009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":82010,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":82011,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":82012,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":82013,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":82014,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":82015,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":82016,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":82017,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":82018,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":82019,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":82020,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":82021,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":82022,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":82023,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":82024,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":82025,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":82026,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":82027,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":82028,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":82029,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":82030,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":82031,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":82032,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":82033,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":82034,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":82035,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":82036,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":82037,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":82038,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":82039,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":82040,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":82041,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":82042,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":82043,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":82044,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":82045,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":82045,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":82046,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":82047,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":82048,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":82049,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":82050,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":82051,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":82052,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":82053,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":82054,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":82055,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":82056,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":82057,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":82058,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":82059,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":82060,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":82061,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":82062,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":82063,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":82064,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":82065,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":82066,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":82067,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":82068,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":82068,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":82069,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":82071,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":84708,"type":"anyOf","anyOf":[{"_internalId":84706,"type":"object","description":"be an object","properties":{"eval":{"_internalId":84602,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":84603,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":84604,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":84605,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":84606,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":84607,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":84608,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":84609,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":84610,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":84611,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":84612,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":84613,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":84614,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":84615,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":84616,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":84617,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":84618,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":84619,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":84620,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":84621,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":84622,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":84623,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":84624,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":84625,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":84626,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":84627,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":84628,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":84629,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":84630,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":84631,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":84632,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":84633,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":84634,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":84635,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":84636,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":84637,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":84637,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":84638,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":84639,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":84640,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":84641,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":84642,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":84643,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":84644,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":84645,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":84646,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":84647,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":84648,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":84649,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":84650,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":84651,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":84652,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":84653,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":84654,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":84655,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":84656,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":84657,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":84658,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":84659,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":84660,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":84661,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":84662,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":84663,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":84664,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":84665,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":84666,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":84667,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":84668,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":84669,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":84670,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":84671,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":84672,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":84673,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":84674,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":84675,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":84676,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":84677,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":84678,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":84679,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":84679,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":84680,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":84681,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":84682,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":84683,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":84684,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":84685,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":84686,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":84687,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":84688,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":84689,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":84690,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":84691,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":84692,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":84693,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":84694,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":84695,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":84696,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":84697,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":84698,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":84699,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":84700,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":84701,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":84702,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":84703,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":84704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":84704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":84705,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,html-math-method,identifier-prefix,variant,markdown-headings,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":84707,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":87336,"type":"anyOf","anyOf":[{"_internalId":87334,"type":"object","description":"be an object","properties":{"eval":{"_internalId":87238,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":87239,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":87240,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":87241,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":87242,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":87243,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":87244,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":87245,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":87246,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":87247,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":87248,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":87249,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":87250,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":87251,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":87252,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":87253,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":87254,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":87255,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":87256,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":87257,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":87258,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":87259,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":87260,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":87261,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":87262,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":87263,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":87264,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":87265,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":87266,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":87267,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":87268,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":87269,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":87270,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":87271,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":87272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":87272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":87273,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":87274,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":87275,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":87276,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":87277,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":87278,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":87279,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":87280,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":87281,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":87282,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":87283,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":87284,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":87285,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":87286,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":87287,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":87288,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":87289,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":87290,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":87291,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":87292,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":87293,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":87294,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":87295,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":87296,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":87297,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":87298,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":87299,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":87300,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":87301,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":87302,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":87303,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":87304,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":87305,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":87306,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":87307,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":87308,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":87309,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":87309,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":87310,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":87311,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":87312,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":87313,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":87314,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":87315,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":87316,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":87317,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":87318,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":87319,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":87320,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":87321,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":87322,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":87323,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":87324,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":87325,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":87326,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":87327,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":87328,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":87329,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":87330,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":87331,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":87332,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":87332,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":87333,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":87335,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":90071,"type":"anyOf","anyOf":[{"_internalId":90069,"type":"object","description":"be an object","properties":{"eval":{"_internalId":89866,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":89867,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":89868,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":89869,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":89870,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":89871,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":89872,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":89873,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":89874,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":89875,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":89876,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":89877,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":89878,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":89879,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":89880,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":89881,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":89882,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":89883,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":89884,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":89885,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":89886,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":89887,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":89888,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":89889,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":89890,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":89891,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":89892,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":89893,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":89894,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":89895,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":89896,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":89897,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":89898,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":89899,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":89900,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":89901,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":89902,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":89903,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":89904,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":89905,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":89906,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":89907,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":89908,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":89909,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":89910,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":89911,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":89912,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":89913,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":89914,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":89915,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":89916,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":89917,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":89918,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":89919,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":89920,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":89921,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":89922,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":89923,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":89924,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":89925,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":89926,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":89927,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":89928,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":89929,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":89930,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":89931,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":89932,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":89933,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":89934,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":89935,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":89936,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":89937,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":89937,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":89938,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":89939,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":89940,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":89941,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":89942,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":89943,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":89944,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":89945,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":89946,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":89947,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":89948,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":89949,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":89950,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":89951,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":89952,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":89953,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":89954,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":89955,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":89956,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":89957,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":89958,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":89959,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":89960,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":89961,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":89962,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":89963,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":89964,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":89965,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":89966,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":89967,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":89968,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":89969,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":89970,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":89971,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":89972,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":89973,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":89974,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":89975,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":89976,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":89977,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":89978,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":89979,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":89980,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":89981,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":89982,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":89983,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":89984,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":89985,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":89986,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":89987,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":89988,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":89989,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":89990,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":89991,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":89992,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":89993,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":89994,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":89995,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":89996,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":89997,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":89998,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":89999,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":90000,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":90001,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":90002,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":90003,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":90004,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":90005,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":90006,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":90007,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":90008,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":90009,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":90010,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":90011,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":90012,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":90013,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":90014,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":90015,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":90016,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":90017,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":90018,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":90019,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":90020,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":90021,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":90022,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":90023,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":90024,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":90025,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":90026,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":90027,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":90028,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":90029,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":90030,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":90031,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":90031,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":90032,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":90033,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":90034,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":90035,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":90036,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":90037,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":90038,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":90039,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":90040,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":90041,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":90042,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":90043,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":90044,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":90045,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":90046,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":90047,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":90048,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":90049,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":90050,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":90051,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":90052,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":90053,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":90054,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":90055,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":90055,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":90056,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":90057,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":90058,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":90059,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":90060,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":90061,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":90062,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":90063,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":90064,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":90065,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":90066,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":90067,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":90068,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":90070,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":92806,"type":"anyOf","anyOf":[{"_internalId":92804,"type":"object","description":"be an object","properties":{"eval":{"_internalId":92601,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":92602,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":92603,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":92604,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":92605,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":92606,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":92607,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":92608,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":92609,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":92610,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":92611,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":92612,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":92613,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":92614,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":92615,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":92616,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":92617,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":92618,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":92619,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":92620,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":92621,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":92622,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":92623,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":92624,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":92625,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":92626,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":92627,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":92628,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":92629,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":92630,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":92631,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":92632,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":92633,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":92634,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":92635,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":92636,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":92637,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":92638,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":92639,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":92640,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":92641,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":92642,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":92643,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":92644,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":92645,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":92646,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":92647,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":92648,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":92649,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":92650,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":92651,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":92652,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":92653,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":92654,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":92655,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":92656,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":92657,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":92658,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":92659,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":92660,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":92661,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":92662,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":92663,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":92664,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":92665,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":92666,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":92667,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":92668,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":92669,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":92670,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":92671,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":92672,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":92672,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":92673,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":92674,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":92675,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":92676,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":92677,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":92678,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":92679,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":92680,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":92681,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":92682,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":92683,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":92684,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":92685,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":92686,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":92687,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":92688,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":92689,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":92690,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":92691,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":92692,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":92693,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":92694,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":92695,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":92696,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":92697,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":92698,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":92699,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":92700,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":92701,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":92702,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":92703,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":92704,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":92705,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":92706,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":92707,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":92708,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":92709,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":92710,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":92711,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":92712,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":92713,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":92714,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":92715,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":92716,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":92717,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":92718,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":92719,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":92720,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":92721,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":92722,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":92723,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":92724,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":92725,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":92726,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":92727,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":92728,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":92729,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":92730,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":92731,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":92732,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":92733,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":92734,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":92735,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":92736,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":92737,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":92738,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":92739,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":92740,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":92741,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":92742,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":92743,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":92744,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":92745,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":92746,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":92747,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":92748,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":92749,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":92750,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":92751,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":92752,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":92753,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":92754,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":92755,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":92756,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":92757,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":92758,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":92759,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":92760,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":92761,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":92762,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":92763,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":92764,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":92765,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":92766,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":92766,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":92767,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":92768,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":92769,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":92770,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":92771,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":92772,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":92773,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":92774,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":92775,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":92776,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":92777,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":92778,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":92779,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":92780,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":92781,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":92782,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":92783,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":92784,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":92785,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":92786,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":92787,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":92788,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":92789,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":92790,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":92790,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":92791,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":92792,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":92793,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":92794,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":92795,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":92796,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":92797,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":92798,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":92799,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":92800,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":92801,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":92802,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":92803,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":92805,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":95541,"type":"anyOf","anyOf":[{"_internalId":95539,"type":"object","description":"be an object","properties":{"eval":{"_internalId":95336,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":95337,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":95338,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":95339,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":95340,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":95341,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":95342,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":95343,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":95344,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":95345,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":95346,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":95347,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":95348,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":95349,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":95350,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":95351,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":95352,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":95353,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":95354,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":95355,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":95356,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":95357,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":95358,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":95359,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":95360,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":95361,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":95362,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":95363,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":95364,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":95365,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":95366,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":95367,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":95368,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":95369,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":95370,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":95371,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":95372,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":95373,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":95374,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":95375,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":95376,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":95377,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":95378,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":95379,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":95380,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":95381,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":95382,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":95383,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":95384,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":95385,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":95386,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":95387,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":95388,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":95389,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":95390,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":95391,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":95392,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":95393,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":95394,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":95395,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":95396,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":95397,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":95398,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":95399,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":95400,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":95401,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":95402,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":95403,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":95404,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":95405,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":95406,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":95407,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":95407,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":95408,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":95409,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":95410,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":95411,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":95412,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":95413,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":95414,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":95415,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":95416,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":95417,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":95418,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":95419,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":95420,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":95421,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":95422,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":95423,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":95424,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":95425,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":95426,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":95427,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":95428,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":95429,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":95430,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":95431,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":95432,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":95433,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":95434,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":95435,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":95436,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":95437,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":95438,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":95439,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":95440,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":95441,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":95442,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":95443,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":95444,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":95445,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":95446,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":95447,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":95448,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":95449,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":95450,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":95451,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":95452,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":95453,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":95454,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":95455,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":95456,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":95457,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":95458,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":95459,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":95460,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":95461,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":95462,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":95463,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":95464,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":95465,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":95466,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":95467,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":95468,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":95469,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":95470,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":95471,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":95472,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":95473,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":95474,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":95475,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":95476,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":95477,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":95478,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":95479,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":95480,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":95481,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":95482,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":95483,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":95484,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":95485,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":95486,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":95487,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":95488,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":95489,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":95490,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":95491,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":95492,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":95493,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":95494,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":95495,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":95496,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":95497,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":95498,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":95499,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":95500,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":95501,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":95501,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":95502,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":95503,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":95504,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":95505,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":95506,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":95507,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":95508,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":95509,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":95510,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":95511,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":95512,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":95513,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":95514,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":95515,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":95516,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":95517,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":95518,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":95519,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":95520,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":95521,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":95522,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":95523,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":95524,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":95525,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":95525,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":95526,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":95527,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":95528,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":95529,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":95530,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":95531,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":95532,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":95533,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":95534,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":95535,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":95536,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":95537,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":95538,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":95540,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":98168,"type":"anyOf","anyOf":[{"_internalId":98166,"type":"object","description":"be an object","properties":{"eval":{"_internalId":98071,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":98072,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":98073,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":98074,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":98075,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":98076,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":98077,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":98078,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":98079,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":98080,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":98081,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":98082,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":98083,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":98084,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":98085,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":98086,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":98087,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":98088,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":98089,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":98090,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":98091,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":98092,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":98093,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":98094,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":98095,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":98096,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":98097,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":98098,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":98099,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":98100,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":98101,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":98102,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":98103,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":98104,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":98105,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":98105,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":98106,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":98107,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":98108,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":98109,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":98110,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":98111,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":98112,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":98113,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":98114,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":98115,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":98116,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":98117,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":98118,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":98119,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":98120,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":98121,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":98122,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":98123,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":98124,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":98125,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":98126,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":98127,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":98128,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":98129,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":98130,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":98131,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":98132,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":98133,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":98134,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":98135,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":98136,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":98137,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":98138,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":98139,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":98140,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":98141,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":98141,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":98142,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":98143,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":98144,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":98145,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":98146,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":98147,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":98148,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":98149,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":98150,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":98151,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":98152,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":98153,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":98154,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":98155,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":98156,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":98157,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":98158,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":98159,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":98160,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":98161,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":98162,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":98163,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":98164,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":98164,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":98165,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":98167,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":100789,"type":"anyOf","anyOf":[{"_internalId":100787,"type":"object","description":"be an object","properties":{"eval":{"_internalId":100698,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":100699,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":100700,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":100701,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":100702,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":100703,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":100704,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":100705,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":100706,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":100707,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":100708,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":100709,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":100710,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":100711,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":100712,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":100713,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":100714,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":100715,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":100716,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":100717,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":100718,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":100719,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":100720,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":100721,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":100722,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":100723,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":100724,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":100725,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":100726,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":100727,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":100728,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":100729,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":100730,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":100731,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":100732,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":100732,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":100733,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":100734,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":100735,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":100736,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":100737,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":100738,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":100739,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":100740,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":100741,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":100742,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":100743,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":100744,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":100745,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":100746,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":100747,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":100748,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":100749,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":100750,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":100751,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":100752,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":100753,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":100754,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":100755,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":100756,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":100757,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":100758,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":100759,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":100760,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":100761,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":100762,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":100763,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":100764,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":100764,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":100765,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":100766,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":100767,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":100768,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":100769,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":100770,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":100771,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":100772,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":100773,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":100774,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":100775,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":100776,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":100777,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":100778,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":100779,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":100780,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":100781,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":100782,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":100783,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":100784,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":100785,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":100785,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":100786,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,markdown-headings,ipynb-output,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":100788,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":103419,"type":"anyOf","anyOf":[{"_internalId":103417,"type":"object","description":"be an object","properties":{"eval":{"_internalId":103319,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":103320,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":103321,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":103322,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":103323,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":103324,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":103325,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":103326,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":103327,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":103328,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":103329,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":103383,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":103331,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":103332,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":103333,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":103334,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":103335,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":103336,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":103337,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":103338,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":103339,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":103340,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":103341,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":103342,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":103343,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":103344,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":103345,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":103346,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":103347,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":103348,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":103349,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":103350,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":103351,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":103352,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":103353,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":103354,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":103355,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":103356,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":103357,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":103358,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":103359,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":103360,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":103360,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":103361,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":103362,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":103363,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":103364,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":103365,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":103366,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":103367,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":103368,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":103369,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":103370,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":103371,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":103372,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":103373,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":103374,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":103375,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":103376,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":103377,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":103378,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":103379,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":103380,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":103381,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":103382,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":103384,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":103385,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":103386,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":103387,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":103388,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":103389,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":103390,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":103391,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":103392,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":103393,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":103394,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":103394,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":103395,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":103396,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":103397,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":103398,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":103399,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":103400,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":103401,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":103402,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":103403,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":103404,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":103405,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":103406,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":103407,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":103408,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":103409,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":103410,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":103411,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":103412,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":103413,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":103414,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":103415,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":103416,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":103418,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":106049,"type":"anyOf","anyOf":[{"_internalId":106047,"type":"object","description":"be an object","properties":{"eval":{"_internalId":105949,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":105950,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":105951,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":105952,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":105953,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":105954,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":105955,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":105956,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":105957,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":105958,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":105959,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":106013,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":105961,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":105962,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":105963,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":105964,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":105965,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":105966,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":105967,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":105968,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":105969,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":105970,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":105971,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":105972,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":105973,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":105974,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":105975,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":105976,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":105977,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":105978,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":105979,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":105980,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":105981,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":105982,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":105983,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":105984,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":105985,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":105986,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":105987,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":105988,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":105989,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":105990,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":105990,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":105991,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":105992,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":105993,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":105994,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":105995,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":105996,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":105997,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":105998,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":105999,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":106000,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":106001,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":106002,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":106003,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":106004,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":106005,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":106006,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":106007,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":106008,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":106009,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":106010,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":106011,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":106012,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":106014,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":106015,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":106016,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":106017,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":106018,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":106019,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":106020,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":106021,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":106022,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":106023,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":106024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":106024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":106025,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":106026,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":106027,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":106028,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":106029,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":106030,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":106031,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":106032,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":106033,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":106034,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":106035,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":106036,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":106037,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":106038,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":106039,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":106040,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":106041,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":106042,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":106043,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":106044,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":106045,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":106046,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":106048,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":108679,"type":"anyOf","anyOf":[{"_internalId":108677,"type":"object","description":"be an object","properties":{"eval":{"_internalId":108579,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":108580,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":108581,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":108582,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":108583,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":108584,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":108585,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":108586,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":108587,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":108588,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":108589,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":108643,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":108591,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":108592,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":108593,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":108594,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":108595,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":108596,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":108597,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":108598,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":108599,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":108600,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":108601,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":108602,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":108603,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":108604,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":108605,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":108606,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":108607,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":108608,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":108609,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":108610,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":108611,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":108612,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":108613,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":108614,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":108615,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":108616,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":108617,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":108618,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":108619,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":108620,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":108620,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":108621,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":108622,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":108623,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":108624,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":108625,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":108626,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":108627,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":108628,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":108629,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":108630,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":108631,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":108632,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":108633,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":108634,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":108635,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":108636,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":108637,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":108638,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":108639,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":108640,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":108641,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":108642,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":108644,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":108645,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":108646,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":108647,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":108648,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":108649,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":108650,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":108651,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":108652,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":108653,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":108654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":108654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":108655,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":108656,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":108657,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":108658,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":108659,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":108660,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":108661,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":108662,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":108663,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":108664,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":108665,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":108666,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":108667,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":108668,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":108669,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":108670,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":108671,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":108672,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":108673,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":108674,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":108675,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":108676,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":108678,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":111309,"type":"anyOf","anyOf":[{"_internalId":111307,"type":"object","description":"be an object","properties":{"eval":{"_internalId":111209,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":111210,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":111211,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":111212,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":111213,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":111214,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":111215,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":111216,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":111217,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":111218,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":111219,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":111273,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":111221,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":111222,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":111223,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":111224,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":111225,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":111226,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":111227,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":111228,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":111229,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":111230,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":111231,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":111232,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":111233,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":111234,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":111235,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":111236,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":111237,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":111238,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":111239,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":111240,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":111241,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":111242,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":111243,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":111244,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":111245,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":111246,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":111247,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":111248,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":111249,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":111250,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":111250,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":111251,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":111252,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":111253,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":111254,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":111255,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":111256,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":111257,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":111258,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":111259,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":111260,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":111261,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":111262,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":111263,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":111264,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":111265,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":111266,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":111267,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":111268,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":111269,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":111270,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":111271,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":111272,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":111274,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":111275,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":111276,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":111277,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":111278,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":111279,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":111280,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":111281,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":111282,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":111283,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":111284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":111284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":111285,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":111286,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":111287,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":111288,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":111289,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":111290,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":111291,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":111292,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":111293,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":111294,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":111295,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":111296,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":111297,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":111298,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":111299,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":111300,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":111301,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":111302,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":111303,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":111304,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":111305,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":111306,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":111308,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":113936,"type":"anyOf","anyOf":[{"_internalId":113934,"type":"object","description":"be an object","properties":{"eval":{"_internalId":113839,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":113840,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":113841,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":113842,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":113843,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":113844,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":113845,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":113846,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":113847,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":113848,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":113849,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":113850,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":113851,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":113852,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":113853,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":113854,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":113855,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":113856,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":113857,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":113858,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":113859,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":113860,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":113861,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":113862,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":113863,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":113864,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":113865,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":113866,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":113867,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":113868,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":113869,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":113870,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":113871,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":113872,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":113873,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":113873,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":113874,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":113875,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":113876,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":113877,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":113878,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":113879,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":113880,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":113881,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":113882,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":113883,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":113884,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":113885,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":113886,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":113887,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":113888,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":113889,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":113890,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":113891,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":113892,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":113893,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":113894,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":113895,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":113896,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":113897,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":113898,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":113899,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":113900,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":113901,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":113902,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":113903,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":113904,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":113905,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":113906,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":113907,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":113908,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":113909,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":113909,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":113910,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":113911,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":113912,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":113913,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":113914,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":113915,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":113916,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":113917,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":113918,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":113919,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":113920,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":113921,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":113922,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":113923,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":113924,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":113925,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":113926,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":113927,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":113928,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":113929,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":113930,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":113931,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":113932,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":113932,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":113933,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":113935,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":116563,"type":"anyOf","anyOf":[{"_internalId":116561,"type":"object","description":"be an object","properties":{"eval":{"_internalId":116466,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":116467,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":116468,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":116469,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":116470,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":116471,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":116472,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":116473,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":116474,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":116475,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":116476,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":116477,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":116478,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":116479,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":116480,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":116481,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":116482,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":116483,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":116484,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":116485,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":116486,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":116487,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":116488,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":116489,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":116490,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":116491,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":116492,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":116493,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":116494,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":116495,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":116496,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":116497,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":116498,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":116499,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":116500,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":116500,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":116501,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":116502,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":116503,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":116504,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":116505,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":116506,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":116507,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":116508,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":116509,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":116510,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":116511,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":116512,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":116513,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":116514,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":116515,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":116516,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":116517,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":116518,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":116519,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":116520,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":116521,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":116522,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":116523,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":116524,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":116525,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":116526,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":116527,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":116528,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":116529,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":116530,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":116531,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":116532,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":116533,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":116534,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":116535,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":116536,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":116536,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":116537,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":116538,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":116539,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":116540,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":116541,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":116542,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":116543,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":116544,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":116545,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":116546,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":116547,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":116548,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":116549,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":116550,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":116551,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":116552,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":116553,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":116554,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":116555,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":116556,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":116557,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":116558,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":116559,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":116559,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":116560,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":116562,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":119265,"type":"anyOf","anyOf":[{"_internalId":119263,"type":"object","description":"be an object","properties":{"eval":{"_internalId":119093,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":119094,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":119095,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":119096,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":119097,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":119098,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":119099,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":119100,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":119101,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":119102,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":119103,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":119104,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":119105,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":119106,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":119107,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":119108,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":119109,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":119110,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":119111,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":119112,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":119113,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":119114,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":119115,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":119116,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":119117,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":119118,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":119119,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":119120,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":119121,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":119122,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":119123,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":119124,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":119125,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":119126,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":119127,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":119128,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":119129,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":119130,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":119131,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":119132,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":119133,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":119134,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":119135,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":119136,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":119137,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":119138,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":119139,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":119140,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":119141,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":119142,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":119143,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":119144,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":119145,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":119146,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":119147,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":119148,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":119149,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":119150,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":119151,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":119152,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":119153,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":119154,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":119155,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":119156,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":119157,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":119158,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":119159,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":119160,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":119161,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":119162,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":119163,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":119164,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":119165,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":119166,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":119167,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":119168,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":119168,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":119169,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":119170,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":119171,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":119172,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":119173,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":119174,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":119175,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":119176,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":119177,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":119178,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":119179,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":119180,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":119181,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":119182,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":119183,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":119184,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":119185,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":119186,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":119187,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":119188,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":119189,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":119190,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":119191,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":119192,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":119193,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":119194,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":119195,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":119196,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":119197,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":119198,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":119199,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":119200,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":119201,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":119202,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":119203,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":119204,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":119205,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":119206,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":119207,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":119208,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":119209,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":119210,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":119211,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":119212,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":119213,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":119214,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":119215,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":119216,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":119217,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":119218,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":119219,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":119220,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":119221,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":119222,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":119223,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":119224,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":119225,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":119226,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":119227,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":119228,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":119229,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":119230,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":119231,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":119232,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":119233,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":119234,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":119235,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":119236,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":119237,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":119237,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":119238,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":119239,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":119240,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":119241,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":119242,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":119243,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":119244,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":119245,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":119246,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":119247,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":119248,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":119249,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":119250,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":119251,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":119252,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":119253,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":119254,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":119255,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":119256,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":119257,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":119258,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":119258,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":119259,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":119260,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":119261,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":119262,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":119264,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":121895,"type":"anyOf","anyOf":[{"_internalId":121893,"type":"object","description":"be an object","properties":{"eval":{"_internalId":121795,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":121796,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":121797,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":121798,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":121799,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":121800,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":121801,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":121802,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":121803,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":121804,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":121805,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":121806,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":121807,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":121808,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":121809,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":121810,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":121811,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":121812,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":121813,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":121814,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":121815,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":121816,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":121817,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":121818,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":121819,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":121820,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":121821,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":121822,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":121823,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":121824,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":121825,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":121826,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":121827,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":121828,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":121829,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":121830,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":121831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":121831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":121832,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":121833,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":121834,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":121835,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":121836,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":121837,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":121838,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":121839,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":121840,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":121841,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":121842,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":121843,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":121844,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":121845,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":121846,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":121847,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":121848,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":121849,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":121850,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":121851,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":121852,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":121853,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":121854,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":121855,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":121856,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":121857,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":121858,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":121859,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":121860,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":121861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":121862,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":121863,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":121864,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":121865,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":121866,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":121867,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":121868,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":121869,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":121870,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":121870,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":121871,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":121872,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":121873,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":121874,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":121875,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":121876,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":121877,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":121878,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":121879,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":121880,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":121881,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":121882,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":121883,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":121884,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":121885,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":121886,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":121887,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":121888,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":121889,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":121890,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":121891,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":121892,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,adjusting,hyphenate,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,footer,header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,section,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":121894,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":124529,"type":"anyOf","anyOf":[{"_internalId":124527,"type":"object","description":"be an object","properties":{"eval":{"_internalId":124425,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":124426,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":124427,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":124428,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":124429,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":124430,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":124431,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":124432,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":124433,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":124434,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":124435,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":124436,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":124437,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":124438,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":124439,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":124440,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":124441,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":124442,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":124443,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":124444,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":124445,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":124446,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":124447,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":124448,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":124449,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":124450,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":124451,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":124452,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":124453,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":124454,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":124455,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":124456,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":124457,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":124458,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":124459,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":124460,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":124460,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":124461,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":124462,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":124463,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":124464,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":124465,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":124466,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":124467,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":124468,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":124469,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":124470,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":124471,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":124472,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":124473,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":124474,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":124475,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":124476,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":124477,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":124478,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":124479,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":124480,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":124481,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":124482,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":124483,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":124484,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":124485,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":124486,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":124487,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":124488,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":124489,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":124490,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":124491,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":124492,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":124493,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":124494,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":124495,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":124496,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":124497,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":124498,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":124499,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":124500,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":124500,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":124501,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":124502,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":124503,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":124504,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":124505,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":124506,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":124507,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":124508,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":124509,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":124510,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":124511,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":124512,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":124513,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":124514,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":124515,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":124516,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":124517,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":124518,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":124519,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":124520,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":124521,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":124522,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":124523,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":124524,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":124525,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":124525,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":124526,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":124528,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":127156,"type":"anyOf","anyOf":[{"_internalId":127154,"type":"object","description":"be an object","properties":{"eval":{"_internalId":127059,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":127060,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":127061,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":127062,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":127063,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":127064,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":127065,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":127066,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":127067,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":127068,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":127069,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":127070,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":127071,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":127072,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":127073,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":127074,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":127075,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":127076,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":127077,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":127078,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":127079,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":127080,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":127081,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":127082,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":127083,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":127084,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":127085,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":127086,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":127087,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":127088,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":127089,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":127090,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":127091,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":127092,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":127093,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":127093,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":127094,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":127095,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":127096,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":127097,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":127098,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":127099,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":127100,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":127101,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":127102,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":127103,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":127104,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":127105,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":127106,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":127107,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":127108,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":127109,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":127110,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":127111,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":127112,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":127113,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":127114,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":127115,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":127116,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":127117,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":127118,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":127119,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":127120,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":127121,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":127122,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":127123,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":127124,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":127125,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":127126,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":127127,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":127128,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":127129,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":127129,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":127130,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":127131,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":127132,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":127133,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":127134,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":127135,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":127136,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":127137,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":127138,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":127139,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":127140,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":127141,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":127142,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":127143,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":127144,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":127145,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":127146,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":127147,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":127148,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":127149,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":127150,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":127151,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":127152,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":127152,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":127153,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":127155,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":129783,"type":"anyOf","anyOf":[{"_internalId":129781,"type":"object","description":"be an object","properties":{"eval":{"_internalId":129686,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":129687,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":129688,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":129689,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":129690,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":129691,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":129692,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":129693,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":129694,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":129695,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":129696,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":129697,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":129698,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":129699,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":129700,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":129701,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":129702,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":129703,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":129704,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":129705,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":129706,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":129707,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":129708,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":129709,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":129710,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":129711,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":129712,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":129713,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":129714,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":129715,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":129716,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":129717,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":129718,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":129719,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":129720,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":129720,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":129721,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":129722,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":129723,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":129724,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":129725,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":129726,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":129727,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":129728,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":129729,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":129730,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":129731,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":129732,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":129733,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":129734,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":129735,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":129736,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":129737,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":129738,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":129739,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":129740,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":129741,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":129742,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":129743,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":129744,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":129745,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":129746,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":129747,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":129748,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":129749,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":129750,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":129751,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":129752,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":129753,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":129754,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":129755,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":129756,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":129756,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":129757,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":129758,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":129759,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":129760,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":129761,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":129762,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":129763,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":129764,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":129765,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":129766,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":129767,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":129768,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":129769,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":129770,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":129771,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":129772,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":129773,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":129774,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":129775,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":129776,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":129777,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":129778,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":129779,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":129779,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":129780,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":129782,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":132410,"type":"anyOf","anyOf":[{"_internalId":132408,"type":"object","description":"be an object","properties":{"eval":{"_internalId":132313,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":132314,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":132315,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":132316,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":132317,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":132318,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":132319,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":132320,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":132321,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":132322,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":132323,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":132324,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":132325,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":132326,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":132327,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":132328,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":132329,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":132330,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":132331,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":132332,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":132333,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":132334,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":132335,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":132336,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":132337,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":132338,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":132339,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":132340,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":132341,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":132342,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":132343,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":132344,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":132345,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":132346,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":132347,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":132347,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":132348,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":132349,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":132350,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":132351,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":132352,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":132353,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":132354,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":132355,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":132356,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":132357,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":132358,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":132359,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":132360,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":132361,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":132362,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":132363,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":132364,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":132365,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":132366,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":132367,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":132368,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":132369,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":132370,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":132371,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":132372,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":132373,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":132374,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":132375,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":132376,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":132377,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":132378,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":132379,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":132380,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":132381,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":132382,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":132383,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":132383,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":132384,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":132385,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":132386,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":132387,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":132388,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":132389,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":132390,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":132391,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":132392,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":132393,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":132394,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":132395,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":132396,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":132397,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":132398,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":132399,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":132400,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":132401,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":132402,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":132403,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":132404,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":132405,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":132406,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":132406,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":132407,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":132409,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":135037,"type":"anyOf","anyOf":[{"_internalId":135035,"type":"object","description":"be an object","properties":{"eval":{"_internalId":134940,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":134941,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":134942,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":134943,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":134944,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":134945,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":134946,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":134947,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":134948,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":134949,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":134950,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":134951,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":134952,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":134953,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":134954,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":134955,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":134956,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":134957,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":134958,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":134959,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":134960,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":134961,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":134962,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":134963,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":134964,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":134965,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":134966,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":134967,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":134968,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":134969,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":134970,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":134971,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":134972,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":134973,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":134974,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":134974,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":134975,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":134976,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":134977,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":134978,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":134979,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":134980,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":134981,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":134982,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":134983,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":134984,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":134985,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":134986,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":134987,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":134988,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":134989,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":134990,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":134991,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":134992,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":134993,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":134994,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":134995,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":134996,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":134997,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":134998,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":134999,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":135000,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":135001,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":135002,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":135003,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":135004,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":135005,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":135006,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":135007,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":135008,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":135009,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":135010,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":135010,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":135011,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":135012,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":135013,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":135014,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":135015,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":135016,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":135017,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":135018,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":135019,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":135020,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":135021,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":135022,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":135023,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":135024,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":135025,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":135026,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":135027,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":135028,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":135029,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":135030,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":135031,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":135032,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":135033,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":135033,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":135034,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":135036,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":137671,"type":"anyOf","anyOf":[{"_internalId":137669,"type":"object","description":"be an object","properties":{"eval":{"_internalId":137567,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":137568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":137569,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":137570,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":137571,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":137572,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":137573,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":137574,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":137575,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":137576,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":137577,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":137578,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":137579,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":137580,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":137581,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":137582,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":137583,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":137584,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":137585,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":137586,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":137587,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":137588,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":137589,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":137590,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":137591,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":137592,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":137593,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":137594,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":137595,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":137596,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":137597,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":137598,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":137599,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":137600,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":137601,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":137602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":137602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":137603,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":137604,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":137605,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":137606,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":137607,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":137608,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":137609,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":137610,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":137611,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":137612,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":137613,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":137614,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":137615,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":137616,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":137617,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":137618,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":137619,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":137620,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":137621,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":137622,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":137623,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":137624,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":137625,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":137626,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":137627,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":137628,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":137629,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":137630,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":137631,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":137632,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":137633,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":137634,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":137635,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":137636,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":137637,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":137638,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":137639,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":137640,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":137641,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":137642,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":137642,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":137643,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":137644,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":137645,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":137646,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":137647,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":137648,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":137649,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":137650,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":137651,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":137652,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":137653,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":137654,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":137655,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":137656,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":137657,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":137658,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":137659,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":137660,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":137661,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":137662,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":137663,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":137664,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":137665,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":137666,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":137667,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":137667,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":137668,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":137670,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":140298,"type":"anyOf","anyOf":[{"_internalId":140296,"type":"object","description":"be an object","properties":{"eval":{"_internalId":140201,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":140202,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":140203,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":140204,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":140205,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":140206,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":140207,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":140208,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":140209,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":140210,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":140211,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":140212,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":140213,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":140214,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":140215,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":140216,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":140217,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":140218,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":140219,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":140220,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":140221,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":140222,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":140223,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":140224,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":140225,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":140226,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":140227,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":140228,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":140229,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":140230,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":140231,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":140232,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":140233,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":140234,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":140235,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":140235,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":140236,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":140237,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":140238,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":140239,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":140240,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":140241,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":140242,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":140243,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":140244,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":140245,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":140246,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":140247,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":140248,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":140249,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":140250,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":140251,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":140252,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":140253,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":140254,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":140255,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":140256,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":140257,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":140258,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":140259,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":140260,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":140261,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":140262,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":140263,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":140264,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":140265,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":140266,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":140267,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":140268,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":140269,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":140270,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":140271,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":140271,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":140272,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":140273,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":140274,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":140275,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":140276,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":140277,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":140278,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":140279,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":140280,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":140281,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":140282,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":140283,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":140284,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":140285,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":140286,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":140287,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":140288,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":140289,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":140290,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":140291,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":140292,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":140293,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":140294,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":140294,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":140295,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":140297,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":142939,"type":"anyOf","anyOf":[{"_internalId":142937,"type":"object","description":"be an object","properties":{"eval":{"_internalId":142828,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":142829,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":142830,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":142831,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":142832,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":142833,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":142834,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":142835,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":142836,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":142837,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":142838,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":142839,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":142840,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":142841,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":142842,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":142843,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":142844,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":142845,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":142846,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":142847,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":142848,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":142849,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":142850,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":142851,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":142852,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":142853,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":142854,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":142855,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":142856,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":142857,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":142858,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":142859,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":142860,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":142861,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":142862,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":142863,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":142864,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":142865,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":142866,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":142867,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":142868,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":142869,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":142870,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":142871,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":142871,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":142872,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":142873,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":142874,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":142875,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":142876,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":142877,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":142878,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":142879,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":142880,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":142881,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":142882,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":142883,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":142884,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":142885,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":142886,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":142887,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":142888,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":142889,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":142890,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":142891,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":142892,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":142893,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":142894,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":142895,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":142896,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":142897,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":142898,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"indent":{"_internalId":142899,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":142900,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":142901,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":142902,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":142903,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":142904,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":142905,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":142906,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":142907,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":142908,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":142909,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":142910,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":142911,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":142911,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":142912,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":142913,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":142914,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":142915,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":142916,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":142917,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":142918,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":142919,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":142920,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":142921,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":142922,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":142923,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":142924,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":142925,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":142926,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":142927,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":142928,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":142929,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":142930,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":142931,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":142932,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":142933,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":142934,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":142935,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":142935,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":142936,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fontfamily,pointsize,lineheight,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,indent,number-sections,shift-heading-level-by,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":142938,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":145568,"type":"anyOf","anyOf":[{"_internalId":145566,"type":"object","description":"be an object","properties":{"eval":{"_internalId":145469,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":145470,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":145471,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":145472,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":145473,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":145474,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":145475,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":145476,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":145477,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":145478,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":145479,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":145480,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":145481,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":145482,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":145483,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":145484,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":145485,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":145486,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":145487,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":145488,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":145489,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":145490,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":145491,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":145492,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":145493,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":145494,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":145495,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":145496,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":145497,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":145498,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":145499,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":145500,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":145501,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":145502,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":145503,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":145504,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":145505,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":145505,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":145506,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":145507,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":145508,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":145509,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":145510,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":145511,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":145512,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":145513,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":145514,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":145515,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":145516,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":145517,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":145518,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":145519,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":145520,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":145521,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":145522,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":145523,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":145524,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":145525,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":145526,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":145527,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":145528,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":145529,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":145530,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":145531,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":145532,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":145533,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":145534,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":145535,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":145536,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":145537,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":145538,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":145539,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":145540,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":145541,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":145541,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":145542,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":145543,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":145544,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":145545,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":145546,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":145547,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":145548,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":145549,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":145550,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":145551,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":145552,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":145553,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":145554,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":145555,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":145556,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":145557,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":145558,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":145559,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":145560,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":145561,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":145562,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":145563,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":145564,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":145564,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":145565,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":145567,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":148195,"type":"anyOf","anyOf":[{"_internalId":148193,"type":"object","description":"be an object","properties":{"eval":{"_internalId":148098,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":148099,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":148100,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":148101,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":148102,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":148103,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":148104,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":148105,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":148106,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":148107,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":148108,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":148109,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":148110,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":148111,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":148112,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":148113,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":148114,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":148115,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":148116,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":148117,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":148118,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":148119,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":148120,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":148121,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":148122,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":148123,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":148124,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":148125,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":148126,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":148127,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":148128,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":148129,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":148130,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":148131,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":148132,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":148132,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":148133,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":148134,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":148135,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":148136,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":148137,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":148138,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":148139,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":148140,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":148141,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":148142,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":148143,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":148144,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":148145,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":148146,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":148147,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":148148,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":148149,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":148150,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":148151,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":148152,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":148153,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":148154,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":148155,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":148156,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":148157,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":148158,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":148159,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":148160,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":148161,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":148162,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":148163,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":148164,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":148165,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":148166,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":148167,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":148168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":148168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":148169,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":148170,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":148171,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":148172,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":148173,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":148174,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":148175,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":148176,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":148177,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":148178,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":148179,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":148180,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":148181,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":148182,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":148183,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":148184,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":148185,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":148186,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":148187,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":148188,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":148189,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":148190,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":148191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":148191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":148192,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":148194,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":150827,"type":"anyOf","anyOf":[{"_internalId":150825,"type":"object","description":"be an object","properties":{"eval":{"_internalId":150725,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":150726,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":150727,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":150728,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":150729,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":150730,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":150731,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":150732,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":150733,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":150734,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":150735,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":150736,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":150737,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":150738,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":150739,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":150740,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":150741,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":150742,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":150743,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":150744,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":150745,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":150746,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":150747,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":150748,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":150749,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":150750,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":150751,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":150752,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":150753,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":150754,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":150755,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":150756,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":150757,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":150758,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":150759,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":150760,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":150761,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":150762,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":150762,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":150763,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":150764,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":150765,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":150766,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":150767,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":150768,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":150769,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":150770,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":150771,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":150772,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":150773,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":150774,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":150775,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":150776,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":150777,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":150778,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":150779,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":150780,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":150781,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":150782,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":150783,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":150784,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":150785,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":150786,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":150787,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":150788,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":150789,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":150790,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":150791,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":150792,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":150793,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":150794,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":150795,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":150796,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":150797,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":150798,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":150799,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":150800,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":150801,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":150802,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":150803,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":150803,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":150804,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":150805,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":150806,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":150807,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":150808,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":150809,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":150810,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":150811,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":150812,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":150813,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":150814,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":150815,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":150816,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":150817,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":150818,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":150819,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":150820,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":150821,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":150822,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":150822,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":150823,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":150824,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":150826,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":153453,"type":"anyOf","anyOf":[{"_internalId":153451,"type":"object","description":"be an object","properties":{"eval":{"_internalId":153357,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":153358,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":153359,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":153360,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":153361,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":153362,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":153363,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":153364,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":153365,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":153366,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":153367,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":153368,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":153369,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":153370,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":153371,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":153372,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":153373,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":153374,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":153375,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":153376,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":153377,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":153378,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":153379,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":153380,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":153381,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":153382,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":153383,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":153384,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":153385,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":153386,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":153387,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":153388,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":153389,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":153390,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":153391,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":153392,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":153392,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":153393,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":153394,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":153395,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":153396,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":153397,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":153398,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":153399,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":153400,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":153401,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":153402,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":153403,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":153404,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":153405,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":153406,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":153407,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":153408,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":153409,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":153410,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":153411,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":153412,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":153413,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":153414,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":153415,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":153416,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":153417,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":153418,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":153419,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":153420,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"number-sections":{"_internalId":153421,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":153422,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":153423,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":153424,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":153425,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":153426,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":153427,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":153428,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":153429,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":153429,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":153430,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":153431,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":153432,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":153433,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":153434,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":153435,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":153436,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":153437,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":153438,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":153439,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":153440,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":153441,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":153442,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":153443,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":153444,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":153445,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":153446,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":153447,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":153448,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":153448,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":153449,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":153450,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":153452,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":156080,"type":"anyOf","anyOf":[{"_internalId":156078,"type":"object","description":"be an object","properties":{"eval":{"_internalId":155983,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":155984,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":155985,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":155986,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":155987,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":155988,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":155989,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":155990,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":155991,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":155992,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":155993,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":155994,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":155995,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":155996,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":155997,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":155998,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":155999,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":156000,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":156001,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":156002,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":156003,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":156004,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":156005,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":156006,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":156007,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":156008,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":156009,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":156010,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":156011,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":156012,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":156013,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":156014,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":156015,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":156016,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":156017,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":156017,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":156018,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":156019,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":156020,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":156021,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":156022,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":156023,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":156024,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":156025,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":156026,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":156027,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":156028,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":156029,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":156030,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":156031,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":156032,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":156033,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":156034,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":156035,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":156036,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":156037,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":156038,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":156039,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":156040,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":156041,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":156042,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":156043,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":156044,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":156045,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":156046,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":156047,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":156048,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":156049,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":156050,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":156051,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":156052,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":156053,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":156053,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":156054,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":156055,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":156056,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":156057,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":156058,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":156059,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":156060,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":156061,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":156062,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":156063,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":156064,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":156065,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":156066,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":156067,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":156068,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":156069,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":156070,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":156071,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":156072,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":156073,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":156074,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":156075,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":156076,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":156076,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":156077,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":156079,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":158707,"type":"anyOf","anyOf":[{"_internalId":158705,"type":"object","description":"be an object","properties":{"eval":{"_internalId":158610,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":158611,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":158612,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":158613,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":158614,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":158615,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":158616,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":158617,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":158618,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":158619,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":158620,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":158621,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":158622,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":158623,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":158624,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":158625,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":158626,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":158627,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":158628,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":158629,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":158630,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":158631,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":158632,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":158633,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":158634,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":158635,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":158636,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":158637,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":158638,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":158639,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":158640,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":158641,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":158642,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":158643,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":158644,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":158644,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":158645,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":158646,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":158647,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":158648,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":158649,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":158650,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":158651,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":158652,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":158653,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":158654,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":158655,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":158656,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":158657,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":158658,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":158659,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":158660,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":158661,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":158662,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":158663,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":158664,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":158665,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":158666,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":158667,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":158668,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":158669,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":158670,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":158671,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":158672,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":158673,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":158674,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":158675,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":158676,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":158677,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":158678,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":158679,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":158680,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":158680,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":158681,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":158682,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":158683,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":158684,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":158685,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":158686,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":158687,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":158688,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":158689,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":158690,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":158691,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":158692,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":158693,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":158694,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":158695,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":158696,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":158697,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":158698,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":158699,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":158700,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":158701,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":158702,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":158703,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":158703,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":158704,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":158706,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":161424,"type":"anyOf","anyOf":[{"_internalId":161422,"type":"object","description":"be an object","properties":{"eval":{"_internalId":161237,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":161238,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":161239,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":161240,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":161241,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":161242,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":161243,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":161244,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":161245,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":161246,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":161247,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":161248,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":161249,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":161250,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":161251,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":161252,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":161253,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":161254,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":161255,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":161256,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":161257,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":161258,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":161259,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":161260,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":161261,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":161262,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":161263,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":161264,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":161265,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":161266,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":161267,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":161268,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":161269,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":161270,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":161271,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":161272,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":161273,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":161274,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":161275,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":161276,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":161277,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":161278,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":161279,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":161280,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":161281,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":161282,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":161283,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":161284,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":161285,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":161286,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":161287,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":161288,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":161289,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":161290,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":161291,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":161292,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":161293,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":161294,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":161295,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":161296,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":161297,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":161298,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":161299,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":161300,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":161301,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":161302,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":161303,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":161304,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":161305,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":161306,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":161307,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":161308,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":161309,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":161310,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":161311,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":161312,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":161313,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":161313,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":161314,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":161315,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":161316,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":161317,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":161318,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":161319,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":161320,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":161321,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":161322,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":161323,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":161324,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":161325,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":161326,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":161327,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":161328,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":161329,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":161330,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":161331,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":161332,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":161333,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":161334,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":161335,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":161336,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":161337,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":161338,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":161339,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":161340,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":161341,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":161342,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":161343,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":161344,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":161345,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":161346,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":161347,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":161348,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":161349,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":161350,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":161351,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":161352,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":161353,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":161354,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":161355,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":161356,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":161357,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":161358,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":161359,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":161360,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":161361,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":161362,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":161363,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":161364,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":161365,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":161366,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":161367,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":161368,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":161369,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":161370,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":161371,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":161372,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":161373,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":161374,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":161375,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":161376,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":161377,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":161378,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":161379,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":161380,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":161381,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":161382,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":161383,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":161384,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":161385,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":161386,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":161387,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":161388,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":161389,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":161390,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":161391,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":161392,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":161393,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":161394,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":161395,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":161395,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":161396,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":161397,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":161398,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":161399,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":161400,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":161401,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":161402,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":161403,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":161404,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":161405,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":161406,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":161407,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":161408,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":161409,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":161410,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":161411,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":161412,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":161413,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":161414,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":161415,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":161416,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":161417,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":161417,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":161418,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":161419,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":161420,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":161421,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":161423,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":164051,"type":"anyOf","anyOf":[{"_internalId":164049,"type":"object","description":"be an object","properties":{"eval":{"_internalId":163954,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":163955,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":163956,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":163957,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":163958,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":163959,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":163960,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":163961,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":163962,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":163963,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":163964,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":163965,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":163966,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":163967,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":163968,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":163969,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":163970,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":163971,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":163972,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":163973,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":163974,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":163975,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":163976,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":163977,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":163978,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":163979,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":163980,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":163981,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":163982,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":163983,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":163984,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":163985,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":163986,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":163987,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":163988,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":163988,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":163989,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":163990,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":163991,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":163992,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":163993,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":163994,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":163995,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":163996,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":163997,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":163998,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":163999,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":164000,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":164001,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":164002,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":164003,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":164004,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":164005,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":164006,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":164007,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":164008,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":164009,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":164010,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":164011,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":164012,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":164013,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":164014,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":164015,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":164016,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":164017,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":164018,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":164019,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":164020,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":164021,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":164022,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":164023,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":164024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":164024,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":164025,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":164026,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":164027,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":164028,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":164029,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":164030,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":164031,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":164032,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":164033,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":164034,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":164035,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":164036,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":164037,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":164038,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":164039,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":164040,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":164041,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":164042,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":164043,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":164044,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":164045,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":164046,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":164047,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":164047,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":164048,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":164050,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":166674,"type":"anyOf","anyOf":[{"_internalId":166672,"type":"object","description":"be an object","properties":{"eval":{"_internalId":166581,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":166582,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":166583,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":166584,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":166585,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":166586,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":166587,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":166588,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":166589,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":166590,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":166591,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":166592,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":166593,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":166594,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":166595,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":166596,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":166597,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":166598,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":166599,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":166600,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":166601,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":166602,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":166603,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":166604,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":166605,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":166606,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":166607,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":166608,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":166609,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":166610,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":166611,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":166612,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":166613,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":166614,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":166615,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":166615,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":166616,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":166617,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":166618,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":166619,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":166620,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":166621,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":166622,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":166623,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":166624,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":166625,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":166626,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":166627,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":166628,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":166629,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":166630,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":166631,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":166632,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":166633,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":166634,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":166635,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":166636,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":166637,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":166638,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":166639,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":166640,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":166641,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":166642,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":166643,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":166644,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":166645,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":166646,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":166647,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":166648,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":166649,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":166650,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":166650,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":166651,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":166652,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":166653,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":166654,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":166655,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":166656,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":166657,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":166658,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":166659,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":166660,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":166661,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":166662,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":166663,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":166664,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":166665,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":166666,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":166667,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":166668,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":166669,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":166669,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":166670,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":166671,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,keywords,subject,description,category,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":166673,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":169433,"type":"anyOf","anyOf":[{"_internalId":169431,"type":"object","description":"be an object","properties":{"eval":{"_internalId":169204,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":169205,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":169206,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":169207,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":169208,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":169209,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":169210,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":169211,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":169212,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":169213,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":169214,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":169215,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":169216,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":169217,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":169218,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":169219,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":169220,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":169221,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":169222,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":169223,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":169224,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":169225,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":169226,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":169227,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":169228,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":169229,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":169230,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":169231,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":169232,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":169233,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":169234,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":169235,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":169236,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":169237,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":169238,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":169239,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":169240,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":169241,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":169242,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":169243,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":169244,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":169245,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":169246,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":169247,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":169248,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":169249,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":169250,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":169251,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":169252,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":169253,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":169254,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":169255,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":169256,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":169257,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":169258,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":169259,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":169260,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":169260,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":169261,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":169262,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":169263,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":169264,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":169265,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":169266,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":169267,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":169268,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":169269,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":169270,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":169271,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":169272,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":169273,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":169274,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":169275,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":169276,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":169277,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":169278,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":169279,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":169280,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":169281,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":169282,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":169283,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":169284,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":169285,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":169286,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":169287,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":169288,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":169289,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":169290,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"max-width":{"_internalId":169291,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":169292,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":169293,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":169294,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":169295,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"revealjs-url":{"_internalId":169296,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":169297,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":169298,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":169299,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":169300,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":169301,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":169302,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":169303,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":169304,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":169305,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":169306,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":169307,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":169308,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":169309,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":169310,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":169311,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":169312,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":169313,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":169314,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":169315,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":169316,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":169317,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":169318,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":169319,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":169320,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":169321,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":169322,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":169323,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":169324,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":169325,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":169325,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":169326,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":169327,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":169328,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":169329,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":169330,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":169331,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":169332,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":169333,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":169334,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":169335,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":169336,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":169337,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":169338,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":169339,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":169340,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":169341,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":169342,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":169343,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":169344,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":169345,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":169346,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":169347,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":169348,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":169349,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":169350,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":169351,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":169352,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":169353,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":169354,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":169355,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":169356,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":169357,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":169358,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":169359,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":169360,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":169361,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":169362,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":169363,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":169364,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":169365,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":169366,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":169367,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":169368,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":169369,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":169370,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":169371,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":169372,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":169373,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":169374,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":169375,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":169376,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":169377,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":169378,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":169379,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":169380,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":169381,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":169382,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":169383,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":169384,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":169385,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":169386,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":169387,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":169388,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":169389,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":169390,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":169391,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":169392,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":169393,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":169394,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":169395,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":169396,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":169397,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":169398,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":169399,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":169400,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":169401,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":169402,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":169403,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":169404,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":169405,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":169406,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":169407,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":169408,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":169409,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":169410,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":169411,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":169412,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":169413,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":169414,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":169415,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":169416,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":169417,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":169418,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":169419,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":169420,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":169421,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":169422,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":169423,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":169424,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":169425,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":169426,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":169427,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":169427,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":169428,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":169429,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":169430,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,brand-mode,max-width,margin-left,margin-right,margin-top,margin-bottom,revealjs-url,link-external-icon,link-external-newwindow,link-external-filter,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,logo,footer,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,margin,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-title,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^revealjs_url$|^revealjsUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":169432,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":172061,"type":"anyOf","anyOf":[{"_internalId":172059,"type":"object","description":"be an object","properties":{"eval":{"_internalId":171963,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":171964,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":171965,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":171966,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":171967,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":171968,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":171969,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":171970,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":171971,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":171972,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":171973,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":171974,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":171975,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":171976,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":171977,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":171978,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":171979,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":171980,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":171981,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":171982,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":171983,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":171984,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":171985,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":171986,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":171987,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":171988,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":171989,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":171990,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":171991,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":171992,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":171993,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":171994,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":171995,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":171996,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":171997,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":171998,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":171998,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":171999,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":172000,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":172001,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":172002,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":172003,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":172004,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":172005,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":172006,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":172007,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":172008,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":172009,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":172010,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":172011,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":172012,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":172013,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":172014,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":172015,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":172016,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":172017,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":172018,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":172019,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":172020,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":172021,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":172022,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":172023,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":172024,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":172025,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":172026,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":172027,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":172028,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":172029,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":172030,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":172031,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":172032,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":172033,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":172034,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":172034,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":172035,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":172036,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":172037,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":172038,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":172039,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":172040,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":172041,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":172042,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":172043,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":172044,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":172045,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":172046,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":172047,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":172048,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":172049,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":172050,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":172051,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":172052,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":172053,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":172054,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":172055,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":172056,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":172057,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":172057,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":172058,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,list-tables,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^list_tables$|^listTables$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":172060,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":174689,"type":"anyOf","anyOf":[{"_internalId":174687,"type":"object","description":"be an object","properties":{"eval":{"_internalId":174591,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":174592,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":174593,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":174594,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":174595,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":174596,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":174597,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":174598,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":174599,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":174600,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":174601,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":174602,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":174603,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":174604,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":174605,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":174606,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":174607,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":174608,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":174609,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":174610,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":174611,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":174612,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":174613,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":174614,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":174615,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":174616,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":174617,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":174618,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":174619,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":174620,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":174621,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":174622,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":174623,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":174624,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":174625,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":174626,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":174626,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":174627,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":174628,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":174629,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":174630,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":174631,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":174632,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":174633,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":174634,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":174635,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":174636,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":174637,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":174638,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":174639,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":174640,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":174641,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":174642,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":174643,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":174644,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":174645,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":174646,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":174647,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":174648,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":174649,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":174650,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":174651,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":174652,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":174653,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":174654,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":174655,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":174656,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":174657,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":174658,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":174659,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":174660,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":174661,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":174662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":174662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":174663,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":174664,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":174665,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":174666,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":174667,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":174668,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":174669,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":174670,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":174671,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":174672,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":174673,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":174674,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":174675,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":174676,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":174677,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":174678,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":174679,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":174680,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":174681,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":174682,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":174683,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":174684,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":174685,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":174685,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":174686,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":174688,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":177367,"type":"anyOf","anyOf":[{"_internalId":177365,"type":"object","description":"be an object","properties":{"eval":{"_internalId":177219,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":177220,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":177221,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":177222,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":177223,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":177224,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":177225,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":177226,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":177227,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":177228,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":177229,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":177230,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":177231,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":177232,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":177233,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":177234,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":177235,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":177236,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":177237,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":177238,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":177239,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":177240,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":177241,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":177242,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":177243,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":177244,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":177245,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":177246,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":177247,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":177248,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":177249,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":177250,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":177251,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":177252,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":177253,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":177254,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":177255,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":177256,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":177257,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":177258,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":177259,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":177260,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":177261,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":177262,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":177263,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":177264,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":177265,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":177266,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":177267,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":177268,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":177269,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":177270,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":177271,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":177272,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":177273,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":177274,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":177275,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":177276,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":177276,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":177277,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":177278,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":177279,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":177280,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":177281,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":177282,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":177283,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":177284,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":177285,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":177286,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":177287,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":177288,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":177289,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":177290,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":177291,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":177292,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":177293,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":177294,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":177295,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":177296,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":177297,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":177298,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":177299,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":177300,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":177301,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":177302,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":177303,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":177304,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":177305,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":177306,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":177307,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":177308,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":177309,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":177310,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":177311,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":177312,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":177313,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":177314,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":177315,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":177316,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":177317,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":177318,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":177319,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":177320,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":177321,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":177322,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":177323,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":177324,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":177325,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":177326,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":177327,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":177328,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":177329,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":177330,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":177331,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":177332,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":177333,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":177334,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":177335,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":177336,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":177336,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":177337,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":177338,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":177339,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":177340,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":177341,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":177342,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":177343,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":177344,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":177345,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":177346,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":177347,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":177348,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":177349,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":177350,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":177351,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":177352,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":177353,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":177354,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":177355,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":177356,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":177357,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":177358,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":177359,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":177360,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":177361,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":177362,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":177362,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":177363,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":177364,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,s5-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^s5_url$|^s5Url$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":177366,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":180045,"type":"anyOf","anyOf":[{"_internalId":180043,"type":"object","description":"be an object","properties":{"eval":{"_internalId":179897,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":179898,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":179899,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":179900,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":179901,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":179902,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":179903,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":179904,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":179905,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":179906,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":179907,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":179908,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":179909,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":179910,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":179911,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":179912,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":179913,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":179914,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":179915,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":179916,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":179917,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":179918,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":179919,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":179920,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":179921,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":179922,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":179923,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":179924,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":179925,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":179926,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":179927,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":179928,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":179929,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":179930,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":179931,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":179932,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":179933,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":179934,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":179935,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":179936,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":179937,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":179938,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":179939,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":179940,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":179941,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":179942,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":179943,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":179944,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":179945,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":179946,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":179947,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":179948,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":179949,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":179950,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":179951,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":179952,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":179953,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":179954,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":179954,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":179955,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":179956,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":179957,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":179958,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":179959,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":179960,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":179961,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":179962,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":179963,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":179964,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":179965,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":179966,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":179967,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":179968,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":179969,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":179970,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":179971,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":179972,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":179973,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":179974,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":179975,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":179976,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":179977,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":179978,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":179979,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":179980,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":179981,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":179982,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":179983,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":179984,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":179985,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":179986,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":179987,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":179988,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":179989,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":179990,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":179991,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":179992,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":179993,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":179994,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":179995,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":179996,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":179997,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":179998,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":179999,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":180000,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":180001,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":180002,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":180003,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":180004,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":180005,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":180006,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":180007,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":180008,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":180009,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":180010,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":180011,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":180012,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":180013,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":180014,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":180014,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":180015,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":180016,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":180017,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":180018,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":180019,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":180020,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":180021,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":180022,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":180023,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":180024,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":180025,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":180026,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":180027,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":180028,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":180029,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":180030,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":180031,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":180032,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":180033,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":180034,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":180035,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":180036,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":180037,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":180038,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":180039,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":180040,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":180040,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":180041,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":180042,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slideous-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slideous_url$|^slideousUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":180044,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":182723,"type":"anyOf","anyOf":[{"_internalId":182721,"type":"object","description":"be an object","properties":{"eval":{"_internalId":182575,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":182576,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":182577,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":182578,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":182579,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":182580,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":182581,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":182582,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":182583,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":182584,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":182585,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":182586,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":182587,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":182588,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":182589,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":182590,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":182591,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":182592,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":182593,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":182594,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":182595,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":182596,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":182597,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":182598,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":182599,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":182600,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":182601,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":182602,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":182603,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":182604,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":182605,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":182606,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":182607,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":182608,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":182609,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":182610,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":182611,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":182612,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":182613,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":182614,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":182615,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":182616,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":182617,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":182618,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":182619,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":182620,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":182621,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":182622,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":182623,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":182624,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":182625,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":182626,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":182627,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":182628,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":182629,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":182630,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":182631,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":182632,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":182632,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":182633,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":182634,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":182635,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":182636,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":182637,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":182638,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":182639,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":182640,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":182641,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":182642,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":182643,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":182644,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":182645,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":182646,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":182647,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":182648,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":182649,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":182650,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":182651,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":182652,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":182653,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":182654,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":182655,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":182656,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":182657,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":182658,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":182659,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":182660,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":182661,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":182662,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":182663,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":182664,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":182665,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":182666,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":182667,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":182668,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":182669,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":182670,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":182671,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":182672,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":182673,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":182674,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":182675,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":182676,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":182677,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":182678,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":182679,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":182680,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":182681,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":182682,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":182683,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":182684,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":182685,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":182686,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":182687,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":182688,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":182689,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":182690,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":182691,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":182692,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":182692,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":182693,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":182694,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":182695,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":182696,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":182697,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":182698,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":182699,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":182700,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":182701,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":182702,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":182703,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":182704,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":182705,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":182706,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":182707,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":182708,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":182709,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":182710,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":182711,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":182712,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":182713,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":182714,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":182715,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":182716,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":182717,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":182718,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":182718,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":182719,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":182720,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slidy-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slidy_url$|^slidyUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":182722,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":185351,"type":"anyOf","anyOf":[{"_internalId":185349,"type":"object","description":"be an object","properties":{"eval":{"_internalId":185253,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":185254,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":185255,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":185256,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":185257,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":185258,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":185259,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":185260,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":185261,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":185262,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":185263,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":185264,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":185265,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":185266,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":185267,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":185268,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":185269,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":185270,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":185271,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":185272,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":185273,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":185274,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":185275,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":185276,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":185277,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":185278,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":185279,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":185280,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":185281,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":185282,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":185283,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":185284,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":185285,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":185286,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":185287,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":185287,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":185288,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":185289,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":185290,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":185291,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":185292,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":185293,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":185294,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":185295,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":185296,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":185297,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":185298,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":185299,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":185300,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":185301,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":185302,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":185303,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":185304,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":185305,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":185306,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":185307,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":185308,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":185309,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":185310,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":185311,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":185312,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":185313,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":185314,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":185315,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":185316,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":185317,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":185318,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":185319,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":185320,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":185321,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":185322,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":185323,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":185324,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":185324,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":185325,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":185326,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":185327,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":185328,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":185329,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":185330,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":185331,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":185332,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":185333,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":185334,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":185335,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":185336,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":185337,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":185338,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":185339,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":185340,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":185341,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":185342,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":185343,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":185344,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":185345,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":185346,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":185347,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":185347,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":185348,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":185350,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":187978,"type":"anyOf","anyOf":[{"_internalId":187976,"type":"object","description":"be an object","properties":{"eval":{"_internalId":187881,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":187882,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":187883,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":187884,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":187885,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":187886,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":187887,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":187888,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":187889,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":187890,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":187891,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":187892,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":187893,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":187894,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":187895,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":187896,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":187897,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":187898,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":187899,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":187900,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":187901,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":187902,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":187903,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":187904,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":187905,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":187906,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":187907,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":187908,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":187909,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":187910,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":187911,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":187912,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":187913,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":187914,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":187915,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":187915,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":187916,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":187917,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":187918,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":187919,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":187920,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":187921,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":187922,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":187923,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":187924,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":187925,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":187926,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":187927,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":187928,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":187929,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":187930,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":187931,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":187932,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":187933,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":187934,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":187935,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":187936,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":187937,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":187938,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":187939,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":187940,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":187941,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":187942,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":187943,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":187944,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":187945,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":187946,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":187947,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":187948,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":187949,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":187950,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":187951,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":187951,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":187952,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":187953,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":187954,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":187955,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":187956,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":187957,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":187958,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":187959,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":187960,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":187961,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":187962,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":187963,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":187964,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":187965,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":187966,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":187967,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":187968,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":187969,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":187970,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":187971,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":187972,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":187973,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":187974,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":187974,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":187975,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":187977,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":190606,"type":"anyOf","anyOf":[{"_internalId":190604,"type":"object","description":"be an object","properties":{"eval":{"_internalId":190508,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":190509,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":190510,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":190511,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":190512,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":190513,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":190514,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":190515,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":190516,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":190517,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":190518,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":190519,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":190520,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":190521,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":190522,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":190523,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":190524,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":190525,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":190526,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":190527,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":190528,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":190529,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":190530,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":190531,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":190532,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":190533,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":190534,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":190535,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":190536,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":190537,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":190538,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":190539,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":190540,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":190541,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":190542,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":190542,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":190543,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":190544,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":190545,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":190546,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":190547,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":190548,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":190549,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":190550,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":190551,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":190552,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":190553,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":190554,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":190555,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":190556,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":190557,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":190558,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":190559,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":190560,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":190561,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":190562,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":190563,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":190564,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":190565,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":190566,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":190567,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":190568,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":190569,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":190570,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":190571,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":190572,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":190573,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":190574,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":190575,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":190576,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":190577,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":190578,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":190578,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":190579,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":190580,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":190581,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":190582,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":190583,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":190584,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":190585,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":190586,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":190587,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":190588,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":190589,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":190590,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":190591,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":190592,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":190593,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":190594,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":190595,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":190596,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":190597,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":190598,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":190599,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":190600,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":190601,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":190602,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":190602,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":190603,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":190605,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":193260,"type":"anyOf","anyOf":[{"_internalId":193258,"type":"object","description":"be an object","properties":{"eval":{"_internalId":193136,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":193137,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"cap-location":{"_internalId":193138,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":193139,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":193140,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"output":{"_internalId":193141,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":193142,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":193143,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":193144,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":193145,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":193146,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":193147,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":193148,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":193149,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":193150,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":193151,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":193152,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":193153,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":193154,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":193155,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":193156,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":193157,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":193158,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":193159,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":193160,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":193161,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":193162,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":193163,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":193164,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":193165,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":193166,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":193167,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":193168,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":193169,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":193170,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":193171,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":193172,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":193173,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"fontsize":{"_internalId":193174,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"font-paths":{"_internalId":193175,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"reference-location":{"_internalId":193176,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":193177,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":193178,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":193178,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":193179,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":193180,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":193181,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":193182,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":193183,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":193184,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":193185,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":193186,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":193187,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":193188,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":193189,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":193190,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":193191,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":193192,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":193193,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":193194,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":193195,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":193196,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":193197,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":193198,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":193199,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":193200,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":193201,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":193202,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":193203,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":193204,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":193205,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":193206,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":193207,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":193208,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":193209,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":193210,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":193211,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":193212,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"brand":{"_internalId":193213,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":193214,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":193215,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":193216,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":193217,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citation-location":{"_internalId":193218,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":193219,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":193220,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":193221,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":193222,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":193222,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":193223,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":193224,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":193225,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":193226,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":193227,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":193228,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":193229,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":193230,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":193231,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":193232,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":193233,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":193234,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":193235,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":193236,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":193237,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":193238,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":193239,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":193240,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":193241,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":193242,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"margin":{"_internalId":193243,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"df-print":{"_internalId":193244,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":193245,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":193246,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":193247,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":193248,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":193249,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":193250,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":193250,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":193251,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":193252,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"lof":{"_internalId":193253,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":193254,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"logo":{"_internalId":193255,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"margin-geometry":{"_internalId":193256,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":193257,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,cap-location,fig-cap-location,tbl-cap-location,output,warning,error,include,title,date,date-format,author,abstract-title,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,fontsize,font-paths,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,papersize,brand-mode,grid,number-sections,section-numbering,shift-heading-level-by,page-numbering,brand,quarto-required,pdf-standard,bibliography,csl,citation-location,citeproc,bibliographystyle,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,margin,df-print,wrap,columns,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-indent,toc-depth,lof,lot,logo,margin-geometry,theorem-appearance","type":"string","pattern":"(?!(^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^font_paths$|^fontPaths$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^number_sections$|^numberSections$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":193259,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":195887,"type":"anyOf","anyOf":[{"_internalId":195885,"type":"object","description":"be an object","properties":{"eval":{"_internalId":195790,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":195791,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":195792,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":195793,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":195794,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":195795,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":195796,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":195797,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":195798,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":195799,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":195800,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":195801,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":195802,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":195803,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":195804,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":195805,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":195806,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":195807,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":195808,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":195809,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":195810,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":195811,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":195812,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":195813,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":195814,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":195815,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":195816,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":195817,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":195818,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":195819,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":195820,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":195821,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":195822,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":195823,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":195824,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":195824,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":195825,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":195826,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":195827,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":195828,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":195829,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":195830,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":195831,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":195832,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":195833,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":195834,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":195835,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":195836,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":195837,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":195838,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":195839,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":195840,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":195841,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":195842,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":195843,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":195844,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":195845,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":195846,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":195847,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":195848,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":195849,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":195850,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":195851,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":195852,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":195853,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":195854,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":195855,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":195856,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":195857,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":195858,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":195859,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":195860,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":195860,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":195861,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":195862,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":195863,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":195864,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":195865,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":195866,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":195867,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":195868,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":195869,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":195870,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":195871,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":195872,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":195873,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":195874,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":195875,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":195876,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":195877,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":195878,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":195879,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":195880,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":195881,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":195882,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":195883,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":195883,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":195884,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":195886,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":198514,"type":"anyOf","anyOf":[{"_internalId":198512,"type":"object","description":"be an object","properties":{"eval":{"_internalId":198417,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":198418,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":198419,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":198420,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":198421,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":198422,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":198423,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":198424,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":198425,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":198426,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":198427,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":198428,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":198429,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":198430,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":198431,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":198432,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":198433,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":198434,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":198435,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":198436,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":198437,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":198438,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":198439,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":198440,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":198441,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":198442,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":198443,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":198444,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":198445,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":198446,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":198447,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":198448,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":198449,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":198450,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":198451,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":198451,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":198452,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":198453,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":198454,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":198455,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":198456,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":198457,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":198458,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":198459,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":198460,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":198461,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":198462,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":198463,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":198464,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":198465,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":198466,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":198467,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":198468,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":198469,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":198470,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":198471,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":198472,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":198473,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":198474,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":198475,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":198476,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":198477,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":198478,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":198479,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":198480,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":198481,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":198482,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":198483,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":198484,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":198485,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":198486,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":198487,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":198487,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":198488,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":198489,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":198490,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":198491,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":198492,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":198493,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":198494,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":198495,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":198496,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":198497,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":198498,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":198499,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":198500,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":198501,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":198502,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":198503,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":198504,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":198505,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":198506,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":198507,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":198508,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":198509,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":198510,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":198510,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":198511,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":198513,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":201141,"type":"anyOf","anyOf":[{"_internalId":201139,"type":"object","description":"be an object","properties":{"eval":{"_internalId":201044,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":201045,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":201046,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":201047,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":201048,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":201049,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":201050,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":201051,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":201052,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":201053,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":201054,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":201055,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":201056,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":201057,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":201058,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":201059,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":201060,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":201061,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":201062,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":201063,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":201064,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":201065,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":201066,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":201067,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":201068,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":201069,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":201070,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":201071,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":201072,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":201073,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":201074,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":201075,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":201076,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":201077,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":201078,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":201078,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":201079,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":201080,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":201081,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":201082,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":201083,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":201084,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":201085,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":201086,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":201087,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":201088,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":201089,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":201090,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":201091,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":201092,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":201093,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":201094,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":201095,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":201096,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":201097,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":201098,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":201099,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":201100,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":201101,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":201102,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":201103,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":201104,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":201105,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":201106,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":201107,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":201108,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":201109,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":201110,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":201111,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":201112,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":201113,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":201114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":201114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":201115,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":201116,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":201117,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":201118,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":201119,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":201120,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":201121,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":201122,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":201123,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":201124,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":201125,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":201126,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":201127,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":201128,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":201129,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":201130,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":201131,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":201132,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":201133,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":201134,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":201135,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":201136,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":201137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":201137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":201138,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":201140,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":203768,"type":"anyOf","anyOf":[{"_internalId":203766,"type":"object","description":"be an object","properties":{"eval":{"_internalId":203671,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":203672,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":203673,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":203674,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":203675,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":203676,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":203677,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":203678,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":203679,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":203680,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":203681,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":203682,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":203683,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":203684,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":203685,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":203686,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":203687,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":203688,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":203689,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":203690,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":203691,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":203692,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":203693,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":203694,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":203695,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":203696,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":203697,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":203698,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":203699,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":203700,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":203701,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":203702,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":203703,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":203704,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":203705,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":203705,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":203706,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":203707,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":203708,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":203709,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":203710,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":203711,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":203712,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":203713,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":203714,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":203715,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":203716,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":203717,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":203718,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":203719,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":203720,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":203721,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":203722,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":203723,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":203724,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":203725,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":203726,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":203727,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":203728,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":203729,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":203730,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":203731,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":203732,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":203733,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":203734,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":203735,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":203736,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":203737,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":203738,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":203739,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":203740,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":203741,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":203741,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":203742,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":203743,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":203744,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":203745,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":203746,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":203747,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":203748,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":203749,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":203750,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":203751,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":203752,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":203753,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":203754,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":203755,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":203756,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":203757,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":203758,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":203759,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":203760,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":203761,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":203762,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":203763,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":203764,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":203764,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":203765,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":203767,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":206402,"type":"anyOf","anyOf":[{"_internalId":206400,"type":"object","description":"be an object","properties":{"eval":{"_internalId":206298,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":206299,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":206300,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":206301,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":206302,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":206303,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":206304,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":206305,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":206306,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":206307,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":206308,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":206309,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":206310,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":206311,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":206312,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":206313,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":206314,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":206315,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":206316,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":206317,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":206318,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":206319,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":206320,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":206321,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":206322,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":206323,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":206324,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":206325,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":206326,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":206327,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":206328,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":206329,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":206330,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":206331,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":206332,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":206333,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":206333,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":206334,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":206335,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":206336,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":206337,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":206338,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":206339,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":206340,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":206341,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":206342,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":206343,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":206344,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":206345,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":206346,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":206347,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":206348,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":206349,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":206350,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":206351,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":206352,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":206353,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":206354,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":206355,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":206356,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":206357,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":206358,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":206359,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":206360,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":206361,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":206362,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":206363,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":206364,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":206365,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":206366,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":206367,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":206368,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":206369,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":206370,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":206371,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":206372,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":206373,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":206373,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":206374,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":206375,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":206376,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":206377,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":206378,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":206379,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":206380,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":206381,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":206382,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":206383,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":206384,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":206385,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":206386,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":206387,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":206388,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":206389,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":206390,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":206391,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":206392,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":206393,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":206394,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":206395,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":206396,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":206397,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":206398,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":206398,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":206399,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":206401,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":209029,"type":"anyOf","anyOf":[{"_internalId":209027,"type":"object","description":"be an object","properties":{"eval":{"_internalId":208932,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":208933,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":208934,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":208935,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":208936,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":208937,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":208938,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":208939,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":208940,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":208941,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":208942,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":208943,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":208944,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":208945,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":208946,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":208947,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":208948,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":208949,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":208950,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":208951,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":208952,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":208953,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":208954,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":208955,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":208956,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":208957,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":208958,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":208959,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":208960,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":208961,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":208962,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":208963,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":208964,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":208965,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":208966,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":208966,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":208967,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":208968,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":208969,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":208970,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":208971,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":208972,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":208973,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":208974,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":208975,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":208976,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":208977,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":208978,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":208979,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":208980,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":208981,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":208982,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":208983,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":208984,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":208985,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":208986,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":208987,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":208988,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":208989,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":208990,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":208991,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":208992,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":208993,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":208994,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":208995,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":208996,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":208997,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":208998,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":208999,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":209000,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":209001,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":209002,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":209002,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":209003,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":209004,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":209005,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":209006,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":209007,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":209008,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":209009,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":209010,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":209011,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":209012,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":209013,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":209014,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":209015,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":209016,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":209017,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":209018,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":209019,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":209020,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":209021,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":209022,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":209023,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":209024,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":209025,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":209025,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":209026,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":209028,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":211708,"type":"anyOf","anyOf":[{"_internalId":211706,"type":"object","description":"be an object","properties":{"eval":{"_internalId":211559,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":211560,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":211561,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":211562,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":211563,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":211564,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":211565,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":211566,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":211567,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":211568,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":211569,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":211570,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":211571,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":211572,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":211573,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":211574,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":211575,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":211576,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":211577,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":211578,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":211579,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":211580,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":211581,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":211582,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":211583,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":211584,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":211585,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":211586,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":211587,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":211588,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":211589,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":211590,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":211591,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":211592,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":211593,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":211594,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":211595,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":211596,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":211597,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":211598,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":211599,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":211600,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":211601,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":211602,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":211603,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":211604,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":211605,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":211606,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":211607,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":211608,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":211609,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":211610,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":211611,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":211612,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":211613,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":211614,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":211615,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":211616,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":211617,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":211618,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":211619,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":211619,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":211620,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":211621,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":211622,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":211623,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":211624,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":211625,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":211626,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":211627,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":211628,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":211629,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":211630,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":211631,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":211632,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":211633,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":211634,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":211635,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":211636,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":211637,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":211638,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":211639,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":211640,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":211641,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":211642,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":211643,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":211644,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":211645,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":211646,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":211647,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":211648,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":211649,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":211650,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":211651,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":211652,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":211653,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":211654,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":211655,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":211656,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":211657,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":211658,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":211659,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":211660,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":211661,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":211662,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":211663,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":211664,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":211665,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":211666,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":211667,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":211668,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":211669,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":211670,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":211671,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":211672,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":211673,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":211674,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":211675,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":211676,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":211677,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":211678,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":211679,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":211679,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":211680,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":211681,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":211682,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":211683,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":211684,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":211685,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":211686,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":211687,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":211688,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":211689,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":211690,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":211691,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":211692,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":211693,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":211694,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":211695,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":211696,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":211697,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":211698,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":211699,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":211700,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":211701,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":211702,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":211703,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":211703,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":211704,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":211705,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-copy,code-link,code-annotations,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":211707,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":214335,"type":"anyOf","anyOf":[{"_internalId":214333,"type":"object","description":"be an object","properties":{"eval":{"_internalId":214238,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214239,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":214240,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214241,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214242,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214243,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":214244,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":214245,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":214246,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":214247,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":214248,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":214249,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":214250,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":214251,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":214252,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":214253,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":214254,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":214255,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":214256,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":214257,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":214258,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":214259,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":214260,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":214261,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":214262,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":214263,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":214264,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":214265,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":214266,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":214267,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":214268,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":214269,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":214270,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":214271,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":214272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":214272,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":214273,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":214274,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":214275,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":214276,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":214277,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":214278,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":214279,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":214280,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":214281,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":214282,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":214283,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":214284,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":214285,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":214286,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":214287,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":214288,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":214289,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":214290,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":214291,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":214292,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":214293,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":214294,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":214295,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":214296,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":214297,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":214298,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":214299,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":214300,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":214301,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":214302,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":214303,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":214304,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":214305,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":214306,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":214307,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":214308,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":214308,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":214309,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":214310,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":214311,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":214312,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":214313,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":214314,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":214315,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":214316,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":214317,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":214318,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":214319,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":214320,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":214321,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":214322,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":214323,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":214324,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":214325,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":214326,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":214327,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":214328,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":214329,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":214330,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":214331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":214331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":214332,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":214334,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"}},"additionalProperties":false,"tags":{"completions":{"ansi":{"type":"key","display":"ansi","value":"ansi: ","description":"be 'ansi'","suggest_on_accept":true},"asciidoc":{"type":"key","display":"asciidoc","value":"asciidoc: ","description":"be 'asciidoc'","suggest_on_accept":true},"asciidoc_legacy":{"type":"key","display":"asciidoc_legacy","value":"asciidoc_legacy: ","description":"be 'asciidoc_legacy'","suggest_on_accept":true},"asciidoctor":{"type":"key","display":"asciidoctor","value":"asciidoctor: ","description":"be 'asciidoctor'","suggest_on_accept":true},"bbcode":{"type":"key","display":"bbcode","value":"bbcode: ","description":"be 'bbcode'","suggest_on_accept":true},"bbcode_fluxbb":{"type":"key","display":"bbcode_fluxbb","value":"bbcode_fluxbb: ","description":"be 'bbcode_fluxbb'","suggest_on_accept":true},"bbcode_hubzilla":{"type":"key","display":"bbcode_hubzilla","value":"bbcode_hubzilla: ","description":"be 'bbcode_hubzilla'","suggest_on_accept":true},"bbcode_phpbb":{"type":"key","display":"bbcode_phpbb","value":"bbcode_phpbb: ","description":"be 'bbcode_phpbb'","suggest_on_accept":true},"bbcode_steam":{"type":"key","display":"bbcode_steam","value":"bbcode_steam: ","description":"be 'bbcode_steam'","suggest_on_accept":true},"bbcode_xenforo":{"type":"key","display":"bbcode_xenforo","value":"bbcode_xenforo: ","description":"be 'bbcode_xenforo'","suggest_on_accept":true},"beamer":{"type":"key","display":"beamer","value":"beamer: ","description":"be 'beamer'","suggest_on_accept":true},"biblatex":{"type":"key","display":"biblatex","value":"biblatex: ","description":"be 'biblatex'","suggest_on_accept":true},"bibtex":{"type":"key","display":"bibtex","value":"bibtex: ","description":"be 'bibtex'","suggest_on_accept":true},"chunkedhtml":{"type":"key","display":"chunkedhtml","value":"chunkedhtml: ","description":"be 'chunkedhtml'","suggest_on_accept":true},"commonmark":{"type":"key","display":"commonmark","value":"commonmark: ","description":"be 'commonmark'","suggest_on_accept":true},"commonmark_x":{"type":"key","display":"commonmark_x","value":"commonmark_x: ","description":"be 'commonmark_x'","suggest_on_accept":true},"context":{"type":"key","display":"context","value":"context: ","description":"be 'context'","suggest_on_accept":true},"csljson":{"type":"key","display":"csljson","value":"csljson: ","description":"be 'csljson'","suggest_on_accept":true},"djot":{"type":"key","display":"djot","value":"djot: ","description":"be 'djot'","suggest_on_accept":true},"docbook":{"type":"key","display":"docbook","value":"docbook: ","description":"be 'docbook'","suggest_on_accept":true},"docx":{"type":"key","display":"docx","value":"docx: ","description":"be 'docx'","suggest_on_accept":true},"dokuwiki":{"type":"key","display":"dokuwiki","value":"dokuwiki: ","description":"be 'dokuwiki'","suggest_on_accept":true},"dzslides":{"type":"key","display":"dzslides","value":"dzslides: ","description":"be 'dzslides'","suggest_on_accept":true},"epub":{"type":"key","display":"epub","value":"epub: ","description":"be 'epub'","suggest_on_accept":true},"fb2":{"type":"key","display":"fb2","value":"fb2: ","description":"be 'fb2'","suggest_on_accept":true},"gfm":{"type":"key","display":"gfm","value":"gfm: ","description":"be 'gfm'","suggest_on_accept":true},"haddock":{"type":"key","display":"haddock","value":"haddock: ","description":"be 'haddock'","suggest_on_accept":true},"html":{"type":"key","display":"html","value":"html: ","description":"be 'html'","suggest_on_accept":true},"icml":{"type":"key","display":"icml","value":"icml: ","description":"be 'icml'","suggest_on_accept":true},"ipynb":{"type":"key","display":"ipynb","value":"ipynb: ","description":"be 'ipynb'","suggest_on_accept":true},"jats":{"type":"key","display":"jats","value":"jats: ","description":"be 'jats'","suggest_on_accept":true},"jats_archiving":{"type":"key","display":"jats_archiving","value":"jats_archiving: ","description":"be 'jats_archiving'","suggest_on_accept":true},"jats_articleauthoring":{"type":"key","display":"jats_articleauthoring","value":"jats_articleauthoring: ","description":"be 'jats_articleauthoring'","suggest_on_accept":true},"jats_publishing":{"type":"key","display":"jats_publishing","value":"jats_publishing: ","description":"be 'jats_publishing'","suggest_on_accept":true},"jira":{"type":"key","display":"jira","value":"jira: ","description":"be 'jira'","suggest_on_accept":true},"json":{"type":"key","display":"json","value":"json: ","description":"be 'json'","suggest_on_accept":true},"latex":{"type":"key","display":"latex","value":"latex: ","description":"be 'latex'","suggest_on_accept":true},"man":{"type":"key","display":"man","value":"man: ","description":"be 'man'","suggest_on_accept":true},"markdown":{"type":"key","display":"markdown","value":"markdown: ","description":"be 'markdown'","suggest_on_accept":true},"markdown_github":{"type":"key","display":"markdown_github","value":"markdown_github: ","description":"be 'markdown_github'","suggest_on_accept":true},"markdown_mmd":{"type":"key","display":"markdown_mmd","value":"markdown_mmd: ","description":"be 'markdown_mmd'","suggest_on_accept":true},"markdown_phpextra":{"type":"key","display":"markdown_phpextra","value":"markdown_phpextra: ","description":"be 'markdown_phpextra'","suggest_on_accept":true},"markdown_strict":{"type":"key","display":"markdown_strict","value":"markdown_strict: ","description":"be 'markdown_strict'","suggest_on_accept":true},"markua":{"type":"key","display":"markua","value":"markua: ","description":"be 'markua'","suggest_on_accept":true},"mediawiki":{"type":"key","display":"mediawiki","value":"mediawiki: ","description":"be 'mediawiki'","suggest_on_accept":true},"ms":{"type":"key","display":"ms","value":"ms: ","description":"be 'ms'","suggest_on_accept":true},"muse":{"type":"key","display":"muse","value":"muse: ","description":"be 'muse'","suggest_on_accept":true},"native":{"type":"key","display":"native","value":"native: ","description":"be 'native'","suggest_on_accept":true},"odt":{"type":"key","display":"odt","value":"odt: ","description":"be 'odt'","suggest_on_accept":true},"opendocument":{"type":"key","display":"opendocument","value":"opendocument: ","description":"be 'opendocument'","suggest_on_accept":true},"opml":{"type":"key","display":"opml","value":"opml: ","description":"be 'opml'","suggest_on_accept":true},"org":{"type":"key","display":"org","value":"org: ","description":"be 'org'","suggest_on_accept":true},"pdf":{"type":"key","display":"pdf","value":"pdf: ","description":"be 'pdf'","suggest_on_accept":true},"plain":{"type":"key","display":"plain","value":"plain: ","description":"be 'plain'","suggest_on_accept":true},"pptx":{"type":"key","display":"pptx","value":"pptx: ","description":"be 'pptx'","suggest_on_accept":true},"revealjs":{"type":"key","display":"revealjs","value":"revealjs: ","description":"be 'revealjs'","suggest_on_accept":true},"rst":{"type":"key","display":"rst","value":"rst: ","description":"be 'rst'","suggest_on_accept":true},"rtf":{"type":"key","display":"rtf","value":"rtf: ","description":"be 'rtf'","suggest_on_accept":true},"s5":{"type":"key","display":"s5","value":"s5: ","description":"be 's5'","suggest_on_accept":true},"slideous":{"type":"key","display":"slideous","value":"slideous: ","description":"be 'slideous'","suggest_on_accept":true},"slidy":{"type":"key","display":"slidy","value":"slidy: ","description":"be 'slidy'","suggest_on_accept":true},"tei":{"type":"key","display":"tei","value":"tei: ","description":"be 'tei'","suggest_on_accept":true},"texinfo":{"type":"key","display":"texinfo","value":"texinfo: ","description":"be 'texinfo'","suggest_on_accept":true},"textile":{"type":"key","display":"textile","value":"textile: ","description":"be 'textile'","suggest_on_accept":true},"typst":{"type":"key","display":"typst","value":"typst: ","description":"be 'typst'","suggest_on_accept":true},"vimdoc":{"type":"key","display":"vimdoc","value":"vimdoc: ","description":"be 'vimdoc'","suggest_on_accept":true},"xml":{"type":"key","display":"xml","value":"xml: ","description":"be 'xml'","suggest_on_accept":true},"xwiki":{"type":"key","display":"xwiki","value":"xwiki: ","description":"be 'xwiki'","suggest_on_accept":true},"zimwiki":{"type":"key","display":"zimwiki","value":"zimwiki: ","description":"be 'zimwiki'","suggest_on_accept":true},"md":{"type":"key","display":"md","value":"md: ","description":"be 'md'","suggest_on_accept":true},"hugo":{"type":"key","display":"hugo","value":"hugo: ","description":"be 'hugo'","suggest_on_accept":true},"dashboard":{"type":"key","display":"dashboard","value":"dashboard: ","description":"be 'dashboard'","suggest_on_accept":true},"email":{"type":"key","display":"email","value":"email: ","description":"be 'email'","suggest_on_accept":true}}}}],"description":"be all of: an object"}],"description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object","errorMessage":"${value} is not a valid output format.","$id":"front-matter-format"},"front-matter":{"_internalId":214869,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":214868,"type":"allOf","allOf":[{"_internalId":214422,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5569,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":214421,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"}},"patternProperties":{}},{"_internalId":214866,"type":"object","description":"be an object","properties":{"eval":{"_internalId":214423,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":214424,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":214425,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":214426,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":214427,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":214428,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":214429,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":214430,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":214431,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":214432,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":214433,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":214434,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":214435,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":214436,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":214437,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":214438,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":214439,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":214440,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":214441,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":214442,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":214443,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":214444,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":214445,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":214446,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":214447,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":214655,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":214449,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":214450,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":214451,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":214452,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":214453,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":214454,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":214455,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":214456,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":214457,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":214458,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":214459,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":214460,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":214461,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":214462,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":214463,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":214464,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":214465,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":214466,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":214467,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":214468,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":214469,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":214470,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":214471,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":214472,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":214473,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":214474,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":214475,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":214476,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":214477,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":214478,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":214479,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":214480,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":214481,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":214482,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":214483,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":214863,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":214485,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":214486,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":214487,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":214488,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":214489,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":214490,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":214491,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":214492,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":214493,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":214652,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"type":{"_internalId":214495,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":214496,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":214497,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":214498,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":214499,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":214500,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":214501,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":214502,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":214503,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":214504,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":214505,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":214506,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":214507,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":214508,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":214509,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":214510,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":214511,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":214512,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":214513,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":214514,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":214515,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":214516,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":214517,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":214518,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":214519,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":214520,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":214521,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":214522,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":214523,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":214524,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":214525,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":214526,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":214527,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":214528,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":214529,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":214530,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":214531,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":214532,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":214533,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":214534,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":214535,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":214536,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":214537,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":214538,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":214539,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":214540,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":214541,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":214542,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":214543,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":214544,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":214545,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":214546,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":214547,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":214548,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":214549,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":214550,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":214551,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":214552,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":214553,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":214554,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":214555,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":214556,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":214557,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":214558,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":214558,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":214559,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":214560,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":214561,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":214562,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":214563,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":214564,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":214565,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":214566,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":214567,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":214568,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":214569,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":214570,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":214571,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":214572,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":214573,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":214574,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":214575,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":214576,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":214577,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":214578,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":214579,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":214580,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":214581,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":214582,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":214583,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":214584,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":214585,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":214586,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":214587,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":214588,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":214761,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":214590,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":214591,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":214592,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":214593,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":214594,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":214595,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":214596,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":214597,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":214598,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":214599,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":214600,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":214601,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":214602,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":214603,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":214604,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":214605,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":214606,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":214607,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":214608,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":214609,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":214610,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":214611,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":214612,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":214613,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":214614,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":214615,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":214616,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":214617,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":214618,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":214619,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":214620,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":214621,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":214622,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":214623,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":214624,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":214625,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":214626,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":214627,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":214628,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":214629,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":214630,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":214631,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":214632,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":214633,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":214634,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":214635,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":214636,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":214637,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":214638,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":214639,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":214640,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":214641,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":214642,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":214643,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":214644,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":214645,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":214646,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":214647,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":214648,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":214649,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":214650,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":214651,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"description":{"_internalId":214653,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":214654,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":214656,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":214657,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":214658,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":214659,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":214660,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":214661,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":214662,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":214663,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":214664,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":214665,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":214666,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":214667,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":214668,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":214669,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"pagenumbering":{"_internalId":214670,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":214671,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":214672,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":214673,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":214674,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":214675,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":214676,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":214677,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":214678,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":214679,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":214680,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":214681,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":214682,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":214683,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":214684,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":214685,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":214686,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":214687,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":214688,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":214689,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":214690,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":214691,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":214692,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":214693,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":214694,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":214696,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":214697,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":214698,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":214699,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":214700,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":214701,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":214702,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":214703,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":214704,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":214705,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":214706,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":214707,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":214708,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":214709,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":214710,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":214711,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":214712,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":214713,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":214714,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":214715,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":214716,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"pdf-standard":{"_internalId":214717,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":214718,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":214719,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":214720,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":214721,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":214722,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":214723,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":214724,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":214725,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":214726,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":214727,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":214728,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":214729,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":214730,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":214731,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":214732,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":214733,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":214734,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":214734,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":214735,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":214736,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":214737,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":214738,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":214739,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":214740,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":214741,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":214742,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":214743,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":214744,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":214745,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":214746,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":214747,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":214748,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":214749,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":214750,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":214751,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":214752,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":214753,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":214754,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":214755,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":214756,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":214757,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":214758,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":214759,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":214762,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":214763,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":214764,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":214765,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":214766,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":214767,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":214768,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":214769,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":214770,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":214771,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":214772,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":214773,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":214774,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":214775,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":214776,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":214777,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":214778,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":214779,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":214780,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":214781,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":214782,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":214783,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":214784,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":214785,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":214786,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":214787,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":214788,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":214789,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":214790,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":214791,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":214792,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":214793,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":214794,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":214795,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":214796,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":214797,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":214798,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":214799,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":214800,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":214801,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":214802,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":214803,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":214804,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":214805,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":214806,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":214807,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":214808,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":214809,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":214810,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":214811,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":214812,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":214813,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":214814,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":214815,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":214816,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":214817,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":214818,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":214819,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":214820,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":214821,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":214822,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":214823,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":214824,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":214825,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":214826,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":214827,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":214828,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":214829,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":214830,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":214831,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":214832,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":214833,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":214834,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":214835,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":214836,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":214837,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":214838,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":214839,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":214840,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":214841,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":214842,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":214843,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":214844,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":214845,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":214846,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":214846,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":214847,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":214848,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":214849,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":214850,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":214851,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":214852,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":214853,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":214854,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":214855,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":214856,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":214857,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":214858,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":214859,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":214860,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":214861,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":214862,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"},"margin-geometry":{"_internalId":214864,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":214865,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,affiliation,copyright,article,journal,institute,abstract,abstract-title,notes,tags,doi,thanks,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,contrastcolor,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,zotero,identifier,creator,contributor,subject,type,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,font-paths,CJKoptions,microtypeoptions,pointsize,lineheight,linestretch,interlinespace,linkstyle,whitespace,footnotes-hover,links-as-notes,reference-location,indenting,adjusting,hyphenate,list-tables,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,keep-source,keep-hidden,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,headertext,footertext,includesource,footer,header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,brand-mode,layout,page-layout,page-width,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,revealjs-url,s5-url,slidy-url,slideous-url,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-subarticles,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,description,category,license,title-meta,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,number-offset,section-numbering,shift-heading-level-by,page-numbering,pagenumbering,top-level-division,ojs-engine,reference-doc,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,beameroption,aspectratio,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,section,variant,markdown-headings,ipynb-output,quarto-required,preview-mode,pdfa,pdfaiccprofile,pdfaintent,pdf-standard,bibliography,csl,citations-hover,citation-location,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,bibliographystyle,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,use-rsvg-convert,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,margin,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,wrap,columns,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-indent,toc-depth,toc-location,toc-title,toc-expand,lof,lot,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe,margin-geometry,theorem-appearance","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^cjkmainfont$|^cjkmainfont$|^font_paths$|^fontPaths$|^cjkoptions$|^cjkoptions$|^footnotes_hover$|^footnotesHover$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^list_tables$|^listTables$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^brand_mode$|^brandMode$|^page_layout$|^pageLayout$|^page_width$|^pageWidth$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^revealjs_url$|^revealjsUrl$|^s5_url$|^s5Url$|^slidy_url$|^slidyUrl$|^slideous_url$|^slideousUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_subarticles$|^notebookSubarticles$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_meta$|^titleMeta$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^top_level_division$|^topLevelDivision$|^ojs_engine$|^ojsEngine$|^reference_doc$|^referenceDoc$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^pdf_standard$|^pdfStandard$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$))","tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":5569,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":214867,"type":"ref","$ref":"quarto-dev-schema","description":""}],"description":"be all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"}],"description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref","$id":"front-matter"},"project-config-fields":{"_internalId":214963,"type":"object","description":"be an object","properties":{"project":{"_internalId":214935,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Files to render (defaults to all files)"},"render":{"_internalId":214883,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Working directory for computations"},"execute-dir":{"_internalId":214886,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Output directory"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"HTML library (JS/CSS/etc.) directory"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"Additional file resources to be copied to output directory"},"resources":{"_internalId":214898,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},{"_internalId":214897,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":214903,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Options for quarto preview"},"preview":{"_internalId":214908,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Scripts to run as a pre-render step"},"pre-render":{"_internalId":214916,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214915,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Scripts to run as a post-render step"},"post-render":{"_internalId":214924,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214923,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Array of paths used to detect the project type within a directory"},"detect":{"_internalId":214934,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":214933,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Website configuration."}},"patternProperties":{},"closed":true,"documentation":"Project type (default, website,\nbook, or manuscript)","tags":{"description":"Project configuration."}},"website":{"_internalId":214938,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Book configuration.","tags":{"description":"Website configuration."}},"book":{"_internalId":1704,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Description metadata for HTML version of book"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"The path to the favicon for this website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Base URL for published website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Base URL for website source code repository"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the target attribute for repo links"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Subdirectory of repository containing website"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Branch of website source code (defaults to main)"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"URL to use for the ‘report an issue’ repository action."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Links to source repository actions"},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Enable Google Analytics for this website"},"google-analytics":{"_internalId":535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":534,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"Storage options for Google Analytics data"},"storage":{"_internalId":526,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Anonymize the user ip address."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"The version number of Google Analytics to use."},"version":{"_internalId":533,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The Google tracking Id or measurement Id of this website."},"plausible-analytics":{"_internalId":545,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":544,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Provides an announcement displayed at the top of the page."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Path to a file containing the Plausible Analytics script snippet"},"announcement":{"_internalId":575,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":574,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"Whether this announcement may be dismissed by the user."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The icon to display in the announcement"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The position of the announcement."},"position":{"_internalId":568,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"type":{"_internalId":573,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The content of the announcement"},"cookie-consent":{"_internalId":607,"type":"anyOf","anyOf":[{"_internalId":580,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":606,"type":"object","description":"be an object","properties":{"type":{"_internalId":587,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The style of the consent banner that is displayed"},"style":{"_internalId":590,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"palette":{"_internalId":593,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"The url to the website’s cookie or privacy policy."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Provide full text search for website"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"The type of consent that should be requested"},"search":{"_internalId":694,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":693,"type":"object","description":"be an object","properties":{"location":{"_internalId":616,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Type of search UI (overlay or textbox)"},"type":{"_internalId":619,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Number of matches to display (defaults to 20)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Matches after which to collapse additional results"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Provide button for copying search link"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"keyboard-shortcut":{"_internalId":641,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_internalId":640,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":651,"type":"anyOf","anyOf":[{"_internalId":648,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Use external Algolia search index"},"algolia":{"_internalId":692,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The unique ID used by Algolia to identify your application"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The Search-Only API key to use to connect to Algolia"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Enable tracking of Algolia analytics events"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Field that contains the URL of index entries"},"index-fields":{"_internalId":688,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the title of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the text of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the section of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true},"params":{"_internalId":691,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Top navigation options"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The name of the index to use when performing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Location for search widget (navbar or\nsidebar)"},"navbar":{"_internalId":748,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":747,"type":"object","description":"be an object","properties":{"title":{"_internalId":707,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo":{"_internalId":710,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"The navbar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"Include a search box in the navbar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Always show the navbar (keeping it pinned)."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"collapse-below":{"_internalId":727,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"List of items for the left side of the navbar."},"left":{"_internalId":733,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":732,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the right side of the navbar."},"right":{"_internalId":739,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":738,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"toggle-position":{"_internalId":744,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Side navigation options"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The navbar title. Uses the project title if none is specified."},"sidebar":{"_internalId":819,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":818,"type":"anyOf","anyOf":[{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":817,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":816,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar title. Uses the project title if none is specified."},"title":{"_internalId":765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo":{"_internalId":768,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alternate text for the logo image."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Include a search control in the sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"List of sidebar tools"},"tools":{"_internalId":780,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":779,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of items for the sidebar"},"contents":{"_internalId":783,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The style of sidebar (docked or\nfloating)."},"style":{"_internalId":786,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The sidebar’s background color (named or hex color)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"alignment":{"_internalId":799,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Markdown to place above sidebar content (text or file path)"},"header":{"_internalId":809,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":808,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"},"footer":{"_internalId":815,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":814,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The identifier for this sidebar."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert below each page’s body."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place above margin content (text or file path)"},"margin-header":{"_internalId":829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"margin-footer":{"_internalId":835,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":834,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Provide next and previous article links in footer"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide a ‘back to top’ navigation button"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Shared page footer"},"page-footer":{"_internalId":849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":848,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"comments":{"_internalId":858,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":866,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":865,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish twitter card metadata"},"twitter-card":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":873,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"A list of other links to appear below the TOC."},"other-links":{"_internalId":879,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of code links to appear with this document."},"code-links":{"_internalId":889,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":888,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of input documents that should be treated as drafts"},"drafts":{"_internalId":897,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":896,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"How to handle drafts that are encountered."},"draft-mode":{"_internalId":902,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Book subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"author":{"_internalId":922,"type":"anyOf","anyOf":[{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":918,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Book publication date"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Format string for dates in the book"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book abstract"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book part and chapter files"},"chapters":{"_internalId":935,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book appendix files"},"appendices":{"_internalId":940,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book references file"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"sharing":{"_internalId":955,"type":"anyOf","anyOf":[{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":954,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":953,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":962,"type":"anyOf","anyOf":[{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"},{"_internalId":961,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":960,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Custom tools for navbar or sidebar"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":968,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":967,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"The Digital Object Identifier for this book."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"A url to the abstract for this item."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Date the item has been accessed."},"accessed":{"_internalId":1413,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Archive storing the item"},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Collection the item is part of within an archive."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Geographic location of the archive."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Date the item was initially available"},"available-date":{"_internalId":1436,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Call number (to locate the item in a library)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chair":{"_internalId":1441,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"chapter-number":{"_internalId":1444,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"citation-number":{"_internalId":1453,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book).","completions":[]},"collection-editor":{"_internalId":1456,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-number":{"_internalId":1459,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"compiler":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1467,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-author":{"_internalId":1470,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Title of the container holding the item."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Short/abbreviated form of container-title;"},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography.","completions":[]},"contributor":{"_internalId":1477,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"curator":{"_internalId":1480,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Director (e.g. of a film)."},"director":{"_internalId":1485,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1494,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"The editor of the item."},"editor":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editorial-director":{"_internalId":1500,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Combined editor and translator of a work."},"editor-translator":{"_internalId":1503,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Date the event related to an item took place."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1510,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Executive producer of the item (e.g. of a television series)."},"executive-producer":{"_internalId":1517,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"first-reference-note-number":{"_internalId":1522,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"A url to the full text for this item."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Type, class, or subtype of the item"},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Guest (e.g. on a TV show or podcast)."},"guest":{"_internalId":1529,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"host":{"_internalId":1532,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"A value which uniquely identifies this item."},"id":{"_internalId":1539,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"illustrator":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1545,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Serial Number."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Issue number of the item or container holding the item"},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1560,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Date the item was issued/published."},"issued":{"_internalId":1563,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The language of the item (used only for citation of the item)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The license information applicable to an item."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"A cite-specific pinpointer within the item."},"locator":{"_internalId":1574,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Narrator (e.g. of an audio book)."},"narrator":{"_internalId":1579,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Number identifying the item (e.g. a report number)."},"number":{"_internalId":1584,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of pages of the cited item."},"number-of-pages":{"_internalId":1587,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"number-of-volumes":{"_internalId":1590,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"organizer":{"_internalId":1593,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"The original creator of a work."},"original-author":{"_internalId":1596,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"Issue date of the original version."},"original-date":{"_internalId":1599,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page":{"_internalId":1608,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-first":{"_internalId":1611,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1614,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-number":{"_internalId":1617,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Title of the specific part of an item being cited."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"A url to the pdf for this item."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"performer":{"_internalId":1624,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"PubMed Central reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Printing number of the item or container holding the item."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"producer":{"_internalId":1642,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"A public url for this item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The publisher of the item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The geographic location of the publisher."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Recipient (e.g. of a letter)."},"recipient":{"_internalId":1651,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Author of the item reviewed by the current item."},"reviewed-author":{"_internalId":1654,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Title of the item reviewed by the current item."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Scale of e.g. a map or model."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"script-writer":{"_internalId":1663,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"section":{"_internalId":1666,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Creator of a series (e.g. of a television series)."},"series-creator":{"_internalId":1669,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"submitted":{"_internalId":1676,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"supplement-number":{"_internalId":1679,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Short/abbreviated form oftitle."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Translator","completions":[]},"translator":{"_internalId":1684,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"type":{"_internalId":1687,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1696,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume":{"_internalId":1699,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Manuscript configuration"}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Book title"},"manuscript":{"_internalId":214948,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"internal-schema-hack","tags":{"description":"Manuscript configuration"}},"type":{"_internalId":214951,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","tags":{"description":"internal-schema-hack","hidden":true}},"engines":{"_internalId":214962,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":214961,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":214960,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"Visual style for theorem environments in Typst output.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."}}},"patternProperties":{},"$id":"project-config-fields"},"project-config":{"_internalId":214994,"type":"allOf","allOf":[{"_internalId":214992,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":214989,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":214990,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"},"profile":{"_internalId":214991,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":214989,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":214993,"type":"ref","$ref":"front-matter","description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"},{"_internalId":214964,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":215042,"type":"object","description":"be an object","properties":{"label":{"_internalId":214996,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":214997,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":214998,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":214999,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":215000,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":215001,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":215002,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":215003,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":215004,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":215005,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":215006,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":215007,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":215008,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":215009,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":215010,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":215011,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":215012,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":215013,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":215014,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":215015,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":215016,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":215017,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":215018,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":215019,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":215020,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":215021,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":215022,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":215023,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":215024,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":215025,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":215026,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":215027,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":215028,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":215029,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":215030,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":215031,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":215032,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":215033,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":215034,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":215035,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":215036,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":215037,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":215038,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":215039,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":215040,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":215041,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-markdown"},"engine-knitr":{"_internalId":215137,"type":"object","description":"be an object","properties":{"label":{"_internalId":215044,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":215045,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":215046,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":215047,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":215048,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":215049,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":215050,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":215051,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":215052,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":215053,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":215054,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":215055,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":215056,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":215057,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":215058,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":215059,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":215060,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":215061,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":215062,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":215063,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":215064,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":215065,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":215066,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":215067,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":215068,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":215069,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":215070,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":215071,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":215072,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":215073,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":215074,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":215075,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":215076,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":215077,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":215078,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":215079,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":215080,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":215081,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":215082,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":215083,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":215084,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":215085,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":215086,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":215087,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":215088,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":215089,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":215090,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":215091,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":215092,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":215093,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":215094,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":215095,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":215096,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":215097,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":215098,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":215099,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":215100,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":215101,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":215102,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":215103,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":215104,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":215105,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":215106,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":215107,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":215108,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":215109,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":215110,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":215111,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":215112,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":215113,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":215114,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":215115,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":215116,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":215117,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":215118,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":215119,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":215120,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":215121,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":215122,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":215123,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":215124,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":215125,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":215126,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":215127,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":215128,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":215129,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":215130,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":215131,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":215132,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":215133,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":215134,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":215135,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":215136,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-error","description":"quarto-resource-cell-textoutput-attr-error"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,cache,cache-path,cache-vars,cache-globals,cache-lazy,cache-rebuild,cache-comments,dependson,autodep,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,tidy,tidy-opts,collapse,prompt,highlight,class-source,attr-source,fig-width,fig-height,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,fig-format,fig-dpi,fig-asp,out-width,out-height,fig-keep,fig-show,out-extra,external,sanitize,interval,aniopts,animation-hook,child,file,code,purl,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location,message,results,comment,class-output,attr-output,class-warning,attr-warning,class-message,attr-message,class-error,attr-error","type":"string","pattern":"(?!(^cache_path$|^cachePath$|^cache_vars$|^cacheVars$|^cache_globals$|^cacheGlobals$|^cache_lazy$|^cacheLazy$|^cache_rebuild$|^cacheRebuild$|^cache_comments$|^cacheComments$|^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^tidy_opts$|^tidyOpts$|^class_source$|^classSource$|^attr_source$|^attrSource$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^out_width$|^outWidth$|^out_height$|^outHeight$|^fig_keep$|^figKeep$|^fig_show$|^figShow$|^out_extra$|^outExtra$|^animation_hook$|^animationHook$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^class_output$|^classOutput$|^attr_output$|^attrOutput$|^class_warning$|^classWarning$|^attr_warning$|^attrWarning$|^class_message$|^classMessage$|^attr_message$|^attrMessage$|^class_error$|^classError$|^attr_error$|^attrError$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-knitr"},"engine-jupyter":{"_internalId":215190,"type":"object","description":"be an object","properties":{"label":{"_internalId":215139,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":215140,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":215141,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":215142,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":215143,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":215144,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":215145,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":215146,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":215147,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":215148,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":215149,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":215150,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":215151,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":215152,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":215153,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":215154,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":215155,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":215156,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":215157,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":215158,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":215159,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":215160,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":215161,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":215162,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":215163,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":215164,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":215165,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":215166,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":215167,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":215168,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":215169,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":215170,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":215171,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":215172,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":215173,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":215174,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":215175,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":215176,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":215177,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":215178,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":215179,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":215180,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":215181,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":215182,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":215183,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":215184,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":215185,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":215186,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":215187,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":215188,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":215189,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,tags,id,export,title,padding,expandable,width,height,context,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-jupyter"},"engine-julia":{"_internalId":215238,"type":"object","description":"be an object","properties":{"label":{"_internalId":215192,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":215193,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":215194,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":215195,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":215196,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":215197,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":215198,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":215199,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":215200,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":215201,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":215202,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":215203,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":215204,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":215205,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":215206,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":215207,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":215208,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":215209,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":215210,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":215211,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":215212,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":215213,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":215214,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":215215,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":215216,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":215217,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":215218,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":215219,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":215220,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":215221,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":215222,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":215223,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":215224,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":215225,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":215226,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":215227,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":215228,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":215229,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":215230,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":215231,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":215232,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":215233,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":215234,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":215235,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":215236,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":215237,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-julia"},"plugin-reveal":{"_internalId":7,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"name":{"type":"string","description":"be a string"},"register":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"script":{"_internalId":4,"type":"anyOf","anyOf":[{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},{"_internalId":3,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object"},"stylesheet":{"_internalId":6,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string"},"self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention path,name,register,script,stylesheet,self-contained","type":"string","pattern":"(?!(^self_contained$|^selfContained$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"plugin-reveal"}} \ No newline at end of file diff --git a/src/resources/editor/tools/yaml/web-worker.js b/src/resources/editor/tools/yaml/web-worker.js index 503304f0592..1b308b498a3 100644 --- a/src/resources/editor/tools/yaml/web-worker.js +++ b/src/resources/editor/tools/yaml/web-worker.js @@ -8415,6 +8415,19 @@ try { } ] }, + { + id: "filter-entry-point", + enum: [ + "pre-ast", + "post-ast", + "pre-quarto", + "post-quarto", + "pre-render", + "post-render", + "pre-finalize", + "post-finalize" + ] + }, { id: "pandoc-format-filters", arrayOf: { @@ -8437,14 +8450,7 @@ try { type: "string", path: "path", at: { - enum: [ - "pre-ast", - "post-ast", - "pre-quarto", - "post-quarto", - "pre-render", - "post-render" - ] + ref: "filter-entry-point" } }, required: [ @@ -20176,7 +20182,8 @@ try { default: false, tags: { formats: [ - "$pdf-all" + "$pdf-all", + "typst" ] }, description: "Print a list of figures in the document." @@ -20187,7 +20194,8 @@ try { default: false, tags: { formats: [ - "$pdf-all" + "$pdf-all", + "typst" ] }, description: "Print a list of tables in the document." @@ -20340,7 +20348,26 @@ try { arrayOf: "path" }, filters: { - arrayOf: "path" + arrayOf: { + anyOf: [ + "path", + { + object: { + properties: { + path: { + schema: "path" + }, + at: { + ref: "filter-entry-point" + } + }, + required: [ + "path" + ] + } + } + ] + } }, formats: { schema: "object" @@ -23960,6 +23987,10 @@ try { short: "When used in conjunction with pdfa, specifies the output\nintent for the colors.", long: "When used in conjunction with pdfa, specifies the output\nintent for the colors, for example\nISO coated v2 300\\letterpercent\\space (ECI)\nIf left unspecified, sRGB IEC61966-2.1 is used as\ndefault." }, + { + short: "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", + long: "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." + }, "Document bibliography (BibTeX or CSL). May be a single file or a list\nof files", "Citation Style Language file to use for formatting references.", "Enables a hover popup for citation that shows the reference\ninformation.", @@ -24651,6 +24682,10 @@ try { "Inner (left) margin geometry.", "Outer (right) margin geometry.", "Minimum vertical spacing between margin notes (default: 8pt).", + { + short: "Visual style for theorem environments in Typst output.", + long: "Controls how theorems, lemmas, definitions, etc. are rendered: -\nsimple: Plain text with bold title and italic body\n(default) - fancy: Colored boxes using brand colors -\nclouds: Rounded colored background boxes -\nrainbow: Colored left border with colored title" + }, "Project configuration.", "Project type (default, website,\nbook, or manuscript)", "Files to render (defaults to all files)", @@ -25002,11 +25037,7 @@ try { "Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).", "Manuscript configuration", "internal-schema-hack", - "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019.", - { - short: "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", - long: "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." - } + "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019." ], "schema/external-schemas.yml": [ { @@ -25231,16 +25262,17 @@ try { "(*", "*)" ], + q: "/", rust: "//", mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 219977, + _internalId: 220795, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 219969, + _internalId: 220787, type: "enum", enum: [ "png", @@ -25256,7 +25288,7 @@ try { exhaustiveCompletions: true }, theme: { - _internalId: 219976, + _internalId: 220794, type: "anyOf", anyOf: [ { @@ -25371,6 +25403,27 @@ try { short: "Advanced geometry settings for Typst margin layout.", long: "Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n" } + }, + { + name: "theorem-appearance", + schema: { + enum: [ + "simple", + "fancy", + "clouds", + "rainbow" + ] + }, + default: "simple", + tags: { + formats: [ + "typst" + ] + }, + description: { + short: "Visual style for theorem environments in Typst output.", + long: "Controls how theorems, lemmas, definitions, etc. are rendered:\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n" + } } ] }; @@ -34521,6 +34574,7 @@ ${tidyverseInfo( ojs: "//", apl: "\u235D", ocaml: ["(*", "*)"], + q: "/", rust: "//" }; function escapeRegExp(str2) { diff --git a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json index 5312fd7e4b7..bab8f951c9b 100644 --- a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json +++ b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json @@ -1386,6 +1386,19 @@ } ] }, + { + "id": "filter-entry-point", + "enum": [ + "pre-ast", + "post-ast", + "pre-quarto", + "post-quarto", + "pre-render", + "post-render", + "pre-finalize", + "post-finalize" + ] + }, { "id": "pandoc-format-filters", "arrayOf": { @@ -1408,14 +1421,7 @@ "type": "string", "path": "path", "at": { - "enum": [ - "pre-ast", - "post-ast", - "pre-quarto", - "post-quarto", - "pre-render", - "post-render" - ] + "ref": "filter-entry-point" } }, "required": [ @@ -13147,7 +13153,8 @@ "default": false, "tags": { "formats": [ - "$pdf-all" + "$pdf-all", + "typst" ] }, "description": "Print a list of figures in the document." @@ -13158,7 +13165,8 @@ "default": false, "tags": { "formats": [ - "$pdf-all" + "$pdf-all", + "typst" ] }, "description": "Print a list of tables in the document." @@ -13311,7 +13319,26 @@ "arrayOf": "path" }, "filters": { - "arrayOf": "path" + "arrayOf": { + "anyOf": [ + "path", + { + "object": { + "properties": { + "path": { + "schema": "path" + }, + "at": { + "ref": "filter-entry-point" + } + }, + "required": [ + "path" + ] + } + } + ] + } }, "formats": { "schema": "object" @@ -16931,6 +16958,10 @@ "short": "When used in conjunction with pdfa, specifies the output\nintent for the colors.", "long": "When used in conjunction with pdfa, specifies the output\nintent for the colors, for example\nISO coated v2 300\\letterpercent\\space (ECI)\nIf left unspecified, sRGB IEC61966-2.1 is used as\ndefault." }, + { + "short": "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", + "long": "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." + }, "Document bibliography (BibTeX or CSL). May be a single file or a list\nof files", "Citation Style Language file to use for formatting references.", "Enables a hover popup for citation that shows the reference\ninformation.", @@ -17622,6 +17653,10 @@ "Inner (left) margin geometry.", "Outer (right) margin geometry.", "Minimum vertical spacing between margin notes (default: 8pt).", + { + "short": "Visual style for theorem environments in Typst output.", + "long": "Controls how theorems, lemmas, definitions, etc. are rendered: -\nsimple: Plain text with bold title and italic body\n(default) - fancy: Colored boxes using brand colors -\nclouds: Rounded colored background boxes -\nrainbow: Colored left border with colored title" + }, "Project configuration.", "Project type (default, website,\nbook, or manuscript)", "Files to render (defaults to all files)", @@ -17973,11 +18008,7 @@ "Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).", "Manuscript configuration", "internal-schema-hack", - "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.", - { - "short": "PDF conformance standard (e.g., ua-2, a-2b, 1.7)", - "long": "Specifies PDF conformance standards and/or version for the\noutput.\nAccepts a single value or array of values:\nPDF versions (both Typst and LaTeX):\n1.4, 1.5, 1.6, 1.7,\n2.0\nPDF/A standards (both engines): a-1b,\na-2a, a-2b, a-2u,\na-3a, a-3b, a-3u,\na-4, a-4f\nPDF/A standards (Typst only): a-1a,\na-4e\nPDF/UA standards: ua-1 (Typst),\nua-2 (LaTeX)\nPDF/X standards (LaTeX only): x-4,\nx-4p, x-5g, x-5n,\nx-5pg, x-6, x-6n,\nx-6p\nExample: pdf-standard: [a-2b, ua-2] for accessible\narchival PDF." - } + "List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’." ], "schema/external-schemas.yml": [ { @@ -18202,16 +18233,17 @@ "(*", "*)" ], + "q": "/", "rust": "//", "mermaid": "%%" }, "handlers/mermaid/schema.yml": { - "_internalId": 219977, + "_internalId": 220795, "type": "object", "description": "be an object", "properties": { "mermaid-format": { - "_internalId": 219969, + "_internalId": 220787, "type": "enum", "enum": [ "png", @@ -18227,7 +18259,7 @@ "exhaustiveCompletions": true }, "theme": { - "_internalId": 219976, + "_internalId": 220794, "type": "anyOf", "anyOf": [ { @@ -18342,6 +18374,27 @@ "short": "Advanced geometry settings for Typst margin layout.", "long": "Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n" } + }, + { + "name": "theorem-appearance", + "schema": { + "enum": [ + "simple", + "fancy", + "clouds", + "rainbow" + ] + }, + "default": "simple", + "tags": { + "formats": [ + "typst" + ] + }, + "description": { + "short": "Visual style for theorem environments in Typst output.", + "long": "Controls how theorems, lemmas, definitions, etc. are rendered:\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n" + } } ] } \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/README.md b/src/resources/extension-subtrees/orange-book/README.md new file mode 100644 index 00000000000..5e78a573859 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/README.md @@ -0,0 +1,48 @@ +# Orange Book Format Extension for Quarto + +A Quarto format extension that provides Typst book support using the [orange-book](https://typst.app/universe/package/orange-book) package. + +## Installation + +Orange-book will be bundled with Quarto 1.9 and will be the default extension for Typst book projects. + +However, if you want to explicitly install and use this extension + +```bash +quarto add quarto-ext/orange-book +``` + +## Usage + +In your `_quarto.yml`: + +```yaml +project: + type: book + +format: orange-book-typst +``` + +## Features + +- Transforms book parts into `#part[...]` calls for proper orange-book formatting +- Handles appendix sections with `#show: appendices.with(...)` +- Chapter-based numbering for equations, callouts, and cross-references +- Integrates with Quarto's brand system for colors and logos + +## Requirements + +- Quarto >= 1.9.17 +- The `orange-book` Typst package (automatically imported and bundled with [typst-gather](https://prerelease.quarto.org/docs/advanced/typst/typst-gather.html)) + +## How It Works + +This extension: + +1. Provides template partials (`typst-show.typ`, `numbering.typ`) that configure the orange-book package +2. Includes a Lua filter (`orange-book.lua`) that transforms Quarto's book structure into orange-book-specific Typst commands +3. Uses Quarto's `file_metadata` API to detect book item types (parts, chapters, appendices) + +## License + +MIT diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/_extension.yml b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/_extension.yml new file mode 100644 index 00000000000..e4e39f360e1 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/_extension.yml @@ -0,0 +1,14 @@ +title: Typst Orange Book Format +author: Quarto +version: 0.1.0 +quarto-required: ">=1.9.17" +contributes: + formats: + typst: + template-partials: + - numbering.typ + - page.typ + - typst-show.typ + filters: + - path: orange-book.lua + at: post-quarto diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/numbering.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/numbering.typ new file mode 100644 index 00000000000..2f0e3ce2459 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/numbering.typ @@ -0,0 +1,38 @@ +// Chapter-based numbering for books with appendix support +#let equation-numbering = it => { + let pattern = if state("appendix-state", none).get() != none { "(A.1)" } else { "(1.1)" } + numbering(pattern, counter(heading).get().first(), it) +} +#let callout-numbering = it => { + let pattern = if state("appendix-state", none).get() != none { "A.1" } else { "1.1" } + numbering(pattern, counter(heading).get().first(), it) +} +#let subfloat-numbering(n-super, subfloat-idx) = { + let chapter = counter(heading).get().first() + let pattern = if state("appendix-state", none).get() != none { "A.1a" } else { "1.1a" } + numbering(pattern, chapter, n-super, subfloat-idx) +} +// Theorem configuration for theorion +// Chapter-based numbering (H1 = chapters) +#let theorem-inherited-levels = 1 + +// Appendix-aware theorem numbering +#let theorem-numbering(loc) = { + if state("appendix-state", none).at(loc) != none { "A.1" } else { "1.1" } +} + +// Theorem render function +// Note: brand-color is not available at this point in template processing +#let theorem-render(prefix: none, title: "", full-title: auto, body) = { + block( + width: 100%, + inset: (left: 1em), + stroke: (left: 2pt + black), + )[ + #if full-title != "" and full-title != auto and full-title != none { + strong[#full-title] + linebreak() + } + #body + ] +} diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/orange-book.lua b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/orange-book.lua new file mode 100644 index 00000000000..4729030a98f --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/orange-book.lua @@ -0,0 +1,69 @@ +-- orange-book.lua +-- Orange-book specific part and appendix handling for Typst books + +local function is_typst_book() + local file_state = quarto.doc.file_metadata() + return quarto.doc.is_format("typst") and + file_state ~= nil and + file_state.file ~= nil +end + +local header_filter = { + Header = function(el) + local file_state = quarto.doc.file_metadata() + + if not is_typst_book() then + return nil + end + + if file_state == nil or file_state.file == nil then + return nil + end + + local file = file_state.file + local bookItemType = file.bookItemType + + if el.level ~= 1 or bookItemType == nil then + return nil + end + + -- Handle parts + if bookItemType == "part" then + return pandoc.RawBlock('typst', '#part[' .. pandoc.utils.stringify(el.content) .. ']') + end + + -- Handle appendices + if bookItemType == "appendix" then + -- First appendix triggers the show rule with localized "Appendices" title + if file.bookItemNumber == 1 or file.bookItemNumber == nil then + -- Get localized title from language settings + local language = quarto.doc.language + local appendicesTitle = (language and language["section-title-appendices"]) or "Appendices" + + -- Use hide-parent: true to work around orange-book bug where unnumbered headings + -- (like Bibliography) trigger duplicate "Appendices" TOC entries. + local appendixStart = pandoc.RawBlock('typst', + '#show: appendices.with("' .. appendicesTitle .. '", hide-parent: true)') + + -- If this is the synthetic "Appendices" divider heading (has .unnumbered class), + -- emit our own Appendices heading for TOC display + if el.classes:includes("unnumbered") then + local appendicesHeading = pandoc.RawBlock('typst', + '#heading(level: 1, numbering: none)[' .. appendicesTitle .. ']') + return {appendixStart, appendicesHeading} + end + + return {appendixStart, el} + end + end + + return nil + end +} + +-- Combine with file_metadata_filter so book metadata markers are parsed +-- during this filter's document traversal (needed for bookItemType, etc.) +return quarto.utils.combineFilters({ + quarto.utils.file_metadata_filter(), + header_filter +}) diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/page.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/page.typ new file mode 100644 index 00000000000..488bf4714c8 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/page.typ @@ -0,0 +1,15 @@ +#set page( + paper: $if(papersize)$"$papersize$"$else$"us-letter"$endif$, +$if(margin-geometry)$ + // Margins handled by marginalia.setup in typst-show.typ AFTER book.with() +$elseif(margin)$ + margin: ($for(margin/pairs)$$margin.key$: $margin.value$,$endfor$), +$else$ + margin: (x: 1.25in, y: 1.25in), +$endif$ + numbering: $if(page-numbering)$"$page-numbering$"$else$none$endif$, + columns: $if(columns)$$columns$$else$1$endif$, +) +// Logo is handled by orange-book's cover page, not as a page background +// NOTE: marginalia.setup is called in typst-show.typ AFTER book.with() +// to ensure marginalia's margins override the book format's default margins diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-gather.toml b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-gather.toml new file mode 100644 index 00000000000..8eca667b738 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-gather.toml @@ -0,0 +1,17 @@ +# typst-gather configuration +# Run: quarto call typst-gather + +destination = "typst/packages" + +discover = ["numbering.typ", "page.typ", "typst-show.typ"] + +# Preview packages are auto-discovered from imports. +# Uncomment to pin specific versions: +# [preview] +# cetz = "0.4.1" + +# Local packages (@local namespace) must be configured manually. +# Found @local imports: +# @local/orange-book:0.7.1 (in typst-show.typ) +[local] +orange-book = "/Users/gordon/src/tb-work/templates/orange-book" diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-show.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-show.typ new file mode 100644 index 00000000000..2bc866e331e --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst-show.typ @@ -0,0 +1,61 @@ +#import "@local/orange-book:0.7.1": book, part, chapter, appendices + +#show: book.with( +$if(title)$ + title: [$title$], +$endif$ +$if(subtitle)$ + subtitle: [$subtitle$], +$endif$ +$if(by-author)$ + author: "$for(by-author)$$it.name.literal$$sep$, $endfor$", +$endif$ +$if(date)$ + date: "$date$", +$endif$ +$if(lang)$ + lang: "$lang$", +$endif$ + main-color: brand-color.at("primary", default: blue), + logo: { + let logo-info = brand-logo.at("medium", default: none) + if logo-info != none { image(logo-info.path, alt: logo-info.at("alt", default: none)) } + }, +$if(toc-depth)$ + outline-depth: $toc-depth$, +$endif$ +$if(lof)$ + list-of-figure-title: "$if(crossref.lof-title)$$crossref.lof-title$$else$$crossref-lof-title$$endif$", +$endif$ +$if(lot)$ + list-of-table-title: "$if(crossref.lot-title)$$crossref.lot-title$$else$$crossref-lot-title$$endif$", +$endif$ +$if(margin-geometry)$ + padded-heading-number: false, +$endif$ +) + +$if(margin-geometry)$ +// Configure marginalia page geometry for book context +// Geometry computed by Quarto's meta.lua filter (typstGeometryFromPaperWidth) +// IMPORTANT: This must come AFTER book.with() to override the book format's margin settings +#import "@preview/marginalia:0.3.1" as marginalia + +#show: marginalia.setup.with( + inner: ( + far: $margin-geometry.inner.far$, + width: $margin-geometry.inner.width$, + sep: $margin-geometry.inner.separation$, + ), + outer: ( + far: $margin-geometry.outer.far$, + width: $margin-geometry.outer.width$, + sep: $margin-geometry.outer.separation$, + ), + top: $if(margin.top)$$margin.top$$else$1.25in$endif$, + bottom: $if(margin.bottom)$$margin.bottom$$else$1.25in$endif$, + // CRITICAL: Enable book mode for recto/verso awareness + book: true, + clearance: $margin-geometry.clearance$, +) +$endif$ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/LICENSE b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/LICENSE new file mode 100644 index 00000000000..fc06cc4fe49 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/LICENSE @@ -0,0 +1,14 @@ +MIT No Attribution + +Permission is hereby granted, free of charge, to any person obtaining a copy of this +software and associated documentation files (the "Software"), to deal in the Software +without restriction, including without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/README.md b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/README.md new file mode 100644 index 00000000000..6c165a34c5b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/README.md @@ -0,0 +1,72 @@ +# orange-book +A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel https://www.latextemplates.com/template/legrand-orange-book. + +## Usage +You can use this template in the Typst web app by clicking "Start from template" +on the dashboard and searching for `orange-book`. + +Alternatively, you can use the CLI to kick this project off using the command +``` +typst init @preview/orange-book +``` + +Typst will create a new directory with all the files needed to get you started. + +## Configuration +This template exports the `book` function with the following named arguments: + +- `title`: The book's title as content. +- `subtitle`: The book's subtitle as content. +- `author`: Content or an array of content to specify the author. +- `paper-size`: Defaults to `a4`. Specify a [paper size + string](https://typst.app/docs/reference/layout/page/#parameters-paper) to + change the page format. +- `copyright`: Details about the copyright or + `none`. +- `lowercase-references`: True to have references in lowercase (Eg. table 1.1) + +The function also accepts a single, positional argument for the body of the +book. + +The template will initialize your package with a sample call to the `book` +function in a show rule. If you, however, want to change an existing project to +use this template, you can add a show rule like this at the top of your file: + +```typ +#import "@preview/orange-book:0.7.0": book + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: "Anno scolastico 2023-2024", + author: "Goro Akechi", + main-color: rgb("#F36619"), + lang: "en", + cover: image("./background.svg"), + image-index: image("./orange1.jpg"), + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + supplement-part: "Part", + part-style: 0, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ], + lowercase-references: false +) + +// Your content goes below. +``` diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/background.svg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/background.svg new file mode 100644 index 00000000000..2be7ca380ce --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/background.svg @@ -0,0 +1,132 @@ + + + + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/creodocs_logo.svg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/creodocs_logo.svg new file mode 100644 index 00000000000..1adb81a4621 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/creodocs_logo.svg @@ -0,0 +1,386 @@ + + + + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/main.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/main.typ new file mode 100644 index 00000000000..09edbad808f --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/main.typ @@ -0,0 +1,380 @@ +#import "../lib.typ": * + +//#set text(font: "Linux Libertine") +//#set text(font: "TeX Gyre Pagella") +//#set text(font: "Lato") +//#show math.equation: set text(font: "Fira Math") +//#show math.equation: set text(font: "Lato Math") +//#show raw: set text(font: "Fira Code") + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: datetime.today, + author: "Goro Akechi", + main-color: rgb("#F36619"), + lang: "en", + cover: image("./background.svg"), + image-index: image("./orange1.jpg"), + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + supplement-part: "Part", + part-style: 0, + heading-style: 0, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ], + lowercase-references: false +) + +// Custom thmbox +#let solution(name: none, body) = { + context{ + thmbox("solution","Solution", + stroke: (left: 4pt + green), + radius: 0em, + inset: 0.65em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(fill: green, weight: "bold", x), + fill: green.lighten(90%), + base_level: 1)(name:name, body) + } +} + +#part("Part One Title") + +#chapter("Sectioning Examples", image: image("./orange2.jpg"), l: "chap1") +#index("Sectioning") + +== Section Title +#index("Sectioning!Sections") + +#lorem(50) +#footnote[Footnote example text...Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, +imperdiet urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie.] + +#lorem(50) + +=== Subsection Title +#index("Sectioning!Subsections") + +#lorem(50) + +#lorem(50) + +#lorem(50) + +==== Subsubsection Title +#index("Sectioning!Subsubsections") + +#lorem(100) + +===== Paragraph Title +#index("Sectioning!Paragraphs") +#lorem(50) +#lorem(50) +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#heading(level:2, numbering: none, "Unnumbered Section", outlined: false) +#heading(level:3, numbering: none, "Unnumbered Subsection", outlined: false) +#heading(level:4, numbering: none, "Unnumbered Subsubsection", outlined: false) + +// Chapter can also be defined in this way +#update-heading-image(image: image("./orange2.jpg")) += In-text Element Examples + +== Referencing Publications +#index("Citation") +This statement requires citation @Smith:2022jd; this one is more specific @Smith:2021qr[page.~162]. +== Link Examples +#index("Links") +This is a URL link: #link("https://www.latextemplates.com")[LaTeX Templates]. This is an email link: #link("mailto:example@example.com")[example\@example.com]. This is a +monospaced URL link: https://www.LaTeXTemplates.com. +== Lists +#index("Lists") +Lists are useful to present information in a concise and/or ordered way. +=== Numbered List +#index("Lists!Numbered List") ++ First numbered item + + First indented numbered item + + Second indented numbered item + + First second-level indented numbered item + + Second second-level indented numbered item +2. Second numbered item +3. Third numbered item +=== Bullet Point List +#index("Lists!Bullet Points") +- First bullet point item + - First indented bullet point item + - Second indented bullet point item + - First second-level indented bullet point item +- Second bullet point item +- Third bullet point item +=== Descriptions and Definitions +#index("Lists!Descriptions and Definitions") +/ Name: Definition +/ Word: Definition +/ Comment: Elaboration +== International Support +àáâäãåèéêëìíîïòóôöõøùúûüÿýñçˇcšž \ +ÀÁÂÄÃÅÈÉÊËÌÍÎÏÒÓÔÖÕØÙÚÛÜŸÝÑ \ +ßÇŒÆ ˇCŠŽ +== Ligatures +fi fj fl ffl ffi Ty + +== Referencing Chapters +#index("Referencing") +This statement references to another chapter @chap1. This statement references to another heading @heading1. This statement references to another heading @heading2. + +#part("Part Two Title") + +#chapter("Mathematics", image: image("./orange2.jpg")) + +== Theorems +#index("Theorems") +=== Several equations +#index("Theorems!Several equations") +This is a theorem consisting of several equations. +#theorem(name: "Name of the theorem")[ + In $E=bb(R)^n$ all norms are equivalent. It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] + +=== Single Line +#index("Theorems!Single Line") +This is a theorem consisting of just one line. +#theorem()[ + A set $scr(D)(G)$ in dense in $L^2(G)$, $|dot|_0$. +] +== Definitions +#index("Definitions") +A definition can be mathematical or it could define a concept. +#definition(name: "Definition name")[ + Given a vector space $E$, a norm on $E$ is an application, denoted $norm(dot)$, $E$ in $bb(R)^+ = [0,+∞[$ such that: + $ norm(bold(x)) = 0 arrow.r.double bold(x) = bold(0) $ + $ norm(lambda bold(x)) = abs(lambda) dot norm(bold(x)) $ + $ norm(bold(x) + bold(y)) lt.eq norm(bold(x)) + norm(bold(y)) $ +] +== Notations +#index("Notations") + +#notation()[ + Given an open subset $G$ of $bold(R)^n$, the set of functions $phi$ are: + #v(0.5em, weak: true) + + Bounded support $G$; + + Infinitely differentiable; + #v(0.5em, weak: true) + a vector space is denoted by $scr(D)(G)$. +] +== Remarks +#index("Remarks") +This is an example of a remark. + +#remark()[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] + +== Corollaries +#index("Corollaries") +#corollary(name: "Corollary name")[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] +== Propositions +#index("Propositions") +=== Several equations +#index("Propositions!Several equations") + +#proposition(name: "Proposition name")[ + It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] +=== Single Line +#index("Propositions!Single Line") + +#proposition()[ + Let $f,g in L^2(G)$; if $forall phi in scr(D) (G)$, $(f,phi)_0=(g,phi)_0$ then $f = g$. +] +== Examples +#index("Examples") +=== Equation Example +#index("Examples!Equation") +#example()[ + Let $G=\(x in bb(R)^2:|x|<3\)$ and denoted by: $x^0=(1,1)$; consider the function: + + $ f(x) = cases( + e^(abs(x)) quad & "si" |x-x^0| lt.eq 1 slash 2, + 0 & "si" |x-x^0| gt 1 slash 2 + ) $ + + The function $f$ has bounded support, we can take $A={x in bb(R)^2:|x-x^0| lt.eq 1 slash 2+ epsilon}$ for all $epsilon in lr(\] 0\;5 slash 2-sqrt(2) \[, size: #70%) $. +] + +=== Text Example +#index("Examples!Text") + +#example(name: "Example name")[ + Aliquam arcu turpis, ultrices sed luctus ac, vehicula id metus. Morbi eu feugiat velit, et tempus augue. Proin ac mattis tortor. Donec tincidunt, ante rhoncus luctus semper, arcu lorem lobortis justo, nec convallis ante quam quis lectus. Aenean tincidunt sodales massa, et hendrerit tellus mattis ac. Sed non pretium nibh. Donec cursus maximus luctus. Vivamus lobortis eros et massa porta porttitor. +] + +== Exercises +#index("Exercises") +#exercise()[ + This is a good place to ask a question to test learning progress or further cement ideas into students' minds. +] +== Problems +#index("Problems") + +#problem()[ + What is the average airspeed velocity of an unladen swallow? +] + +== Vocabulary +#index("Vocabulary") + +Define a word to improve a students' vocabulary. + +#vocabulary(name: "Word")[ + Definition of word. +] + +#chapter("Presenting Information and Results with a Long Chapter Title", image: image("./orange3.jpg")) +== Table +#index("Table") +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Table caption.], +) + +Referencing @table in-text using its label. + +== Figure +#index("Figure") + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + image("creodocs_logo.svg", width: 50%), + caption: [Figure caption.], +)
+ +Referencing @figure in-text using its label and referencing @figure1 in-text using its label. + +#figure( + placement: top, + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Floating table.], +) + +#figure( + placement: bottom, + image("creodocs_logo.svg", width: 100%), + caption: [Floating figure.], +) + +#my-bibliography( bibliography("sample.bib")) + +#make-index(title: "Index") + +#show: appendices.with("Appendices", hide-parent: false) + +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) + +#figure( + image("creodocs_logo.svg", width: 50%), + caption: [Figure caption.], +) + + +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) + +#figure( + image("creodocs_logo.svg", width: 50%), + caption: [Figure caption.], +) \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange1.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange1.jpg new file mode 100644 index 00000000000..1d0c780c008 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange1.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange2.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange2.jpg new file mode 100644 index 00000000000..966653f41ea Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange2.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange3.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange3.jpg new file mode 100644 index 00000000000..4d556a51dc5 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/orange3.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/placeholder.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/placeholder.jpg new file mode 100644 index 00000000000..d5c08e04788 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/placeholder.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/sample.bib b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/sample.bib new file mode 100644 index 00000000000..216ffb0dd0b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/example/sample.bib @@ -0,0 +1,20 @@ +@book{Smith:2021qr, + title = {{B}ook {T}itle}, + publisher = {Publisher}, + author = {Smith, J.~M. and Jones, A.~B.}, + year = {2021}, + edition = {7th}, +} + +@article{Smith:2022jd, + author = {Jones, A.~B. and Smith, J.~M.}, + title = {{A}rticle {T}itle}, + journal = {Journal title}, + year = {2022}, + volume = {13}, + pages = {123-456}, + number = {52}, + month = {3}, + publisher = {Publisher}, + doi = {10.1038/s41586-021-03616-x}, +} \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Bold.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Bold.ttf new file mode 100644 index 00000000000..c0aa0f51992 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Bold.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Regular.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Regular.ttf new file mode 100644 index 00000000000..82baafc33b7 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraCode-Regular.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraMath-Regular.otf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraMath-Regular.otf new file mode 100644 index 00000000000..f1f9d40c2c8 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/FiraMath-Regular.otf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Black.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Black.ttf new file mode 100644 index 00000000000..33b0716b16f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Black.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BlackItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BlackItalic.ttf new file mode 100644 index 00000000000..b4f195cf9d2 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BlackItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Bold.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Bold.ttf new file mode 100644 index 00000000000..70c4dd92b06 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Bold.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BoldItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BoldItalic.ttf new file mode 100644 index 00000000000..c0e84bc7942 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-BoldItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Hairline.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Hairline.ttf new file mode 100644 index 00000000000..69ffe1a026f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Hairline.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HairlineItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HairlineItalic.ttf new file mode 100644 index 00000000000..50d3e312c2c Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HairlineItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Heavy.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Heavy.ttf new file mode 100644 index 00000000000..a394d613777 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Heavy.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HeavyItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HeavyItalic.ttf new file mode 100644 index 00000000000..0d7fe6247c1 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-HeavyItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Italic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Italic.ttf new file mode 100644 index 00000000000..e7a31ce36bd Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Italic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Light.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Light.ttf new file mode 100644 index 00000000000..d63374c9b19 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Light.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-LightItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-LightItalic.ttf new file mode 100644 index 00000000000..6fff995a3f3 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-LightItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Medium.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Medium.ttf new file mode 100644 index 00000000000..34f1ff5dc1d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Medium.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-MediumItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-MediumItalic.ttf new file mode 100644 index 00000000000..b2fa39636ae Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-MediumItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Regular.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Regular.ttf new file mode 100644 index 00000000000..b536f95581f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Regular.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Semibold.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Semibold.ttf new file mode 100644 index 00000000000..d58edee7a3b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Semibold.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-SemiboldItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-SemiboldItalic.ttf new file mode 100644 index 00000000000..cc825312779 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-SemiboldItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Thin.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Thin.ttf new file mode 100644 index 00000000000..24aaaba8385 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-Thin.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-ThinItalic.ttf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-ThinItalic.ttf new file mode 100644 index 00000000000..140969daa7a Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/Lato-ThinItalic.ttf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/LatoMath.otf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/LatoMath.otf new file mode 100644 index 00000000000..8ee91ced77f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/LatoMath.otf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/OPTIOriginal Script Regular.otf b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/OPTIOriginal Script Regular.otf new file mode 100644 index 00000000000..f6e154c8b5f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/fonts/OPTIOriginal Script Regular.otf differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/justfile b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/justfile new file mode 100644 index 00000000000..1bffdac8283 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/justfile @@ -0,0 +1,13 @@ +# Local Variables: +# mode: makefile +# End: +test_dir := "./tests" + +build: + ./scripts/build + +test: + ./scripts/test test + +update-test: + ./scripts/test update diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/lib.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/lib.typ new file mode 100644 index 00000000000..16707de404f --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/lib.typ @@ -0,0 +1,643 @@ +#import("my-outline.typ"): * +#import("my-index.typ"): * +#import("theorems.typ"): * + +#let scr(it) = text( + features: ("ss01",), + box($cal(it)$), +) +#let mathcal = (it) => { + set text(size: 1.3em, font: "OPTIOriginal", fallback: false) + it + h(0.1em) +} + +#let normal-text = 1em +#let large-text = 3em +#let huge-text = 16em +#let title-main-1 = 2.5em +#let title-main-2 = 1.8em +#let title-main-3 = 2.2em +#let title1 = 2.2em +#let title2 = 1.5em +#let title3 = 1.3em +#let title4 = 1.2em +#let title5 = 11pt + +#let outline-part = 1.5em; +#let outline-heading1 = 1.3em; +#let outline-heading2 = 1.1em; +#let outline-heading3 = 1.1em; + + +#let nocite(citation) = { + place(hide[#cite(citation)]) +} + +#let language-state = state("language-state", none) +#let main-color-state = state("main-color-state", none) +#let part-font-size-state = state("part-font-size-state", none) +#let outline-small-depth-state = state("outline-small-depth-state", none) +#let outline-small-width-state = state("outline-small-width-state", none) +#let appendix-state = state("appendix-state", none) +#let appendix-state-hide-parent = state("appendix-state-hide-parent", none) +#let heading-image = state("heading-image", none) +#let supplement-part-state = state("supplement_part", none) +#let part-style-state = state("part-style", 0) +#let part-state = state("part-state", none) +#let part-location = state("part-location", none) +#let part-counter = counter("part-counter") +#let part-change = state("part-change", false) + +#let part(title) = { + pagebreak(to: "odd") + part-change.update(x => + true + ) + part-state.update(x => + title + ) + part-counter.step() + [ + #context{ + let her = here() + part-location.update(x => + her + ) + } + + #context{ + let main-color = main-color-state.at(here()) + let part-font-size = part-font-size-state.at(here()) + let part-style = part-style-state.at(here()) + let supplement_part = supplement-part-state.at(here()) + let outline-small-depth = outline-small-depth-state.at(here()) + let outline-small-width = outline-small-width-state.at(here()) + if part-style == 0 [ + #set par(justify: false) + #place(block(width:100%, height:100%, outset: (x: 3cm, bottom: 2.5cm, top: 3cm), fill: main-color.lighten(70%))) + #place(top+right, text(fill: black, size: large-text, weight: "bold", box(width: 60%, part-state.get()))) + #place(top+left, text(fill: main-color, size: part-font-size, weight: "bold", part-counter.display("I"))) + ] else if part-style == 1 [ + #set par(justify: false) + #place(block(width:100%, height:100%, outset: (x: 3cm, bottom: 2.5cm, top: 3cm), fill: main-color.lighten(70%))) + #place(top+left)[ + #block(text(fill: black, size: 2.5em, weight: "bold", supplement_part + " " + part-counter.display("I"))) + #v(1cm, weak: true) + #move(dx: -4pt, block(text(fill: main-color, size: 6em, weight: "bold", part-state.get()))) + ] + ] + align(bottom+right, my-outline-small(title, appendix-state, part-state, part-location,part-change,part-counter, main-color, textSize1: outline-part, textSize2: outline-heading1, textSize3: outline-heading2, textSize4: outline-heading3, depth: outline-small-depth, width: outline-small-width)) + } + ] +} + +#let chapter(title, image:none, l: none) = { + heading-image.update(x => + image + ) + if l != none [ + #heading(level: 1, title) #label(l) + ] else [ + #heading(level: 1, title) + ] +} + +#let update-heading-image(image:none) = { + heading-image.update(x => + image + ) +} + +#let make-index(title: none) = { + make-index-int(title:title, main-color-state: main-color-state) +} + +#let appendices(title, doc, hide-parent: false) = { + counter(heading).update(0) + appendix-state.update(x => + title + ) + appendix-state-hide-parent.update(x => + hide-parent + ) + set figure(numbering: num => + numbering("A.1", counter(heading).get().first(), num) + ) + // Just return the numbering string - let the show heading rule handle positioning + // (Previously this returned place() which broke #ref and caused inconsistent alignment) + set heading(numbering: (..nums) => { + let vals = nums.pos() + if vals.len() == 1 { + return str(numbering("A.1", ..vals)) + "." + } + else { + numbering("A.1", ..vals) + } + }, + ) + doc +} + +#let my-bibliography(file, image:none) = { + counter(heading).update(0) + heading-image.update(x => + image + ) + file +} + +#let theorem(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("theorem", + stroke: 0.5pt + main-color, + radius: 0em, + inset: 0.65em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", fill: main-color, x), + fill: black.lighten(95%), + base_level: 1)(name:name, body) + } +} + +#let definition(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("definition", + stroke: (left: 4pt + main-color), + radius: 0em, + inset: (x: 0.65em), + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", x), + base_level: 1)(name:name, body) + } +} + +#let corollary(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("corollary", + stroke: (left: 4pt + gray), + radius: 0em, + inset: 0.65em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", x), + fill: black.lighten(95%), + base_level: 1)(name:name, body) + } +} + + +#let proposition(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("proposition", + radius: 0em, + inset: 0em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", fill: main-color, x), + base_level: 1)(name:name, body) + } +} + + +#let notation(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("notation", + stroke: none, + radius: 0em, + inset: 0em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", x), + base_level: 1)(name:name, body) + } +} + +#let exercise(name: none, body, breakable: false,) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("exercise", + stroke: (left: 4pt + main-color), + radius: 0em, + inset: 0.65em, + breakable: breakable, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(fill: main-color, weight: "bold", x), + fill: main-color.lighten(90%), + base_level: 1)(name:name, body) + } +} + +#let example(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("example", + stroke: none, + radius: 0em, + inset: 0em, + breakable: true, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(weight: "bold", x), + base_level: 1)(name:name, body) + } +} + +#let problem(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("problem", + stroke: none, + radius: 0em, + inset: 0em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => text(fill: main-color, weight: "bold", x), + base_level: 1)(name:name, body) + } +} + +#let vocabulary(name: none, body) = { + context{ + let language = language-state.at(here()) + let main-color = main-color-state.at(here()) + thmbox("vocabulary", + stroke: none, + radius: 0em, + inset: 0em, + namefmt: x => [*--- #x.*], + separator: h(0.2em), + titlefmt: x => [■ #text(weight: "bold", x)], + base_level: 1)(name:name, body) + } +} + +#let remark(body) = { + context{ + let main-color = main-color-state.at(here()) + set par(first-line-indent: 0em) + block( + spacing: 1.2em, + [#grid( + columns: (1.2cm, 1fr), + align: (center, left), + rows: (auto), + circle(radius: 0.3cm, fill: main-color.lighten(70%), stroke: main-color.lighten(30%))[ + #set align(center + horizon) + #set text(fill: main-color, weight: "bold") + R + ], + body)] + ) + } +} + +#let book(title: "", subtitle: "", date: "", author: (), paper-size: "a4", width: none, height: none, margin: (x: 3cm, bottom: 2.5cm, top: 3cm), logo: none, cover: none, cover-background: auto, image-index:none, body, main-color: blue, copyright: [], lang: "en", list-of-figure-title: none, list-of-table-title: none, supplement-chapter: "Chapter", supplement-part: "Part", font-size: 10pt, part-style: 0, part-font-size: auto, lowercase-references: false, padded-heading-number: true, outline-font-size: auto, outline-small-depth: 2, outline-small-width: 9.5cm, heading-style: 0, first-line-indent: true, outline-depth: 3) = { + set document(author: author, title: title) + set text(size: font-size, lang: lang) + set par(leading: 0.5em) + set enum(numbering: "1.a.i.") + set list(marker: ([•], [--], [◦])) + + set ref(supplement: (it)=>{lower(it.supplement)}) if lowercase-references + + + set math.equation(numbering: num => + numbering("(1.1)", counter(heading).get().first(), num) + ) + + set figure(numbering: num => + numbering("1.1", counter(heading).get().first(), num) + ) + + set figure(gap: 1.3em) + + // Use show-set for centering so users/Quarto can override for specific figure kinds + show figure: set align(center) + show figure: it => { + it + if it.placement == none { + v(2.6em, weak: true) + } + } + + show terms: set par(first-line-indent: 0em) + + set page( width: width, height: height) if (width != none and height != none) + set page( paper: paper-size) if (width == none or height == none) + + if (part-font-size == auto){ + part-font-size = huge-text + } + + set page( + margin: margin, + header: context{ + set text(size: title5) + let page_number = counter(page).at(here()).first() + let odd_page = calc.odd(page_number) + let part_change = part-change.at(here()) + // Are we on an odd page? + // if odd_page { + // return text(0.95em, smallcaps(title)) + // } + + // Are we on a page that starts a chapter? (We also check + // the previous page because some headings contain pagebreaks.) + let all = query(heading.where(level: 1)) + if all.any(it => it.location().page() == page_number) or part_change { + return + } + let appendix = appendix-state.at(here()) + if odd_page { + let before = query(selector(heading.where(level: 2)).before(here())) + let counterInt = counter(heading).at(here()) + if before != () and counterInt.len()> 1 { + box(width: 100%, inset: (bottom: 5pt), stroke: (bottom: 0.5pt))[ + #text(if appendix != none {numbering("A.1", ..counterInt.slice(0,2)) + " " + before.last().body} else {numbering("1.1", ..counterInt.slice(0,2)) + " " + before.last().body}) + #h(1fr) + #page_number + ] + } + } else{ + let before = query(selector(heading.where(level: 1)).before(here())) + let counterInt = counter(heading).at(here()).first() + + if before != () and counterInt > 0 { + box(width: 100%, inset: (bottom: 5pt), stroke: (bottom: 0.5pt))[ + #set par(justify: false) + #grid( + columns: (auto, 1fr), + align: (left + horizon, right + horizon), + column-gutter: 0.3em, + [#page_number], + text(weight: "bold")[ + #if appendix != none { + numbering("A.1", counterInt) + ". " + before.last().body + } else { + before.last().supplement + " " + str(counterInt) + ". " + before.last().body + } + ] + ) + ] + } + } + } + ) + + show cite: it => { + show regex("[\w\W]"): set text(main-color) + it + } + + set heading( + hanging-indent: 0pt, + numbering: (..nums) => { + let vals = nums.pos() + let pattern = if vals.len() == 1 { "1." } + else if vals.len() <= 4 { "1.1" } + if pattern != none { numbering(pattern, ..nums) } + } + ) + + show heading.where(level: 1): set heading(supplement: supplement-chapter) + + show heading: it => { + set text(size: font-size) + if it.level == 1 { + pagebreak(to: "odd") + //set par(justify: false) + counter(figure.where(kind: image)).update(0) + counter(figure.where(kind: table)).update(0) + counter(math.equation).update(0) + if (heading-style == 0){ + context{ + let img = heading-image.at(here()) + if img != none { + set image(width: 21cm, height: 9.4cm) + place(move(dx: -3cm, dy: -3cm, img)) + place( + move(dx: -3cm, dy: -3cm, + block(width: 21cm, height: 9.4cm, + align(right + bottom, + pad(bottom: 1.2cm, + block(width: 86%, + stroke: ( right: none, rest: 2pt + main-color), + inset: (left:2em, rest: 1.6em), + fill: rgb("#FFFFFFAA"), + radius: (right: 0pt, left: 10pt), + align(left, + text(size: title1, it) + ) + ) + ) + ) + ) + ) + ) + v(8.4cm) + } else { + layout(size => { + let full_width = size.width + move(dx: 3cm, dy: -0.5cm, + align(right + top, + block( + width: 100% + 3cm, + stroke: (right: none, rest: 2pt + main-color), + inset: (left:2em, rest: 1.6em), + fill: white, + radius: (right: 0pt, left: 10pt), + align(left, + block(width: full_width, + text(size: title1, it, + hyphenate: false + ) + ) + ) + ) + ) + ) + }) + v(1.5cm, weak: true) + } + } + } else if (heading-style == 1){ + set par(justify: false) + align(right + top, block( + width: 100%, + stroke: 2pt + main-color, + inset: (left:2em, rest: 1.6em), + fill: white, + radius: 10pt, + align(left, text(size: title1, it, hyphenate: false)) + )) + v(1.5cm, weak: true) + } else if (heading-style == 2){ + set par(justify: false) + set align(right) + if it.numbering != none { + text(size: 64pt, weight: "bold", fill: main-color)[ + #counter(heading).display("1") + ] + v(-1.2em) + } + + text(size: 24pt, weight: "bold", fill: main-color)[ + #it.body + ] + + v(0.5em) + line(length: 100%, stroke: 1.5pt + main-color) + v(1.5cm, weak: true) + } + + part-change.update(x => + false + ) + } + else if it.level == 2 or it.level == 3 or it.level == 4 { + let size + let space + let color = main-color + if it.level == 2 { + size= title2 + space = 1em + } + else if it.level == 3 { + size= title3 + space = 0.9em + } + else { + size= title4 + space = 0.7em + color = black + } + set text(size: size) + let number = if it.numbering != none { + let num = counter(heading).display(it.numbering) + let width = measure(num).width + let gap = 7mm + if (padded-heading-number){ + set text(fill: main-color) if it.level < 4 + place(dx: -width - gap, num) + } + else{ + [#num \- ] + } + } + block(number + it.body) + v(space, weak: true) + } + else { + it + } + } + + set underline(offset: 3pt) + + // Title page. + page(margin: 0cm, header: none)[ + #set text(fill: black) + #language-state.update(x => lang) + #main-color-state.update(x => main-color) + #part-font-size-state.update(x => part-font-size) + #part-style-state.update(x => part-style) + #supplement-part-state.update(x => supplement-part) + #outline-small-depth-state.update(x => outline-small-depth) + #outline-small-width-state.update(x => outline-small-width) + //#place(top, image("images/background2.jpg", width: 100%, height: 50%)) + #if cover != none { + set image(width: 100%, height: 100%) + place(bottom, cover) + } + #if logo != none { + set image(width: 3cm) + place(top + center, pad(top:1cm, logo)) + } + #let cover-fill-color + #if cover-background == auto { + cover-fill-color = main-color.lighten(70%) + } else { + cover-fill-color = cover-background + } + #align(center + horizon, block(width: 100%, fill: cover-fill-color, height: 7.5cm, pad(x:2cm, y:1cm)[ + #text(size: title-main-1, weight: "black", title) + #v(1cm, weak: true) + #text(size: title-main-2, subtitle) + #v(1cm, weak: true) + #text(size: title-main-3, weight: "bold", author) + ])) + ] + if (copyright!=none){ + set text(size: 10pt) + show link: it => [ + #set text(fill: main-color) + #it + ] + set par(spacing: 2em) + align(bottom, copyright) + } + + heading-image.update(x => + image-index + ) + + my-outline(appendix-state, appendix-state-hide-parent, part-state, part-location,part-change,part-counter, main-color, textSize1: outline-part, textSize2: outline-heading1, textSize3: outline-heading2, textSize4: outline-heading3, depth: outline-depth, outline-font-size: outline-font-size) + + // exclude figures without caption from the outline + show figure.where(caption: none): set figure(outlined: false) + + my-outline-sec(list-of-figure-title, figure.where(kind: image), outline-heading3) + + my-outline-sec(list-of-table-title, figure.where(kind: table), outline-heading3) + + + // Main body. + set par( + first-line-indent: 1em, + justify: true, + spacing: 0.5em + ) if first-line-indent + + + set par( + justify: true, + spacing: 0.5em + ) if not first-line-indent + + show list: it => { + set par(spacing: 1em) + it + } + + show enum: it => { + set par(spacing: 1em) + it + } + + show figure: set block(spacing: 1.2em) + show math.equation: set block(spacing: 1.2em) + + //set block(spacing: 1.2em) + show link: set text(fill: main-color) + + body + +} + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/link.bat b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/link.bat new file mode 100644 index 00000000000..3951b80908b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/link.bat @@ -0,0 +1,2 @@ +mkdir %LocalAppData%\typst\packages\local\orange-book +mklink /D %LocalAppData%\typst\packages\local\orange-book\0.7.0 %cd% diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-index.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-index.typ new file mode 100644 index 00000000000..f1946e6edca --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-index.typ @@ -0,0 +1,88 @@ +#let classes = (main: "Main") +#let index_string = "my_index" + +#let index(content) = place(hide( +figure( + classes.main, + caption: content, + numbering: none, + kind: index_string +))) + +#let make-index-int(title: none, main-color-state:none) = { + + let content-text(content) = { + let ct = "" + if content.has("text") { + ct = content.text + } + else { + for cc in content.children { + if cc.has("text") { + ct += cc.text + } + } + } + return ct + } + + set par(first-line-indent: 0em) + context{ + let main-color = main-color-state.at(here()) + let elements = query(selector(figure.where(kind: index_string)).before(here())) + let words = (:) + for el in elements { + let ct = "" + if el.caption.has("body"){ + ct = content-text(el.caption.body) + } + else{ + ct = content-text(el.caption) + } + + // Have we already know that entry text? If not, + // add it to our list of entry words + if words.keys().contains(ct) != true { + words.insert(ct, ()) + } + + // Add the new page entry to the list. + let ent = (class: el.body.text, page: el.location().page()) + if not words.at(ct).contains(ent){ + words.at(ct).push(ent) + } + } + + + let sortedkeys = words.keys().sorted() + + let register = "" + if title != none { + heading(level: 1, numbering: none, title) + } + block(columns(2,gutter: 1cm, [ + #for sk in sortedkeys [ + #let formattedPageNumbers = words.at(sk).map(en => { + link((page: en.page, x:0pt, y:0pt), text(fill: black, str(en.page))) + }) + #let firstCharacter = sk.first() + #if firstCharacter != register { + v(1em, weak:true) + box(width: 100%, fill: main-color.lighten(60%), inset: 5pt, align(center, text(size: 1.1em, weight: "bold", firstCharacter))) + register = firstCharacter + v(1em, weak:true) + } + #set text(size: 0.9em) + #if(sk.contains("!")){ + h(2em) + sk.slice(sk.position("!")+1) + }else{ + sk + } + #box(width: 1fr, repeat(text(weight: "regular")[. #h(4pt)])) + #formattedPageNumbers.join(",") + #v(0.65em, weak:true) + ] + ])) + } +} diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-outline.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-outline.typ new file mode 100644 index 00000000000..1c63a26546e --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/my-outline.typ @@ -0,0 +1,124 @@ +#let my-outline-row( textSize:none, + textWeight: "regular", + insetSize: 0pt, + textColor: blue, + number: "0", + title: none, + heading_page: "0", + location: none) = { + set text(size: textSize, fill: textColor, weight: textWeight) + box(width: 100%, inset: (y: insetSize))[ + #grid( + columns: (1.2cm, 1fr, auto), + align: (left+top, left, left), + gutter: 0pt, + number, + [ + #link(location, title) + #box(width: 1fr, repeat(text(weight: "regular")[. #h(4pt)])) + ], + [ + #h(4pt) + #link(location, heading_page) + ] + ) + ] +} + +#let my-outline(appendix-state, appendix-state-hide-parent, part-state, part-location,part-change,part-counter, main-color, textSize1:none, textSize2:none, textSize3:none, textSize4:none, depth: none, outline-font-size: auto) = { + show outline.entry: it => { + let appendix-state = appendix-state.at(it.element.location()) + let appendix-state-hide-parent = appendix-state-hide-parent.at(it.element.location()) + let numberingFormat = if appendix-state != none {"A.1"} else {"1.1"} + let counterInt = counter(heading).at(it.element.location()) + let numberingSetting = it.element.numbering + let number = none + if numberingSetting != none and counterInt.first() >0 { + number = numbering(numberingFormat, ..counterInt) + } + let title = it.element.body + let heading_page = it.page() + + if it.level == 1 { + let part-state = part-state.at(it.element.location()) + let part-location = part-location.at(it.element.location()) + let part-change = part-change.at(it.element.location()) + let part-counter = part-counter.at(it.element.location()) + if (part-change){ + v(0.7cm, weak: true) + box(width: 1.1cm, fill: main-color.lighten(80%), inset: 5pt, align(center, text(size: textSize1, weight: "bold", fill: main-color.lighten(30%), numbering("I",part-counter.first())))) + h(0.1cm) + box(width: 100% - 1.2cm, fill: main-color.lighten(60%), inset: 5pt, align(center, link(part-location,text(size: textSize1, weight: "bold", part-state)))) + v(0.45cm, weak: true) + } + else{ + v(0.5cm, weak: true) + } + if (counterInt.first() == 1 and appendix-state != none and not appendix-state-hide-parent ){ + my-outline-row(insetSize: 2pt, textWeight: "bold", textSize: textSize2, textColor:main-color, number: none, title: appendix-state, heading_page: heading_page, location: it.element.location()) + v(0.5cm, weak: true) + } + let text-size + if outline-font-size == auto { + text-size = textSize2 + } + else{ + text-size = outline-font-size + } + my-outline-row(insetSize: 2pt, textWeight: "bold", textSize: text-size, textColor:main-color, number: number, title: title, heading_page: heading_page, location: it.element.location()) + } + else if it.level ==2 { + my-outline-row(insetSize: 2pt, textWeight: "bold", textSize: textSize3, textColor:black, number: number, title: title, heading_page: heading_page, location: it.element.location()) + } else { + my-outline-row(textWeight: "regular", textSize: textSize4, textColor:black, number: number, title: title, heading_page: heading_page, location: it.element.location()) + } + } + outline(depth: depth, indent: 0em) +} + +#let my-outline-small(partTitle, appendix-state, part-state, part-location,part-change,part-counter, main-color, textSize1:none, textSize2:none, textSize3:none, textSize4:none, depth: 2, width: 9.5) = { + show outline.entry: it => { + let appendix-state = appendix-state.at(it.element.location()) + let numberingFormat = if appendix-state != none {"A.1"} else {"1.1"} + let counterInt = counter(heading).at(it.element.location()) + let number = none + if counterInt.first() >0 { + number = numbering(numberingFormat, ..counterInt) + } + let title = it.element.body + let heading_page = it.page() + let part-state = part-state.at(it.element.location()) + if (part-state == partTitle and counterInt.first() >0 and appendix-state==none){ + if it.level == 1 { + v(0.5cm, weak: true) + my-outline-row(insetSize: 1pt, textWeight: "bold", textSize: textSize2, textColor:main-color, number: number, title: title, heading_page: heading_page, location: it.element.location()) + } + else if it.level ==2 { + my-outline-row(textWeight: "regular", textSize: textSize4, textColor:black, number: number, title: text(fill: black, title), heading_page: text(fill: black, heading_page), location: it.element.location()) + } + } + else{ + v(-0.65em, weak: true) + } + } + box(width: width, outline(depth: depth, indent: 0em, title: none)) +} + +#let my-outline-sec(list-of-figure-title, target, textSize) = { + show outline.entry.where(level: 1): it => { + let heading_page = it.page() + [ + #set text(size: textSize) + #box(width: 100%)[ + #box(width: 0.75cm, align(right, [#it.prefix().at("children").at(2) #h(0.2cm)])) + #link(it.element.location(), it.element.at("caption").body) + #box(width: 1fr, repeat(text(weight: "regular")[. #h(4pt)])) + #link(it.element.location(),heading_page) + ] + ] + } + outline( + title: list-of-figure-title, + target: target, + ) +} \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/build b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/build new file mode 100755 index 00000000000..8437f6708b6 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/build @@ -0,0 +1,63 @@ +#!/bin/env bash +set -eu +set -o pipefail + +DIR="$(dirname "${BASH_SOURCE[0]}")" + +MODE="${1:-test}"; +if (( $# > 1)); then shift; fi + +FLAG_INSTALL=0 + +while :; do + case "${1:-}" in + '--install') FLAG_INSTALL=1 ;; + *) break + esac + shift +done + + +TYPST_VERSION="v0.7.0" +TYPST_BASE_URL="https://github.com/typst/typst/releases/download" +TYPST_ARCHIVE="typst-x86_64-unknown-linux-musl.tar.xz" + +TYPST_ROOT="$(realpath "$DIR/..")" + + +function install_typst() +{ + if [[ "$OSTYPE" != "linux"* ]]; then + >&2 echo "Automatic installation of typst on a non linux system is currently unsupported." + exit 1 + fi + + #TMP="$(mktemp -d)" + TMP="${TMP:-/tmp}/typst-${TYPST_VERSION}" + if mkdir -p "$TMP" 2> /dev/null ; then + local PKG="${TMP}/typst.tar.xz" + + echo "Installing typst from $TYPST_BASE_URL/$TYPST_ARCHIVE" + wget "${TYPST_BASE_URL}/${TYPST_VERSION}/${TYPST_ARCHIVE}" \ + --quiet \ + -O "$PKG" + mkdir -p "${TMP}/typst" + tar -xf "$PKG" -C "${TMP}/typst" --strip-components=1 + rm "$PKG" + fi + + PATH="${TMP}/typst/:$PATH" + export PATH +} + +if [[ "$FLAG_INSTALL" == "1" ]]; then + install_typst +fi + +if ! hash typst; then + >&2 echo "Could not find 'typst' binary. Run this script with the --install argument to temporarily install typst." + exit 1 +fi + +typst compile example/main.typ --root "$TYPST_ROOT" --font-path "$TYPST_ROOT/fonts" +echo "[ OK]" \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/test b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/test new file mode 100755 index 00000000000..414294e4718 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/scripts/test @@ -0,0 +1,142 @@ +#!/bin/env bash +set -eu +set -o pipefail + +DIR="$(dirname "${BASH_SOURCE[0]}")" + +MODE="${1:-test}"; +if (( $# > 1)); then shift; fi + +FLAG_INSTALL=0 + +while :; do + case "${1:-}" in + '--install') FLAG_INSTALL=1 ;; + *) break + esac + shift +done + + +TYPST_VERSION="v0.7.0" +TYPST_BASE_URL="https://github.com/typst/typst/releases/download" +TYPST_ARCHIVE="typst-x86_64-unknown-linux-musl.tar.xz" + +TYPST_ROOT="$(realpath "$DIR/..")" +TEST_ROOT="$(realpath "$DIR/../tests")" + +if hash magick 2>/dev/null; then + MAGICK_COMPARE="magick compare" +elif hash compare 2>/dev/null; then + MAGICK_COMPARE="compare" +else + >&2 echo "Could not find 'magick' nor 'compare' binary. Make sure you have image magick installed and in your PATH." + exit 1 +fi + + +function install_typst() +{ + if [[ "$OSTYPE" != "linux"* ]]; then + >&2 echo "Automatic installation of typst on a non linux system is currently unsupported." + exit 1 + fi + + #TMP="$(mktemp -d)" + TMP="${TMP:-/tmp}/typst-${TYPST_VERSION}" + if mkdir -p "$TMP" 2> /dev/null ; then + local PKG="${TMP}/typst.tar.xz" + + echo "Installing typst from $TYPST_BASE_URL/$TYPST_ARCHIVE" + wget "${TYPST_BASE_URL}/${TYPST_VERSION}/${TYPST_ARCHIVE}" \ + --quiet \ + -O "$PKG" + mkdir -p "${TMP}/typst" + tar -xf "$PKG" -C "${TMP}/typst" --strip-components=1 + rm "$PKG" + fi + + PATH="${TMP}/typst/:$PATH" + export PATH +} + +if [[ "$FLAG_INSTALL" == "1" ]]; then + install_typst +fi + +if ! hash typst; then + >&2 echo "Could not find 'typst' binary. Run this script with the --install argument to temporarily install typst." + exit 1 +fi + +function img_compare() +{ + $MAGICK_COMPARE -metric AE -fuzz 1\% "$1" "$2" null: 2>&1 | cut -d\ -f1 +} + +function update_test_ref() +{ + ( + cd "$1" + local NAME + NAME="$(basename "$1")" + + echo "[UPDATING] ${NAME}" + + typst compile test.typ "ref{n}.png" --root "$TYPST_ROOT" --font-path "$TYPST_ROOT/fonts" + ) +} + +function run_test() +{ + ( + cd "$1" + local NAME + NAME="$(basename "$1")" + + echo "[TEST] ${NAME} ..." + + if [[ ! -f test.typ ]]; then echo "Missing file 'test.typ'!"; exit 1; fi + + typst compile test.typ "res{n}.png" --root "$TYPST_ROOT" --font-path "$TYPST_ROOT/fonts" + + + for res_file in res*.png; do + if [[ $res_file =~ res([0-9]+)\.png ]]; then + number="${BASH_REMATCH[1]}" + ref_file="ref${number}.png" + diff_file="diff${number}.png" + + if [ -f "$ref_file" ]; then + echo "Comparing $res_file with $ref_file..." + if [[ $(img_compare $res_file $ref_file) != 0 ]] ; then + $MAGICK_COMPARE -compose src $res_file $ref_file $diff_file || true + echo "[FAIL] see $(pwd)/$diff_file for differences" + exit 1 + fi + else + echo "File $ref_file not found for $res_file." + exit 1 + fi + fi + done + + echo "[ OK]" + ) +} + +echo "Typst: $(typst --version)" + +find "$TEST_ROOT" -type d | \ + while read -r test + do + if [[ "$test" == "$TEST_ROOT" ]]; then continue; fi + + if [[ "$MODE" == "test" ]]; then + run_test "$test" + elif [[ "$MODE" == "update" ]]; then + update_test_ref "$test" + else + echo "Unknown mode '$MODE'"; exit 1 + fi + done diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/background.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/background.png new file mode 100644 index 00000000000..534247f0f9d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/background.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/creodocs_logo.svg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/creodocs_logo.svg new file mode 100644 index 00000000000..1adb81a4621 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/creodocs_logo.svg @@ -0,0 +1,386 @@ + + + + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange1.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange1.jpg new file mode 100644 index 00000000000..1d0c780c008 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange1.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange2.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange2.jpg new file mode 100644 index 00000000000..966653f41ea Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange2.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange3.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange3.jpg new file mode 100644 index 00000000000..4d556a51dc5 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/orange3.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/placeholder.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/placeholder.jpg new file mode 100644 index 00000000000..d5c08e04788 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/placeholder.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref01.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref01.png new file mode 100644 index 00000000000..3181ee66738 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref01.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref02.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref02.png new file mode 100644 index 00000000000..366d4a0dcc0 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref02.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref03.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref03.png new file mode 100644 index 00000000000..f88eb915863 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref03.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref04.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref04.png new file mode 100644 index 00000000000..2316cc76c2c Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref04.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref05.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref05.png new file mode 100644 index 00000000000..b02aa5575c3 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref05.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref06.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref06.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref06.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref07.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref07.png new file mode 100644 index 00000000000..97b3b91e533 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref07.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref08.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref08.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref08.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref09.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref09.png new file mode 100644 index 00000000000..8704f472bed Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref09.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref10.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref10.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref10.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref11.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref11.png new file mode 100644 index 00000000000..41bbdfe000c Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref11.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref12.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref12.png new file mode 100644 index 00000000000..e2774e8f1d8 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref12.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref13.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref13.png new file mode 100644 index 00000000000..0c52d4ea7e6 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref13.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref14.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref14.png new file mode 100644 index 00000000000..027f01825bd Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref14.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref15.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref15.png new file mode 100644 index 00000000000..2a6afaa1667 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref15.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref16.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref16.png new file mode 100644 index 00000000000..2d8dbdb9fbb Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref16.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref17.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref17.png new file mode 100644 index 00000000000..3baa0eb85a4 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref17.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref18.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref18.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref18.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref19.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref19.png new file mode 100644 index 00000000000..b99de18719d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref19.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref20.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref20.png new file mode 100644 index 00000000000..9e9c8df0936 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref20.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref21.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref21.png new file mode 100644 index 00000000000..65a822c1729 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref21.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref22.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref22.png new file mode 100644 index 00000000000..08c20439a89 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref22.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref23.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref23.png new file mode 100644 index 00000000000..caf0aa08238 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref23.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref24.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref24.png new file mode 100644 index 00000000000..f3b5f54785a Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref24.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref25.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref25.png new file mode 100644 index 00000000000..1d9bf3891a7 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref25.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref26.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref26.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref26.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref27.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref27.png new file mode 100644 index 00000000000..d0405925be9 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref27.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref28.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref28.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref28.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref29.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref29.png new file mode 100644 index 00000000000..a73bcfdb239 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref29.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref30.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref30.png new file mode 100644 index 00000000000..f5ea9782f5b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref30.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref31.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref31.png new file mode 100644 index 00000000000..d486a023665 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/ref31.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/sample.bib b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/sample.bib new file mode 100644 index 00000000000..216ffb0dd0b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/sample.bib @@ -0,0 +1,20 @@ +@book{Smith:2021qr, + title = {{B}ook {T}itle}, + publisher = {Publisher}, + author = {Smith, J.~M. and Jones, A.~B.}, + year = {2021}, + edition = {7th}, +} + +@article{Smith:2022jd, + author = {Jones, A.~B. and Smith, J.~M.}, + title = {{A}rticle {T}itle}, + journal = {Journal title}, + year = {2022}, + volume = {13}, + pages = {123-456}, + number = {52}, + month = {3}, + publisher = {Publisher}, + doi = {10.1038/s41586-021-03616-x}, +} \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/test.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/test.typ new file mode 100644 index 00000000000..829f657dd83 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/heading-style/test.typ @@ -0,0 +1,353 @@ +#import "../../lib.typ": book, part, chapter, my-bibliography, appendices, make-index, index, theorem, definition, notation,remark,corollary,proposition,example,exercise, problem, vocabulary, mathcal, update-heading-image + +//#set text(font: "Linux Libertine") +//#set text(font: "TeX Gyre Pagella") +#set text(font: "Lato") +//#show math.equation: set text(font: "Fira Math") +#show math.equation: set text(font: "Lato Math") +#show raw: set text(font: "Fira Code") + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: "Anno scolastico 2023-2024", + author: "Goro Akechi", + main-color: rgb("#F36619"), + lang: "en", + cover: image("./background.png"), + image-index: image("./orange1.jpg"), + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + supplement-part: "Part", + part-style: 0, + heading-style: 2, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ], + lowercase-references: false +) + +#part("Part One Title") + +#chapter("Sectioning Examples", image: image("./orange2.jpg"), l: "chap1") +#index("Sectioning") + +== Section Title +#index("Sectioning!Sections") + +#lorem(50) +#footnote[Footnote example text...Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, +imperdiet urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie.] + +#lorem(50) + +=== Subsection Title +#index("Sectioning!Subsections") + +#lorem(50) + +#lorem(50) + +#lorem(50) + +==== Subsubsection Title +#index("Sectioning!Subsubsections") + +#lorem(100) + +===== Paragraph Title +#index("Sectioning!Paragraphs") +#lorem(50) +#lorem(50) +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#heading(level:2, numbering: none, "Unnumbered Section", outlined: false) +#heading(level:3, numbering: none, "Unnumbered Subsection", outlined: false) +#heading(level:4, numbering: none, "Unnumbered Subsubsection", outlined: false) + +// Chapter can also be defined in this way +#update-heading-image(image: image("./orange2.jpg")) += In-text Element Examples + +== Referencing Publications +#index("Citation") +This statement requires citation @Smith:2022jd; this one is more specific @Smith:2021qr[page.~162]. +== Link Examples +#index("Links") +This is a URL link: #link("https://www.latextemplates.com")[LaTeX Templates]. This is an email link: #link("mailto:example@example.com")[example\@example.com]. This is a +monospaced URL link: https://www.LaTeXTemplates.com. +== Lists +#index("Lists") +Lists are useful to present information in a concise and/or ordered way. +=== Numbered List +#index("Lists!Numbered List") ++ First numbered item + + First indented numbered item + + Second indented numbered item + + First second-level indented numbered item + + Second second-level indented numbered item +2. Second numbered item +3. Third numbered item +=== Bullet Point List +#index("Lists!Bullet Points") +- First bullet point item + - First indented bullet point item + - Second indented bullet point item + - First second-level indented bullet point item +- Second bullet point item +- Third bullet point item +=== Descriptions and Definitions +#index("Lists!Descriptions and Definitions") +/ Name: Definition +/ Word: Definition +/ Comment: Elaboration +== International Support +àáâäãåèéêëìíîïòóôöõøùúûüÿýñçˇcšž \ +ÀÁÂÄÃÅÈÉÊËÌÍÎÏÒÓÔÖÕØÙÚÛÜŸÝÑ \ +ßÇŒÆ ˇCŠŽ +== Ligatures +fi fj fl ffl ffi Ty + +== Referencing Chapters +#index("Referencing") +This statement references to another chapter @chap1. This statement references to another heading @heading1. This statement references to another heading @heading2. + +#part("Part Two Title") + +#chapter("Mathematics", image: image("./orange2.jpg")) + +== Theorems +#index("Theorems") +=== Several equations +#index("Theorems!Several equations") +This is a theorem consisting of several equations. +#theorem(name: "Name of the theorem")[ + In $E=bb(R)^n$ all norms are equivalent. It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] + +=== Single Line +#index("Theorems!Single Line") +This is a theorem consisting of just one line. +#theorem()[ + A set $mathcal(D)(G)$ in dense in $L^2(G)$, $|dot|_0$. +] +== Definitions +#index("Definitions") +A definition can be mathematical or it could define a concept. +#definition(name: "Definition name")[ + Given a vector space $E$, a norm on $E$ is an application, denoted $norm(dot)$, $E$ in $bb(R)^+ = [0,+∞[$ such that: + $ norm(bold(x)) = 0 arrow.r.double bold(x) = bold(0) $ + $ norm(lambda bold(x)) = abs(lambda) dot norm(bold(x)) $ + $ norm(bold(x) + bold(y)) lt.eq norm(bold(x)) + norm(bold(y)) $ +] +== Notations +#index("Notations") + +#notation()[ + Given an open subset $G$ of $bold(R)^n$, the set of functions $phi$ are: + #v(0.5em, weak: true) + + Bounded support $G$; + + Infinitely differentiable; + #v(0.5em, weak: true) + a vector space is denoted by $mathcal(D)(G)$. +] +== Remarks +#index("Remarks") +This is an example of a remark. + +#remark()[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] + +== Corollaries +#index("Corollaries") +#corollary(name: "Corollary name")[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] +== Propositions +#index("Propositions") +=== Several equations +#index("Propositions!Several equations") + +#proposition(name: "Proposition name")[ + It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] +=== Single Line +#index("Propositions!Single Line") + +#proposition()[ + Let $f,g in L^2(G)$; if $forall phi in mathcal(D) (G)$, $(f,phi)_0=(g,phi)_0$ then $f = g$. +] +== Examples +#index("Examples") +=== Equation Example +#index("Examples!Equation") +#example()[ + Let $G=\(x in bb(R)^2:|x|<3\)$ and denoted by: $x^0=(1,1)$; consider the function: + + $ f(x) = cases( + e^(abs(x)) quad & "si" |x-x^0| lt.eq 1 slash 2, + 0 & "si" |x-x^0| gt 1 slash 2 + ) $ + + The function $f$ has bounded support, we can take $A={x in bb(R)^2:|x-x^0| lt.eq 1 slash 2+ epsilon}$ for all $epsilon in lr(\] 0\;5 slash 2-sqrt(2) \[, size: #70%) $. +] + +=== Text Example +#index("Examples!Text") + +#example(name: "Example name")[ + Aliquam arcu turpis, ultrices sed luctus ac, vehicula id metus. Morbi eu feugiat velit, et tempus augue. Proin ac mattis tortor. Donec tincidunt, ante rhoncus luctus semper, arcu lorem lobortis justo, nec convallis ante quam quis lectus. Aenean tincidunt sodales massa, et hendrerit tellus mattis ac. Sed non pretium nibh. Donec cursus maximus luctus. Vivamus lobortis eros et massa porta porttitor. +] + +== Exercises +#index("Exercises") +#exercise()[ + This is a good place to ask a question to test learning progress or further cement ideas into students' minds. +] +== Problems +#index("Problems") + +#problem()[ + What is the average airspeed velocity of an unladen swallow? +] + +== Vocabulary +#index("Vocabulary") + +Define a word to improve a students' vocabulary. + +#vocabulary(name: "Word")[ + Definition of word. +] + +#chapter("Presenting Information and Results with a Long Chapter Title", image: image("./orange3.jpg")) +== Table +#index("Table") +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Table caption.], +)
+ +Referencing @table in-text using its label. + +== Figure +#index("Figure") + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + image("creodocs_logo.svg", width: 50%), + caption: [Figure caption.], +)
+ +Referencing @figure in-text using its label and referencing @figure1 in-text using its label. + +#figure( + placement: top, + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Floating table.], +) + +#figure( + placement: bottom, + image("creodocs_logo.svg", width: 100%), + caption: [Floating figure.], +) + +#my-bibliography( bibliography("sample.bib")) + +#make-index(title: "Index") + +#show: appendices.with("Appendices") + +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/background.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/background.png new file mode 100644 index 00000000000..534247f0f9d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/background.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange1.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange1.jpg new file mode 100644 index 00000000000..1d0c780c008 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange1.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange2.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange2.jpg new file mode 100644 index 00000000000..966653f41ea Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange2.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange3.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange3.jpg new file mode 100644 index 00000000000..4d556a51dc5 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/orange3.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/placeholder.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/placeholder.jpg new file mode 100644 index 00000000000..d5c08e04788 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/placeholder.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref01.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref01.png new file mode 100644 index 00000000000..3181ee66738 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref01.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref02.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref02.png new file mode 100644 index 00000000000..366d4a0dcc0 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref02.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref03.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref03.png new file mode 100644 index 00000000000..960e5f3d8dc Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref03.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref04.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref04.png new file mode 100644 index 00000000000..0ca6d34fed3 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref04.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref05.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref05.png new file mode 100644 index 00000000000..dd1c68704c3 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref05.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref06.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref06.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref06.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref07.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref07.png new file mode 100644 index 00000000000..bc3d8db8601 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref07.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref08.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref08.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref08.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref09.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref09.png new file mode 100644 index 00000000000..833161d2c23 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref09.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref10.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref10.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref10.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref11.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref11.png new file mode 100644 index 00000000000..79b435287c6 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref11.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref12.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref12.png new file mode 100644 index 00000000000..044ba55ea86 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref12.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref13.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref13.png new file mode 100644 index 00000000000..0e54ebaa645 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref13.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref14.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref14.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref14.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref15.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref15.png new file mode 100644 index 00000000000..728dd27edc2 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref15.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref16.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref16.png new file mode 100644 index 00000000000..a2a9c3e7647 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref16.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref17.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref17.png new file mode 100644 index 00000000000..f07c10ad42d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref17.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref18.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref18.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref18.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref19.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref19.png new file mode 100644 index 00000000000..753ffdff37e Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref19.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref20.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref20.png new file mode 100644 index 00000000000..0d6bfbe80ec Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref20.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref21.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref21.png new file mode 100644 index 00000000000..2b78dad6a9c Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref21.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref22.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref22.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref22.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref23.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref23.png new file mode 100644 index 00000000000..54556538a8b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref23.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref24.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref24.png new file mode 100644 index 00000000000..cbde1f53bad Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref24.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref25.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref25.png new file mode 100644 index 00000000000..fb21e192306 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref25.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref26.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref26.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref26.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref27.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref27.png new file mode 100644 index 00000000000..a3254dcc03a Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref27.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref28.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref28.png new file mode 100644 index 00000000000..6fc6a5db09f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref28.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref29.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref29.png new file mode 100644 index 00000000000..61c44f2ff5d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref29.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref30.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref30.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref30.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref31.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref31.png new file mode 100644 index 00000000000..ada17ce51de Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref31.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref32.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref32.png new file mode 100644 index 00000000000..2f3a2e151c2 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref32.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref33.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref33.png new file mode 100644 index 00000000000..30ab0210655 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/ref33.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/sample.bib b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/sample.bib new file mode 100644 index 00000000000..216ffb0dd0b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/sample.bib @@ -0,0 +1,20 @@ +@book{Smith:2021qr, + title = {{B}ook {T}itle}, + publisher = {Publisher}, + author = {Smith, J.~M. and Jones, A.~B.}, + year = {2021}, + edition = {7th}, +} + +@article{Smith:2022jd, + author = {Jones, A.~B. and Smith, J.~M.}, + title = {{A}rticle {T}itle}, + journal = {Journal title}, + year = {2022}, + volume = {13}, + pages = {123-456}, + number = {52}, + month = {3}, + publisher = {Publisher}, + doi = {10.1038/s41586-021-03616-x}, +} \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/test.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/test.typ new file mode 100644 index 00000000000..92ca4b9defc --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/long-part-title/test.typ @@ -0,0 +1,76 @@ +#import "../../lib.typ": book, part, chapter, my-bibliography, appendices + +#let main-color = rgb("#F36619") + +#set text(font: "Lato") +#show math.equation: set text(font: "Fira Math") +#show raw: set text(font: "Fira Code") + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: "Anno scolastico 2023-2024", + author: "Goro Akechi", + main-color: main-color, + lang: "en", + cover: image("./background.png"), + image-index: image("./orange1.jpg"), + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + part-style: 0, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ] +) + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +== This is a very very very very very very very very very long section title to test the layout + +=== This is a very very very very very very very very very long subsection title to test the layout + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +== This is a very very very very very very very very very long section title to test the layout + +=== This is a very very very very very very very very very long subsection title to test the layout + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +== This is a very very very very very very very very very long section title to test the layout + +=== This is a very very very very very very very very very long subsection title to test the layout + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +#part("This is a very long part title to test the layout") + +#chapter("This is a very long chapter title to test the layout", image: image("./orange2.jpg")) + +#lorem(100) \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref01.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref01.png new file mode 100644 index 00000000000..bdd59bfa9fa Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref01.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref02.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref02.png new file mode 100644 index 00000000000..366d4a0dcc0 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref02.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref03.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref03.png new file mode 100644 index 00000000000..a312b449b85 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref03.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref04.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref04.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref04.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref05.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref05.png new file mode 100644 index 00000000000..ea47c236262 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref05.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref06.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref06.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref06.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref07.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref07.png new file mode 100644 index 00000000000..bdb06dcf3c9 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref07.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref08.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref08.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref08.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref09.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref09.png new file mode 100644 index 00000000000..494735bbeab Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref09.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref10.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref10.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref10.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref11.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref11.png new file mode 100644 index 00000000000..7889b87edfd Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref11.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref12.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref12.png new file mode 100644 index 00000000000..e5f23da48bb Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/ref12.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/test.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/test.typ new file mode 100644 index 00000000000..c0f6c04dda4 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/part-style-1/test.typ @@ -0,0 +1,98 @@ +#import "../../lib.typ": book, part, chapter, my-bibliography, appendices, make-index, index, theorem, mathcal + +#set text(font: "Lato") +#show math.equation: set text(font: "Lato Math") +#show raw: set text(font: "Fira Code") + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: "Anno scolastico 2023-2024", + author: "Goro Akechi", + main-color: rgb("#F36619"), + lang: "en", + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + supplement-part: "PART", + part-style: 1, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ] +) + +#part("Part One Title") + +#chapter("Sectioning Examples") +#index("Sectioning") + +== Section Title +#index("Sectioning!Sections") + +#lorem(50) +#footnote[Footnote example text...Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, +imperdiet urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie.] + +#lorem(50) + +=== Subsection Title +#index("Sectioning!Subsections") + +#lorem(50) + +#lorem(50) + +#lorem(50) + +==== Subsubsection Title +#index("Sectioning!Subsubsections") + +#lorem(100) + +===== Paragraph Title +#index("Sectioning!Paragraphs") +#lorem(50) +#lorem(50) +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#heading(level:2, numbering: none, "Unnumbered Section", outlined: false) +#heading(level:3, numbering: none, "Unnumbered Subsection", outlined: false) +#heading(level:4, numbering: none, "Unnumbered Subsubsection", outlined: false) + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/background.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/background.png new file mode 100644 index 00000000000..534247f0f9d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/background.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/creodocs_logo.svg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/creodocs_logo.svg new file mode 100644 index 00000000000..1adb81a4621 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/creodocs_logo.svg @@ -0,0 +1,386 @@ + + + + diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange1.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange1.jpg new file mode 100644 index 00000000000..1d0c780c008 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange1.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange2.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange2.jpg new file mode 100644 index 00000000000..966653f41ea Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange2.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange3.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange3.jpg new file mode 100644 index 00000000000..4d556a51dc5 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/orange3.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/placeholder.jpg b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/placeholder.jpg new file mode 100644 index 00000000000..d5c08e04788 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/placeholder.jpg differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref01.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref01.png new file mode 100644 index 00000000000..3181ee66738 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref01.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref02.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref02.png new file mode 100644 index 00000000000..366d4a0dcc0 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref02.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref03.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref03.png new file mode 100644 index 00000000000..40c97f4af93 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref03.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref04.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref04.png new file mode 100644 index 00000000000..8cc79339d49 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref04.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref05.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref05.png new file mode 100644 index 00000000000..a9fdc174ff5 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref05.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref06.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref06.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref06.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref07.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref07.png new file mode 100644 index 00000000000..97847ad7c1e Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref07.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref08.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref08.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref08.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref09.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref09.png new file mode 100644 index 00000000000..df568431fec Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref09.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref10.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref10.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref10.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref11.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref11.png new file mode 100644 index 00000000000..8867cfc0acb Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref11.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref12.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref12.png new file mode 100644 index 00000000000..4eb014a4bdb Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref12.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref13.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref13.png new file mode 100644 index 00000000000..21d82468afd Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref13.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref14.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref14.png new file mode 100644 index 00000000000..027f01825bd Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref14.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref15.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref15.png new file mode 100644 index 00000000000..aa069a23990 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref15.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref16.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref16.png new file mode 100644 index 00000000000..0504c1838fa Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref16.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref17.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref17.png new file mode 100644 index 00000000000..b7f8207b085 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref17.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref18.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref18.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref18.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref19.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref19.png new file mode 100644 index 00000000000..ac7048fe79b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref19.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref20.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref20.png new file mode 100644 index 00000000000..39193951b81 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref20.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref21.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref21.png new file mode 100644 index 00000000000..d3a049a3376 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref21.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref22.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref22.png new file mode 100644 index 00000000000..08c20439a89 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref22.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref23.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref23.png new file mode 100644 index 00000000000..245d35f19bb Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref23.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref24.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref24.png new file mode 100644 index 00000000000..bb958882c4f Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref24.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref25.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref25.png new file mode 100644 index 00000000000..5c6cef124f7 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref25.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref26.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref26.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref26.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref27.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref27.png new file mode 100644 index 00000000000..ff57618547b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref27.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref28.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref28.png new file mode 100644 index 00000000000..ffd9e856b76 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref28.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref29.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref29.png new file mode 100644 index 00000000000..f3706d76bbe Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref29.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref30.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref30.png new file mode 100644 index 00000000000..f5ea9782f5b Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref30.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref31.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref31.png new file mode 100644 index 00000000000..db480f22214 Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/ref31.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/sample.bib b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/sample.bib new file mode 100644 index 00000000000..216ffb0dd0b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/sample.bib @@ -0,0 +1,20 @@ +@book{Smith:2021qr, + title = {{B}ook {T}itle}, + publisher = {Publisher}, + author = {Smith, J.~M. and Jones, A.~B.}, + year = {2021}, + edition = {7th}, +} + +@article{Smith:2022jd, + author = {Jones, A.~B. and Smith, J.~M.}, + title = {{A}rticle {T}itle}, + journal = {Journal title}, + year = {2022}, + volume = {13}, + pages = {123-456}, + number = {52}, + month = {3}, + publisher = {Publisher}, + doi = {10.1038/s41586-021-03616-x}, +} \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/test.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/test.typ new file mode 100644 index 00000000000..0ca44520e79 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/tests/sample-book/test.typ @@ -0,0 +1,352 @@ +#import "../../lib.typ": book, part, chapter, my-bibliography, appendices, make-index, index, theorem, definition, notation,remark,corollary,proposition,example,exercise, problem, vocabulary, mathcal, update-heading-image + +//#set text(font: "Linux Libertine") +//#set text(font: "TeX Gyre Pagella") +#set text(font: "Lato") +//#show math.equation: set text(font: "Fira Math") +#show math.equation: set text(font: "Lato Math") +#show raw: set text(font: "Fira Code") + +#show: book.with( + title: "Exploring the Physical Manifestation of Humanity’s Subconscious Desires", + subtitle: "A Practical Guide", + date: "Anno scolastico 2023-2024", + author: "Goro Akechi", + main-color: rgb("#F36619"), + lang: "en", + cover: image("./background.png"), + image-index: image("./orange1.jpg"), + list-of-figure-title: "List of Figures", + list-of-table-title: "List of Tables", + supplement-chapter: "Chapter", + supplement-part: "Part", + part-style: 0, + copyright: [ + Copyright © 2023 Flavio Barisi + + PUBLISHED BY PUBLISHER + + #link("https://github.com/flavio20002/typst-orange-template", "TEMPLATE-WEBSITE") + + Licensed under the Apache 2.0 License (the “License”). + You may not use this file except in compliance with the License. You may obtain a copy of + the License at https://www.apache.org/licenses/LICENSE-2.0. Unless required by + applicable law or agreed to in writing, software distributed under the License is distributed on an + “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and limitations under the License. + + _First printing, July 2023_ + ], + lowercase-references: false +) + +#part("Part One Title") + +#chapter("Sectioning Examples", image: image("./orange2.jpg"), l: "chap1") +#index("Sectioning") + +== Section Title +#index("Sectioning!Sections") + +#lorem(50) +#footnote[Footnote example text...Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, +imperdiet urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie.] + +#lorem(50) + +=== Subsection Title +#index("Sectioning!Subsections") + +#lorem(50) + +#lorem(50) + +#lorem(50) + +==== Subsubsection Title +#index("Sectioning!Subsubsections") + +#lorem(100) + +===== Paragraph Title +#index("Sectioning!Paragraphs") +#lorem(50) +#lorem(50) +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#lorem(50) + +#heading(level:2, numbering: none, "Unnumbered Section", outlined: false) +#heading(level:3, numbering: none, "Unnumbered Subsection", outlined: false) +#heading(level:4, numbering: none, "Unnumbered Subsubsection", outlined: false) + +// Chapter can also be defined in this way +#update-heading-image(image: image("./orange2.jpg")) += In-text Element Examples + +== Referencing Publications +#index("Citation") +This statement requires citation @Smith:2022jd; this one is more specific @Smith:2021qr[page.~162]. +== Link Examples +#index("Links") +This is a URL link: #link("https://www.latextemplates.com")[LaTeX Templates]. This is an email link: #link("mailto:example@example.com")[example\@example.com]. This is a +monospaced URL link: https://www.LaTeXTemplates.com. +== Lists +#index("Lists") +Lists are useful to present information in a concise and/or ordered way. +=== Numbered List +#index("Lists!Numbered List") ++ First numbered item + + First indented numbered item + + Second indented numbered item + + First second-level indented numbered item + + Second second-level indented numbered item +2. Second numbered item +3. Third numbered item +=== Bullet Point List +#index("Lists!Bullet Points") +- First bullet point item + - First indented bullet point item + - Second indented bullet point item + - First second-level indented bullet point item +- Second bullet point item +- Third bullet point item +=== Descriptions and Definitions +#index("Lists!Descriptions and Definitions") +/ Name: Definition +/ Word: Definition +/ Comment: Elaboration +== International Support +àáâäãåèéêëìíîïòóôöõøùúûüÿýñçˇcšž \ +ÀÁÂÄÃÅÈÉÊËÌÍÎÏÒÓÔÖÕØÙÚÛÜŸÝÑ \ +ßÇŒÆ ˇCŠŽ +== Ligatures +fi fj fl ffl ffi Ty + +== Referencing Chapters +#index("Referencing") +This statement references to another chapter @chap1. This statement references to another heading @heading1. This statement references to another heading @heading2. + +#part("Part Two Title") + +#chapter("Mathematics", image: image("./orange2.jpg")) + +== Theorems +#index("Theorems") +=== Several equations +#index("Theorems!Several equations") +This is a theorem consisting of several equations. +#theorem(name: "Name of the theorem")[ + In $E=bb(R)^n$ all norms are equivalent. It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] + +=== Single Line +#index("Theorems!Single Line") +This is a theorem consisting of just one line. +#theorem()[ + A set $mathcal(D)(G)$ in dense in $L^2(G)$, $|dot|_0$. +] +== Definitions +#index("Definitions") +A definition can be mathematical or it could define a concept. +#definition(name: "Definition name")[ + Given a vector space $E$, a norm on $E$ is an application, denoted $norm(dot)$, $E$ in $bb(R)^+ = [0,+∞[$ such that: + $ norm(bold(x)) = 0 arrow.r.double bold(x) = bold(0) $ + $ norm(lambda bold(x)) = abs(lambda) dot norm(bold(x)) $ + $ norm(bold(x) + bold(y)) lt.eq norm(bold(x)) + norm(bold(y)) $ +] +== Notations +#index("Notations") + +#notation()[ + Given an open subset $G$ of $bold(R)^n$, the set of functions $phi$ are: + #v(0.5em, weak: true) + + Bounded support $G$; + + Infinitely differentiable; + #v(0.5em, weak: true) + a vector space is denoted by $mathcal(D)(G)$. +] +== Remarks +#index("Remarks") +This is an example of a remark. + +#remark()[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] + +== Corollaries +#index("Corollaries") +#corollary(name: "Corollary name")[ + The concepts presented here are now in conventional employment in mathematics. Vector spaces are taken over the field $bb(K)=bb(R)$, however, established properties are easily extended to $bb(K)=bb(C)$. +] +== Propositions +#index("Propositions") +=== Several equations +#index("Propositions!Several equations") + +#proposition(name: "Proposition name")[ + It has the properties: + $ abs(norm(bold(x)) - norm(bold(y))) <= norm(bold(x-y)) $ + $ norm(sum_(i=1)^n bold(x)_i) <= sum_(i=1)^n norm(bold(x)_i) quad "where" n "is a finite integer" $ +] +=== Single Line +#index("Propositions!Single Line") + +#proposition()[ + Let $f,g in L^2(G)$; if $forall phi in mathcal(D) (G)$, $(f,phi)_0=(g,phi)_0$ then $f = g$. +] +== Examples +#index("Examples") +=== Equation Example +#index("Examples!Equation") +#example()[ + Let $G=\(x in bb(R)^2:|x|<3\)$ and denoted by: $x^0=(1,1)$; consider the function: + + $ f(x) = cases( + e^(abs(x)) quad & "si" |x-x^0| lt.eq 1 slash 2, + 0 & "si" |x-x^0| gt 1 slash 2 + ) $ + + The function $f$ has bounded support, we can take $A={x in bb(R)^2:|x-x^0| lt.eq 1 slash 2+ epsilon}$ for all $epsilon in lr(\] 0\;5 slash 2-sqrt(2) \[, size: #70%) $. +] + +=== Text Example +#index("Examples!Text") + +#example(name: "Example name")[ + Aliquam arcu turpis, ultrices sed luctus ac, vehicula id metus. Morbi eu feugiat velit, et tempus augue. Proin ac mattis tortor. Donec tincidunt, ante rhoncus luctus semper, arcu lorem lobortis justo, nec convallis ante quam quis lectus. Aenean tincidunt sodales massa, et hendrerit tellus mattis ac. Sed non pretium nibh. Donec cursus maximus luctus. Vivamus lobortis eros et massa porta porttitor. +] + +== Exercises +#index("Exercises") +#exercise()[ + This is a good place to ask a question to test learning progress or further cement ideas into students' minds. +] +== Problems +#index("Problems") + +#problem()[ + What is the average airspeed velocity of an unladen swallow? +] + +== Vocabulary +#index("Vocabulary") + +Define a word to improve a students' vocabulary. + +#vocabulary(name: "Word")[ + Definition of word. +] + +#chapter("Presenting Information and Results with a Long Chapter Title", image: image("./orange3.jpg")) +== Table +#index("Table") +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Table caption.], +)
+ +Referencing @table in-text using its label. + +== Figure +#index("Figure") + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent porttitor arcu luctus, imperdiet +urna iaculis, mattis eros. Pellentesque iaculis odio vel nisl ullamcorper, nec faucibus ipsum molestie. +Sed dictum nisl non aliquet porttitor. Etiam vulputate arcu dignissim, finibus sem et, viverra nisl. +Aenean luctus congue massa, ut laoreet metus ornare in. Nunc fermentum nisi imperdiet lectus +tincidunt vestibulum at ac elit. Nulla mattis nisl eu malesuada suscipit. + +#figure( + image("creodocs_logo.svg", width: 50%), + caption: [Figure caption.], +)
+ +Referencing @figure in-text using its label and referencing @figure1 in-text using its label. + +#figure( + placement: top, + table( + columns: (auto, auto, auto), + inset: 10pt, + align: horizon, + [*Treatments*], [*Response 1*], [*Response 2*], + [Treatment 1], + [0.0003262], + [0.562], + [Treatment 2], + [0.0015681], + [0.910], + [Treatment 3], + [0.0009271], + [0.296], + ), + caption: [Floating table.], +) + +#figure( + placement: bottom, + image("creodocs_logo.svg", width: 100%), + caption: [Floating figure.], +) + +#my-bibliography( bibliography("sample.bib")) + +#make-index(title: "Index") + +#show: appendices.with("Appendices") + +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) +#chapter("Appendix Chapter Title", image: image("./orange2.jpg")) + +== Appendix Section Title + +#lorem(50) \ No newline at end of file diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/theorems.typ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/theorems.typ new file mode 100644 index 00000000000..f7e9b774423 --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/theorems.typ @@ -0,0 +1,316 @@ +// Store theorem environment numbering + +#let translations = ( + "theorem": ( + "en": "Theorem", + "ru": "Теорема", + "ca": "Teorema", + "de": "Satz", + "fr": "Théorème", + "es": "Teorema", + ), + "proposition": ( + "en": "Proposition", + "ru": "Пропозиция", + "ca": "Proposició", + "de": "Proposition", + "fr": "Proposition", + "es": "Proposición", + ), + "lemma": ( + "en": "Lemma", + "ru": "Лемма", + "ca": "Lema", + "de": "Lemma", + "fr": "Lemme", + "es": "Lema", + ), + "corollary": ( + "en": "Corollary", + "ru": "Следствие", + "ca": "Coroŀlari", + "de": "Korollar", + "fr": "Corollaire", + "es": "Corolario", + ), + "definition": ( + "en": "Definition", + "ru": "Определение", + "ca": "Definició", + "de": "Definition", + "fr": "Définition", + "es": "Definición", + ), + "example": ( + "en": "Example", + "ru": "Пример", + "ca": "Exemple", + "de": "Beispiel", + "fr": "Exemple", + "es": "Ejemplo", + "it": "Esempio", + ), + "remark": ( + "en": "Remark", + "ru": "Примечание", + "ca": "Observació", + "de": "Bemerkung", + "fr": "Remarque", + "es": "Observación", + "it": "Osservazione", + ), + "note": ( + "en": "Note", + "ru": "Замечание", + "ca": "Nota", + "de": "Notiz", + "fr": "Note", + "es": "Nota", + "it": "Nota", + ), + "exercise": ( + "en": "Exercise", + "ru": "Упражнение", + "ca": "Exercici", + "de": "Übung", + "fr": "Exercice", + "es": "Ejercicio", + "it": "Esercizio", + ), + "algorithm": ( + "en": "Algorithm", + "ru": "Алгоритм", + "ca": "Algorisme", + "de": "Algorithmus", + "fr": "Algorithme", + "es": "Algoritmo", + ), + "claim": ( + "en": "Claim", + "ru": "Утверждение", + "ca": "Afirmació", + "de": "Behauptung", + "fr": "Assertion", + "es": "Afirmación", + ), + "axiom": ( + "en": "Axiom", + "ru": "Аксиома", + "ca": "Axioma", + "de": "Axiom", + "fr": "Axiome", + "es": "Axioma", + ), + "proof": ( + "en": "Proof", + "ru": "Доказательство", + "ca": "Demostració", + "de": "Beweis", + "fr": "Démonstration", + "es": "Demostración", + ), + "proof-of": ( + "en": "Proof of", + "ru": "Доказательство", + "ca": "Demostració del", + "de": "Beweis von", + "fr": "Démonstration du", + "es": "Demostración del", + ), + "notation": ( + "en": "Notation", + "ru": "Обозначение", + "ca": "Notació", + "de": "Notation", + "fr": "Notation", + "es": "Notación", + ), + "problem": ( + "en": "Problem", + "ru": "Проблема", + "ca": "Problema", + "de": "Problem", + "fr": "Problème", + "es": "Problema", + ), + "vocabulary": ( + "en": "Vocabulary", + "ru": "Словарь", + "ca": "Vocabulari", + "de": "Wortschatz", + "fr": "Vocabulaire", + "es": "Vocabulario", + ), +) + +#let translation(key) = { + let lang-dict = translations.at(key, default: key) + // If default value was returned + return if type(lang-dict) == str { + lang-dict + } else { + context lang-dict.at(text.lang, default: lang-dict.at("en", default: key)) + } +} + +#let thmcounters = state( + "thm", + ( + "counters": ("heading": ()), + "latest": (), + ), +) + +#let thmenv(identifier, base, base_level, fmt) = { + + let global_numbering = numbering + + return ( + body, + name: none, + numbering: "1.1", + base: base, + base_level: base_level, + ) => { + set par(first-line-indent: 0em) + let number = none + if not numbering == none { + context { + let her = here() + thmcounters.update(thmpair => { + let counters = thmpair.at("counters") + // Manually update heading counter + counters.at("heading") = counter(heading).at(her) + if not identifier in counters.keys() { + counters.insert(identifier, (0,)) + } + + let tc = counters.at(identifier) + if base != none { + let bc = counters.at(base) + + // Pad or chop the base count + if base_level != none { + if bc.len() < base_level { + bc = bc + (0,) * (base_level - bc.len()) + } else if bc.len() > base_level { + bc = bc.slice(0, base_level) + } + } + + // Reset counter if the base counter has updated + if tc.slice(0, -1) == bc { + counters.at(identifier) = (..bc, tc.last() + 1) + } else { + counters.at(identifier) = (..bc, 1) + } + } else { + // If we have no base counter, just count one level + counters.at(identifier) = (tc.last() + 1,) + let latest = counters.at(identifier) + } + + let latest = counters.at(identifier) + return ( + "counters": counters, + "latest": latest, + ) + }) + } + + number = context { + global_numbering(numbering, ..thmcounters.get().at("latest")) + } + } + + fmt(name, number, body) + } +} + + +#let thmref( + label, + fmt: auto, + makelink: true, + ..body, +) = { + if fmt == auto { + fmt = (nums, body) => { + if body.pos().len() > 0 { + body = body.pos().join(" ") + return [#body #numbering("1.1", ..nums)] + } + return numbering("1.1", ..nums) + } + } + + context { + let elements = query(label) + let locationreps = elements.map(x => repr(x.location().position())).join(", ") + assert( + elements.len() > 0, + message: "label <" + str(label) + "> does not exist in the document: referenced at " + repr(here().position()), + ) + assert( + elements.len() == 1, + message: "label <" + str(label) + "> occurs multiple times in the document: found at " + locationreps, + ) + let target = elements.first().location() + let number = thmcounters.at(target).at("latest") + if makelink { + return link(target, fmt(number, body)) + } + return fmt(number, body) + } +} + + +#let thmbox( + identifier, + fill: none, + stroke: none, + inset: 1.2em, + radius: 0.3em, + breakable: false, + padding: (top: 0.5em, bottom: 0.5em), + namefmt: x => [(#x)], + titlefmt: strong, + bodyfmt: x => x, + separator: [#h(0.1em):#h(0.2em)], + base: "heading", + base_level: none, +) = { + let boxfmt(name, number, body) = { + if not name == none { + name = [ #namefmt(name)] + } else { + name = [] + } + let title = translation(identifier) + if not number == none { + title += " " + number + } + title = titlefmt(title) + body = bodyfmt(body) + block( + fill: fill, + stroke: stroke, + spacing: 1.2em, + inset: inset, + width: 100%, + radius: radius, + breakable: breakable, + [#title#name#separator#body], + ) + } + return thmenv(identifier, base, base_level, boxfmt) +} + + +#let thmplain = thmbox.with( + padding: (top: 0em, bottom: 0em), + breakable: true, + inset: (top: 0em, left: 1.2em, right: 1.2em), + namefmt: name => emph([(#name)]), + titlefmt: emph, +) diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/thumbnail.png b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/thumbnail.png new file mode 100644 index 00000000000..fb77c232b5d Binary files /dev/null and b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/thumbnail.png differ diff --git a/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/typst.toml b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/typst.toml new file mode 100644 index 00000000000..238df9b0c1b --- /dev/null +++ b/src/resources/extension-subtrees/orange-book/_extensions/orange-book/typst/packages/local/orange-book/0.7.1/typst.toml @@ -0,0 +1,16 @@ +[package] +name = "orange-book" +version = "0.7.1" +compiler = "0.14.0" +entrypoint = "lib.typ" +repository = "https://github.com/flavio20002/typst-orange-template" +authors = ["Flavio Barisi"] +license = "MIT-0" +description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel" +keywords = ["book"] +categories = ["book"] + +[template] +path = "template" +entrypoint = "main.typ" +thumbnail = "thumbnail.png" diff --git a/src/resources/filters/ast/emulatedfilter.lua b/src/resources/filters/ast/emulatedfilter.lua index 06d81575802..6cdac18878f 100644 --- a/src/resources/filters/ast/emulatedfilter.lua +++ b/src/resources/filters/ast/emulatedfilter.lua @@ -62,6 +62,7 @@ inject_user_filters_at_entry_points = function(filter_list) return end end + local filter = { name = entry_point .. "-user-" .. tostring(entry_point_counts[entry_point]), -- The filter might not work as expected when doing a non-lazy jog, so diff --git a/src/resources/filters/common/filemetadata.lua b/src/resources/filters/common/filemetadata.lua index e8718b3fe6a..859aff6d45c 100644 --- a/src/resources/filters/common/filemetadata.lua +++ b/src/resources/filters/common/filemetadata.lua @@ -45,7 +45,7 @@ function currentFileMetadataState() end -function resetFileMetadata() +function resetFileMetadata() fileMetadataState = { file = nil, appendix = false, @@ -53,4 +53,4 @@ function resetFileMetadata() } end - + diff --git a/src/resources/filters/crossref/equations.lua b/src/resources/filters/crossref/equations.lua index 40652314e17..e7e204cd34f 100644 --- a/src/resources/filters/crossref/equations.lua +++ b/src/resources/filters/crossref/equations.lua @@ -123,8 +123,10 @@ function renderEquation(eq, label, alt, order) escaped_alt = escaped_alt:gsub('"', '\\"') alt_param = ", alt: \"" .. escaped_alt .. "\"" end + -- Use equation-numbering variable defined in template + -- (simple "(1)" for articles, chapter-based function for books) result:insert(pandoc.RawInline("typst", - "#math.equation(block: " .. is_block .. ", numbering: \"(1)\"" .. alt_param .. ", [ ")) + "#math.equation(block: " .. is_block .. ", numbering: equation-numbering" .. alt_param .. ", [ ")) result:insert(eq) result:insert(pandoc.RawInline("typst", " ])<" .. label .. ">")) diff --git a/src/resources/filters/customnodes/callout.lua b/src/resources/filters/customnodes/callout.lua index 8556981a0a8..96442077321 100644 --- a/src/resources/filters/customnodes/callout.lua +++ b/src/resources/filters/customnodes/callout.lua @@ -285,8 +285,17 @@ function _callout_main() warn("Callout ID '" .. callout.attr.identifier .. "' has unknown reference type '" .. (ref_type or "none") .. "'. Rendering as regular callout without cross-reference support.") end + -- Check if this is a margin callout (has .column-margin or .aside class) + local is_margin = hasMarginColumn(callout.attr) + local alignment, dy, shift + if is_margin then + alignment = callout.attr.attributes and callout.attr.attributes["alignment"] or "baseline" + dy = callout.attr.attributes and callout.attr.attributes["dy"] or "0pt" + shift = callout.attr.attributes and callout.attr.attributes["shift"] or "auto" + end + if category == nil then - return _quarto.format.typst.function_call("callout", { + local typst_callout_basic = _quarto.format.typst.function_call("callout", { { "body", _quarto.format.typst.as_typst_content(callout.content) }, { "title", _quarto.format.typst.as_typst_content( (not quarto.utils.is_empty_node(callout.title) and callout.title) or @@ -297,6 +306,20 @@ function _callout_main() { "icon", pandoc.RawInline("typst", callout.icon == false and "none" or ("" .. icon .. "()"))}, { "body_background_color", pandoc.RawInline("typst", body_background_color)} }) + + -- Wrap in #note() for margin placement if needed + if is_margin then + local result = pandoc.Blocks({}) + result:insert(pandoc.RawBlock("typst", + '#note(alignment: "' .. alignment .. '", dy: ' .. dy .. + ', shift: ' .. _quarto.format.typst.format_shift_param(shift) .. ', counter: none)[')) + result:extend(quarto.utils.as_blocks(typst_callout_basic)) + result:insert(pandoc.RawBlock("typst", ']')) + result:insert(pandoc.RawBlock("typst", '\n\n')) + return result + end + + return typst_callout_basic end local typst_callout = _quarto.format.typst.function_call("callout", { @@ -308,13 +331,35 @@ function _callout_main() { "icon", pandoc.RawInline("typst", callout.icon == false and "none" or ("" .. icon .. "()"))}, { "body_background_color", pandoc.RawInline("typst", body_background_color)} }) + + -- For crossref callouts in margin, wrap the entire figure in #note() + if is_margin then + local typst_figure = make_typst_figure { + content = typst_callout, + caption_location = "top", + caption = pandoc.Plain(pandoc.Str("")), + kind = "quarto-callout-" .. _quarto.modules.callouts.displayName(callout.type), + supplement = param("crossref-" .. callout.type .. "-prefix") or category.name, + numbering = nil, -- handled by callout-numbering in template + identifier = callout.attr.identifier + } + local result = pandoc.Blocks({}) + result:insert(pandoc.RawBlock("typst", + '#note(alignment: "' .. alignment .. '", dy: ' .. dy .. + ', shift: ' .. _quarto.format.typst.format_shift_param(shift) .. ', counter: none)[')) + result:extend(quarto.utils.as_blocks(typst_figure)) + result:insert(pandoc.RawBlock("typst", ']')) + result:insert(pandoc.RawBlock("typst", '\n\n')) + return result + end + return make_typst_figure { content = typst_callout, caption_location = "top", caption = pandoc.Plain(pandoc.Str("")), kind = "quarto-callout-" .. _quarto.modules.callouts.displayName(callout.type), supplement = param("crossref-" .. callout.type .. "-prefix") or category.name, - numbering = "1", + numbering = nil, -- handled by callout-numbering in template identifier = callout.attr.identifier } end) diff --git a/src/resources/filters/customnodes/floatreftarget.lua b/src/resources/filters/customnodes/floatreftarget.lua index f1dffaf7e09..6d70e90db08 100644 --- a/src/resources/filters/customnodes/floatreftarget.lua +++ b/src/resources/filters/customnodes/floatreftarget.lua @@ -4,6 +4,9 @@ local drop_class = require("modules/filters").drop_class local patterns = require("modules/patterns") +-- Track whether we've injected the Typst show rule for listing alignment +local injected_listing_align_rule = false + local function split_longtable_start(content_str) -- we use a hack here to split the content into params and actual content -- see https://github.com/quarto-dev/quarto-cli/issues/7655#issuecomment-1821181132 @@ -975,6 +978,16 @@ end, function(float) local kind = "quarto-float-" .. ref local supplement = titleString(ref, info.name) + -- Inject show rule to left-align listing figures (only once per document) + -- This overrides any template centering for listing-kind figures + -- https://github.com/quarto-dev/quarto-cli/issues/9724 + if ref == "lst" and not injected_listing_align_rule then + injected_listing_align_rule = true + quarto.doc.include_text("before-body", [[ +#show figure.where(kind: "quarto-float-lst"): set align(start) +]]) + end + -- Check if this is a margin figure (has .column-margin or .aside class) -- Skip margin handling for subfloats - the parent handles margin placement if hasMarginColumn(float) and not float.parent_id then @@ -1004,7 +1017,6 @@ end, function(float) {"label", pandoc.RawInline("typst", "<" .. float.identifier .. ">")}, {"position", pandoc.RawInline("typst", caption_location)}, {"supplement", supplement}, - {"subrefnumbering", "1a"}, {"subcapnumbering", "(a)"}, _quarto.modules.typst.as_typst_content(content) }, false)) @@ -1048,10 +1060,6 @@ end, function(float) local wideblock_side = getWideblockSide(float.classes) if wideblock_side then local content = quarto.utils.as_blocks(float.content or {}) - -- Listings should not be centered inside the figure - if ref == "lst" then - content:insert(1, pandoc.RawBlock("typst", "#set align(left)")) - end local caption_location = cap_location(float) if caption_location ~= "top" and caption_location ~= "bottom" then caption_location = "bottom" @@ -1095,21 +1103,15 @@ end, function(float) caption_location = "bottom" end - if (ref == "lst") then - -- FIXME: - -- Listings shouldn't emit centered blocks. - -- We don't know how to disable that right now using #show rules for #figures in template. - content:insert(1, pandoc.RawBlock("typst", "#set align(left)")) - end - if float.has_subfloats then + -- subrefnumbering defaults to subfloat-numbering in quarto_super + -- (simple "1a" for articles, chapter-based "1.1a" for books) return _quarto.format.typst.function_call("quarto_super", { {"kind", kind}, {"caption", _quarto.modules.typst.as_typst_content(float.caption_long)}, {"label", pandoc.RawInline("typst", "<" .. float.identifier .. ">")}, {"position", pandoc.RawInline("typst", caption_location)}, {"supplement", supplement}, - {"subrefnumbering", "1a"}, {"subcapnumbering", "(a)"}, _quarto.modules.typst.as_typst_content(content) }, false) diff --git a/src/resources/filters/customnodes/theorem.lua b/src/resources/filters/customnodes/theorem.lua index e05eca41024..407e26e776b 100644 --- a/src/resources/filters/customnodes/theorem.lua +++ b/src/resources/filters/customnodes/theorem.lua @@ -93,19 +93,114 @@ _quarto.ast.add_handler({ end }) +-- Get theorem-appearance option (simple, fancy, clouds, rainbow) +local function get_theorem_appearance() + local appearance = option("theorem-appearance", "simple") + if appearance ~= nil and type(appearance) == "table" then + appearance = pandoc.utils.stringify(appearance) + end + return appearance or "simple" +end + +-- Color mapping for clouds/rainbow themes (per theorem type) +local theme_colors = { + thm = "red", lem = "teal", cor = "navy", prp = "blue", + cnj = "navy", def = "olive", exm = "green", exr = "purple", alg = "maroon" +} + local included_typst_theorems = false local letted_typst_theorem = {} local function ensure_typst_theorems(reftype) + local appearance = get_theorem_appearance() + if not included_typst_theorems then included_typst_theorems = true - quarto.doc.include_text("in-header", "#import \"@preview/ctheorems:1.1.3\": *") - quarto.doc.include_text("in-header", "#show: thmrules") + + if appearance == "fancy" then + -- Import theorion's make-frame and fancy-box theming + quarto.doc.include_text("in-header", [[ +#import "@preview/theorion:0.4.1": make-frame, cosmos +#import cosmos.fancy: fancy-box, set-primary-border-color, set-primary-body-color, set-secondary-border-color, set-secondary-body-color, set-tertiary-border-color, set-tertiary-body-color, get-primary-border-color, get-primary-body-color, get-secondary-border-color, get-secondary-body-color, get-tertiary-border-color, get-tertiary-body-color +]]) + -- Set theorem colors from brand-color (runs in before-body, after brand-color is defined) + quarto.doc.include_text("before-body", [[ +#set-primary-border-color(brand-color.at("primary", default: green.darken(30%))) +#set-primary-body-color(brand-color.at("primary", default: green).lighten(90%)) +#set-secondary-border-color(brand-color.at("secondary", default: orange)) +#set-secondary-body-color(brand-color.at("secondary", default: orange).lighten(90%)) +#set-tertiary-border-color(brand-color.at("tertiary", default: blue.darken(30%))) +#set-tertiary-body-color(brand-color.at("tertiary", default: blue).lighten(90%)) +]]) + elseif appearance == "clouds" then + -- Import theorion's make-frame and clouds render function + quarto.doc.include_text("in-header", [[ +#import "@preview/theorion:0.4.1": make-frame, cosmos +#import cosmos.clouds: render-fn as clouds-render +]]) + elseif appearance == "rainbow" then + -- Import theorion's make-frame and rainbow render function + quarto.doc.include_text("in-header", [[ +#import "@preview/theorion:0.4.1": make-frame, cosmos +#import cosmos.rainbow: render-fn as rainbow-render +]]) + else -- simple (default) + -- Import only make-frame and define simple render function + quarto.doc.include_text("in-header", [[ +#import "@preview/theorion:0.4.1": make-frame + +// Simple theorem render: bold title with period, italic body +#let simple-theorem-render(prefix: none, title: "", full-title: auto, body) = { + if full-title != "" and full-title != auto and full-title != none { + strong[#full-title.] + h(0.5em) + } + emph(body) + parbreak() +} +]]) + end end + if not letted_typst_theorem[reftype] then letted_typst_theorem[reftype] = true local theorem_type = theorem_types[reftype] - quarto.doc.include_text("in-header", "#let " .. theorem_type.env .. " = thmbox(\"" .. - theorem_type.env .. "\", \"" .. titleString(reftype, theorem_type.title) .. "\")") + local title = titleString(reftype, theorem_type.title) + + -- Build render code based on appearance + local render_code + if appearance == "fancy" then + -- Map theorem styles to color schemes (primary=definitions, secondary=theorems, tertiary=propositions) + local color_scheme = "secondary" -- default for most theorem types + if theorem_type.style == "definition" then + color_scheme = "primary" + elseif reftype == "prp" then + color_scheme = "tertiary" + end + render_code = " render: fancy-box.with(\n" .. + " get-border-color: get-" .. color_scheme .. "-border-color,\n" .. + " get-body-color: get-" .. color_scheme .. "-body-color,\n" .. + " get-symbol: loc => none,\n" .. + " ),\n" + elseif appearance == "clouds" then + local color = theme_colors[reftype] or "gray" + render_code = " render: clouds-render.with(fill: " .. color .. ".lighten(85%)),\n" + elseif appearance == "rainbow" then + local color = theme_colors[reftype] or "gray" + render_code = " render: rainbow-render.with(fill: " .. color .. ".darken(20%)),\n" + else -- simple + render_code = " render: simple-theorem-render,\n" + end + + -- Use theorion's make-frame with appropriate render + quarto.doc.include_text("in-header", "#let (" .. theorem_type.env .. "-counter, " .. theorem_type.env .. "-box, " .. + theorem_type.env .. ", show-" .. theorem_type.env .. ") = make-frame(\n" .. + " \"" .. theorem_type.env .. "\",\n" .. + " text(weight: \"bold\")[" .. title .. "],\n" .. + " inherited-levels: theorem-inherited-levels,\n" .. + " numbering: theorem-numbering,\n" .. + render_code .. + ")") + quarto.doc.include_text("in-header", "#show: show-" .. theorem_type.env) end end @@ -164,7 +259,7 @@ end, function(thm) ensure_typst_theorems(type) local preamble = pandoc.Plain({pandoc.RawInline("typst", "#" .. theorem_type.env .. "(")}) if name and #name > 0 then - preamble.content:insert(pandoc.RawInline("typst", '"')) + preamble.content:insert(pandoc.RawInline("typst", 'title: "')) tappend(preamble.content, name) preamble.content:insert(pandoc.RawInline("typst", '"')) end diff --git a/src/resources/filters/layout/typst.lua b/src/resources/filters/layout/typst.lua index bdc084bff17..aa529b3e7d1 100644 --- a/src/resources/filters/layout/typst.lua +++ b/src/resources/filters/layout/typst.lua @@ -220,7 +220,11 @@ function make_typst_figure(tbl) pandoc.RawInline("typst", "]), "), pandoc.RawInline("typst", "kind: \"" .. kind .. "\", "), pandoc.RawInline("typst", supplement and ("supplement: \"" .. supplement .. "\", ") or ""), - pandoc.RawInline("typst", numbering and ("numbering: \"" .. numbering .. "\", ") or ""), + -- For callouts, use callout-numbering variable defined in template + -- (simple "1" for articles, chapter-based "1.1" with appendix support for books) + pandoc.RawInline("typst", (kind and kind:find("^quarto%-callout%-")) and + "numbering: callout-numbering, " or + (numbering and ("numbering: \"" .. numbering .. "\", ") or "")), pandoc.RawInline("typst", ")"), pandoc.RawInline("typst", identifier and ("<" .. identifier .. ">") or ""), pandoc.RawInline("typst", "\n\n") @@ -327,13 +331,14 @@ end, function(layout) local is_margin = hasMarginColumn(layout.float) if has_subfloats then + -- subrefnumbering defaults to subfloat-numbering in quarto_super + -- (simple "1a" for articles, chapter-based "1.1a" for books) local super_call = _quarto.format.typst.function_call("quarto_super", { {"kind", kind}, {"caption", _quarto.format.typst.as_typst_content(layout.float.caption_long)}, {"label", pandoc.RawInline("typst", "<" .. layout.float.identifier .. ">")}, {"position", pandoc.RawInline("typst", caption_location)}, {"supplement", supplement}, - {"subrefnumbering", "1a"}, {"subcapnumbering", "(a)"}, _quarto.format.typst.as_typst_content(cells) }, false) diff --git a/src/resources/filters/main.lua b/src/resources/filters/main.lua index 81ca2778f74..3363754667a 100644 --- a/src/resources/filters/main.lua +++ b/src/resources/filters/main.lua @@ -32,6 +32,10 @@ import("./common/debug.lua") import("./common/error.lua") import("./common/figures.lua") import("./common/filemetadata.lua") + +-- Expose file metadata to extension filters. +quarto.doc.file_metadata = currentFileMetadataState + import("./common/floats.lua") import("./common/format.lua") import("./common/latex.lua") @@ -197,6 +201,21 @@ import("./quarto-init/metainit.lua") -- [/import] +-- Expose filter utilities to extensions via quarto.utils +-- file_metadata_filter() returns a filter that parses book metadata markers during traversal +-- combineFilters() merges multiple filters into one for a single traversal +-- Usage: return quarto.utils.combineFilters({quarto.utils.file_metadata_filter(), yourFilter}) +quarto.utils.file_metadata_filter = file_metadata +quarto.utils.combineFilters = combineFilters + +-- Expose file_metadata state reader to extensions via quarto.doc API +-- Returns the current file metadata state (file, appendix, include_directory) +quarto.doc.file_metadata = currentFileMetadataState + +-- Expose crossref categories to extensions via quarto.doc.crossref +-- Provides access to all crossref category definitions (figures, tables, callouts, custom types) +quarto.doc.crossref.categories = crossref.categories + initCrossrefIndex() initShortcodeHandlers() @@ -673,7 +692,7 @@ tappend(quarto_filter_list, quarto_pre_filters) if enableCrossRef then tappend(quarto_filter_list, quarto_crossref_filters) end -table.insert(quarto_filter_list, { name = "post-quarto", filter = {} }) -- entry point for user filters +table.insert(quarto_filter_list, { name = "post-quarto", filter = file_metadata() }) -- entry point for user filters table.insert(quarto_filter_list, { name = "pre-render", filter = {} }) -- entry point for user filters tappend(quarto_filter_list, quarto_layout_filters) tappend(quarto_filter_list, quarto_post_filters) diff --git a/src/resources/filters/quarto-finalize/book-cleanup.lua b/src/resources/filters/quarto-finalize/book-cleanup.lua index 24fe63189e2..c8cf31a7eb9 100644 --- a/src/resources/filters/quarto-finalize/book-cleanup.lua +++ b/src/resources/filters/quarto-finalize/book-cleanup.lua @@ -36,8 +36,18 @@ function cleanupFileMetadata(el) end function cleanupBookPart(el) - if el.attr.classes:includes('quarto-book-part') and not _quarto.format.isLatexOutput() then - return pandoc.Div({}) + if el.attr.classes:includes('quarto-book-part') then + if _quarto.format.isLatexOutput() then + -- Keep div for LaTeX (Pandoc's LaTeX writer handles divs without issue) + return el + elseif _quarto.format.isTypstOutput() then + -- Unwrap content for Typst to avoid #block[] wrapper that breaks pagebreak() + -- The content is already transformed to #part[...] by book-numbering.lua + return el.content + else + -- Remove for other formats (HTML etc.) that don't support parts + return pandoc.Div({}) + end end end diff --git a/src/resources/filters/quarto-post/typst-brand-yaml.lua b/src/resources/filters/quarto-post/typst-brand-yaml.lua index f23190d727c..e03ca02288e 100644 --- a/src/resources/filters/quarto-post/typst-brand-yaml.lua +++ b/src/resources/filters/quarto-post/typst-brand-yaml.lua @@ -61,68 +61,76 @@ function render_typst_brand_yaml() local brand = param('brand') local brandMode = param('brand-mode') or 'light' brand = brand and brand[brandMode] - if brand and brand.processedData then - -- color - if brand.processedData.color and next(brand.processedData.color) then - local brandColor = brand.processedData.color - local colors = {} - for name, _ in pairs(brandColor) do - colors[name] = _quarto.modules.brand.get_color(brandMode, name) - end - local decl = '#let brand-color = ' .. to_typst_dict_indent(colors) - quarto.doc.include_text('in-header', decl) + + -- Always emit brand-color (empty dict if no brand colors defined) + -- This allows templates to safely use brand-color.at("primary", default: blue) + local colors = {} + local themebk = {} + local brandColor = brand and brand.processedData and brand.processedData.color + if brandColor and next(brandColor) then + for name, _ in pairs(brandColor) do + colors[name] = _quarto.modules.brand.get_color(brandMode, name) + end + for name, _ in pairs(brandColor) do if brandColor.background then - quarto.doc.include_text('in-header', '#set page(fill: brand-color.background)') - end - if brandColor.foreground then - quarto.doc.include_text('in-header', '#set text(fill: brand-color.foreground)') - quarto.doc.include_text('in-header', '#set table.hline(stroke: (paint: brand-color.foreground))') - quarto.doc.include_text('in-header', '#set line(stroke: (paint: brand-color.foreground))') - - end - local themebk = {} - for name, _ in pairs(brandColor) do - if brandColor.background then - local brandPercent = 15 - if brandMode == 'dark' then - brandPercent = 50 - end - local bkPercent = 100 - brandPercent - themebk[name] = 'color.mix((brand-color.' .. name .. ', ' .. brandPercent .. '%), (brand-color.background, ' .. bkPercent .. '%))' - else - themebk[name] = 'brand-color.' .. name .. '.lighten(85%)' + local brandPercent = 15 + if brandMode == 'dark' then + brandPercent = 50 end + local bkPercent = 100 - brandPercent + themebk[name] = 'color.mix((brand-color.' .. name .. ', ' .. brandPercent .. '%), (brand-color.background, ' .. bkPercent .. '%))' + else + themebk[name] = 'brand-color.' .. name .. '.lighten(85%)' end - local decl = '#let brand-color-background = ' .. to_typst_dict_indent(themebk) - quarto.doc.include_text('in-header', decl) end - if brand.processedData.logo and next(brand.processedData.logo) then - local logo = brand.processedData.logo - if logo.images then - local declImage = {} - for name, image in pairs(logo.images) do - declImage[name] = { - path = quote_string(image.path):gsub('\\', '\\\\'), - alt = quote_string(image.alt), - } - end - if next(declImage) then - quarto.doc.include_text('in-header', '#let brand-logo-images = ' .. to_typst_dict_indent(declImage)) - end + end + -- Always emit brand-color and brand-color-background FIRST (before any usage) + local colorDecl = '#let brand-color = ' .. (to_typst_dict_indent(colors) or '(:)') + quarto.doc.include_text('in-header', colorDecl) + local bkDecl = '#let brand-color-background = ' .. (to_typst_dict_indent(themebk) or '(:)') + quarto.doc.include_text('in-header', bkDecl) + -- Now emit the #set statements that USE brand-color + if brandColor and next(brandColor) then + if brandColor.background then + quarto.doc.include_text('in-header', '#set page(fill: brand-color.background)') + end + if brandColor.foreground then + quarto.doc.include_text('in-header', '#set text(fill: brand-color.foreground)') + quarto.doc.include_text('in-header', '#set table.hline(stroke: (paint: brand-color.foreground))') + quarto.doc.include_text('in-header', '#set line(stroke: (paint: brand-color.foreground))') + end + end + + -- Always emit brand-logo (empty dict if no logos defined) + -- This allows templates to safely use brand-logo.at("medium", default: none) + local declLogo = {} + local brandLogo = brand and brand.processedData and brand.processedData.logo + if brandLogo and next(brandLogo) then + if brandLogo.images then + local declImage = {} + for name, image in pairs(brandLogo.images) do + declImage[name] = { + path = quote_string(image.path):gsub('\\', '\\\\'), + alt = quote_string(image.alt), + } end - local declLogo = {} - for _, size in pairs({'small', 'medium', 'large'}) do - if logo[size] then - declLogo[size] = { - path = quote_string(logo[size].path):gsub('\\', '\\\\'), - alt = quote_string(logo[size].alt), - } - end + if next(declImage) then + quarto.doc.include_text('in-header', '#let brand-logo-images = ' .. to_typst_dict_indent(declImage)) end - if next(declLogo) then - quarto.doc.include_text('in-header', '#let brand-logo = ' .. to_typst_dict_indent(declLogo)) + end + for _, size in pairs({'small', 'medium', 'large'}) do + if brandLogo[size] then + declLogo[size] = { + path = quote_string(brandLogo[size].path):gsub('\\', '\\\\'), + alt = quote_string(brandLogo[size].alt), + } end end + end + local logoDecl = '#let brand-logo = ' .. (to_typst_dict_indent(declLogo) or '(:)') + quarto.doc.include_text('in-header', logoDecl) + + if brand and brand.processedData then local function conditional_entry(key, value, quote_strings) if quote_strings == null then quote_strings = true end if not value then return '' end diff --git a/src/resources/filters/quarto-post/typst.lua b/src/resources/filters/quarto-post/typst.lua index 67506b6e88b..adcbef0b3b3 100644 --- a/src/resources/filters/quarto-post/typst.lua +++ b/src/resources/filters/quarto-post/typst.lua @@ -191,23 +191,15 @@ function render_typst() end end, Header = function(el) + -- Add unnumbered class for headings deeper than number-depth if number_depth and el.level > number_depth then el.classes:insert("unnumbered") end - if not el.classes:includes("unnumbered") and not el.classes:includes("unlisted") then - return nil - end - local params = pandoc.List({ - {"level", el.level}, - }) - if el.classes:includes("unnumbered") then - params:insert({"numbering", pandoc.RawInline("typst", "none")}) - end - if el.classes:includes("unlisted") then - params:insert({"outlined", false}) - end - params:insert({_quarto.format.typst.as_typst_content(el.content)}) - return _quarto.format.typst.function_call("heading", params) + -- Let Pandoc handle all headings natively - it correctly converts + -- unnumbered/unlisted classes to Typst syntax (numbering: none, outlined: false) + -- without wrapping in #block[], which is needed for compatibility with + -- Typst templates that use pagebreak() in heading show rules. + -- (Pandoc added native .unnumbered support for Typst in v3.1.13, April 2024) end, } } diff --git a/src/resources/filters/quarto-pre/book-numbering.lua b/src/resources/filters/quarto-pre/book-numbering.lua index 64f8be0211e..48b393d6113 100644 --- a/src/resources/filters/quarto-pre/book-numbering.lua +++ b/src/resources/filters/quarto-pre/book-numbering.lua @@ -1,8 +1,71 @@ -- book-numbering.lua -- Copyright (C) 2020-2022 Posit Software, PBC -function book_numbering() +-- For Typst books, generate a show rule that resets Quarto's custom figure +-- counters at each chapter (level-1 heading). Orange-book only resets +-- kind:image and kind:table, but Quarto uses custom kinds for figures, +-- tables, listings, callouts, custom crossref categories, and math equations. +local function typst_book_counter_reset_rule() + if not _quarto.format.isTypstOutput() then + return nil + end + if not param("single-file-book", false) then + return nil + end + + -- Collect all Typst figure kinds that need counter resets + local kinds = pandoc.List({}) + + for _, category in ipairs(crossref.categories.all) do + if category.kind == "float" then + -- Floats use "quarto-float-" .. ref_type (e.g., quarto-float-fig) + kinds:insert("quarto-float-" .. category.ref_type) + elseif category.kind == "Block" then + -- Block kinds (callouts) use "quarto-callout-" .. name (e.g., quarto-callout-Warning) + -- Only include callout types (they have specific ref_types) + local callout_ref_types = {nte=true, wrn=true, cau=true, tip=true, imp=true} + if callout_ref_types[category.ref_type] then + kinds:insert("quarto-callout-" .. category.name) + end + end + end + + if #kinds == 0 then + return nil + end + + -- Build the show rule that resets all counters at chapter boundaries + local lines = pandoc.List({ + "// Reset Quarto's custom figure counters at each chapter (level-1 heading).", + "// Orange-book only resets kind:image and kind:table, but Quarto uses custom kinds.", + "// This list is generated dynamically from crossref.categories.", + "#show heading.where(level: 1): it => {" + }) + for _, kind in ipairs(kinds) do + lines:insert(' counter(figure.where(kind: "' .. kind .. '")).update(0)') + end + -- Reset math equation counter at chapter boundaries + lines:insert(' counter(math.equation).update(0)') + lines:insert(" it") + lines:insert("}") + + return table.concat(lines, "\n") +end + +function book_numbering() return { + Meta = function(meta) + -- Inject Typst counter reset show rule into include-before + local reset_rule = typst_book_counter_reset_rule() + if reset_rule then + ensureIncludes(meta, kIncludeBefore) + meta[kIncludeBefore]:insert(pandoc.Blocks({ + pandoc.RawBlock("typst", reset_rule) + })) + end + return meta + end, + Header = function(el) local file = currentFileMetadataState().file if file ~= nil then @@ -22,7 +85,7 @@ function book_numbering() }) tappend(partPara.content, el.content) partPara.content:insert( pandoc.RawInline('latex', '}')) - return partPara + return partPara elseif bookItemType == "appendix" then local appendixPara = pandoc.Para({ pandoc.RawInline('latex', '\\cleardoublepage\n\\phantomsection\n\\addcontentsline{toc}{part}{') @@ -40,6 +103,9 @@ function book_numbering() end end + -- Typst part/appendix handling is delegated to book extensions + -- (each Typst book package has different syntax for parts and appendices) + -- mark appendix chapters for epub if el.level == 1 and _quarto.format.isEpubOutput() then if file.appendix == true and bookItemType == "chapter" then diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/LICENSE b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/LICENSE new file mode 100644 index 00000000000..fdb0416f4ba --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 duskmoon314 (Campbell He) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/README.md b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/README.md new file mode 100644 index 00000000000..cd258ce894e --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/README.md @@ -0,0 +1,162 @@ +# typst-fontawesome + +A Typst library for Font Awesome icons through the desktop fonts. + +p.s. The library is based on the Font Awesome 6 desktop fonts (v6.6.0) + +## Usage + +### Install the fonts + +You can download the fonts from the official website: https://fontawesome.com/download + +After downloading the zip file, you can install the fonts depending on your OS. + +#### Typst web app + +You can simply upload the `otf` files to the web app and use them with this package. + +#### Mac + +You can double click the `otf` files to install them. + +#### Windows + +You can right-click the `otf` files and select `Install`. + +#### Some notes + +This library is tested with the otf files of the Font Awesome Free set. TrueType fonts may not work as expected. (Though I am not sure whether Font Awesome provides TrueType fonts, some issue is reported with TrueType fonts.) + +### Import the library + +#### Using the typst packages + +You can install the library using the typst packages: + +`#import "@preview/fontawesome:0.5.0": *` + +#### Manually install + +Copy all files start with `lib` to your project and import the library: + +`#import "lib.typ": *` + +There are three files: + +- `lib.typ`: The main entrypoint of the library. +- `lib-impl.typ`: The implementation of `fa-icon`. +- `lib-gen.typ`: The generated icon map and functions. + +I recommend renaming these files to avoid conflicts with other libraries. + +### Use the icons + +You can use the `fa-icon` function to create an icon with its name: + +`#fa-icon("chess-queen")` + +Or you can use the `fa-` prefix to create an icon with its name: + +`#fa-chess-queen()` (This is equivalent to `#fa-icon().with("chess-queen")`) + +You can also set `solid` to `true` to use the solid version of the icon: + +`#fa-icon("chess-queen", solid: true)` + +Some icons only have the solid version in the Free set, so you need to set `solid` to `true` to use them if you are using the Free set. +Otherwise, you may not get the expected glyph. + +#### Full list of icons + +You can find all icons on the [official website](https://fontawesome.com/search) + +#### Different sets + +By default, the library supports `Free`, `Brands`, `Pro`, `Duotone` and `Sharp` sets. +(See [Enable Pro sets](#enable-pro-sets) for enabling Pro sets.) + +But only `Free` and `Brands` are tested by me. +That is, three font files are used to test: + +- Font Awesome 6 Free (Also named as _Font Awesome 6 Free Regular_) +- Font Awesome 6 Free Solid +- Font Awesome 6 Brands + +Due to some limitations of typst 0.12.0, the regular and solid versions are treated as different fonts. +In this library, `solid` is used to switch between the regular and solid versions. + +To use other sets or specify one set, you can pass the `font` parameter to the inner `text` function: \ +`fa-icon("github", font: "Font Awesome 6 Pro Solid")` + +If you have Font Awesome Pro, please help me test the library with the Pro set. +Any feedback is appreciated. + +##### Enable Pro sets + +Typst 0.12.0 raise a warning when the font is not found. +To use the Pro set, `#fa-use-pro()` should be called before any `fa-*` functions. + +```typst +#fa-use-pro() // Enable Pro sets + +#fa-icon("chess-queen-piece") // Use icons from Pro sets +``` + +#### Customization + +The `fa-icon` function passes args to `text`, so you can customize the icon by passing parameters to it: + +`#fa-icon("chess-queen", fill: blue)` + +#### Stacking icons + +The `fa-stack` function can be used to create stacked icons: + +`#fa-stack(fa-icon-args: (solid: true), "square", ("chess-queen", (fill: white, size: 5.5pt)))` + +Declaration is `fa-stack(box-args: (:), grid-args: (:), fa-icon-args: (:), ..icons)` + +- The order of the icons is from the bottom to the top. +- `fa-icon-args` is used to set the default args for all icons. +- You can also control the internal `box` and `grid` by passing the `box-args` and `grid-args` to the `fa-stack` function. +- Currently, four types of icons are supported. The first three types leverage the `fa-icon` function, and the last type is just a content you want to put in the stack. + - `str`, e.g., `"square"` + - `array`, e.g., `("chess-queen", (fill: white, size: 5.5pt))` + - `arguments`, e.g. `arguments("chess-queen", solid: true, fill: white)` + - `content`, e.g. `fa-chess-queen(solid: true, fill: white)` + +#### Known Issues + +- [typst#2578](https://github.com/typst/typst/issues/2578) [typst-fontawesome#2](https://github.com/duskmoon314/typst-fontawesome/issues/2) + + This is a known issue that the ligatures may not work in headings, list items, grid items, and other elements. You can use the Unicode from the [official website](https://fontawesome.com) to avoid this issue when using Pro sets. + + For most icons, Unicode is used implicitly. So I assume we usually don't need to worry about this. + + Any help on this issue is appreciated. + +## Example + +See the [`example.typ`](https://typst.app/project/rQwGUWt5p33vrsb_uNPR9F) file for a complete example. + +## Contribution + +Feel free to open an issue or a pull request if you find any problems or have any suggestions. + +### Python helper + +The `helper.py` script is used to get metadata via the GraphQL API and generate typst code. I aim only to use standard python libraries, so running it on any platform with python installed should be easy. + +### Repo structure + +- `helper.py`: The helper script to get metadata and generate typst code. +- `lib.typ`: The main entrypoint of the library. +- `lib-impl.typ`: The implementation of `fa-icon`. +- `lib-gen.typ`: The generated functions of icons. +- `example.typ`: An example file to show how to use the library. +- `gallery.typ`: The generated gallery of icons. It is used in the example file. + +## License + +This library is licensed under the MIT license. Feel free to use it in your project. diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-gen.typ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-gen.typ new file mode 100644 index 00000000000..0ac48f1e9bf --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-gen.typ @@ -0,0 +1,9648 @@ +#import "lib-impl.typ": fa-icon + +// Generated icon list of Font Aewsome 6.6.0 + +#let fa-icon-map = ( + "0": "\u{30}", + "00": "\u{e467}", + "1": "\u{31}", + "2": "\u{32}", + "3": "\u{33}", + "360-degrees": "\u{e2dc}", + "4": "\u{34}", + "42-group": "\u{e080}", + "innosoft": "\u{e080}", + "5": "\u{35}", + "500px": "\u{f26e}", + "6": "\u{36}", + "7": "\u{37}", + "8": "\u{38}", + "9": "\u{39}", + "a": "\u{41}", + "abacus": "\u{f640}", + "accent-grave": "\u{60}", + "accessible-icon": "\u{f368}", + "accusoft": "\u{f369}", + "acorn": "\u{f6ae}", + "address-book": "\u{f2b9}", + "contact-book": "\u{f2b9}", + "address-card": "\u{f2bb}", + "contact-card": "\u{f2bb}", + "vcard": "\u{f2bb}", + "adn": "\u{f170}", + "adversal": "\u{f36a}", + "affiliatetheme": "\u{f36b}", + "airbnb": "\u{f834}", + "air-conditioner": "\u{f8f4}", + "airplay": "\u{e089}", + "alarm-clock": "\u{f34e}", + "alarm-exclamation": "\u{f843}", + "alarm-plus": "\u{f844}", + "alarm-snooze": "\u{f845}", + "album": "\u{f89f}", + "album-circle-plus": "\u{e48c}", + "album-circle-user": "\u{e48d}", + "album-collection": "\u{f8a0}", + "album-collection-circle-plus": "\u{e48e}", + "album-collection-circle-user": "\u{e48f}", + "algolia": "\u{f36c}", + "alicorn": "\u{f6b0}", + "alien": "\u{f8f5}", + "alien-8bit": "\u{f8f6}", + "alien-monster": "\u{f8f6}", + "align-center": "\u{f037}", + "align-justify": "\u{f039}", + "align-left": "\u{f036}", + "align-right": "\u{f038}", + "align-slash": "\u{f846}", + "alipay": "\u{f642}", + "alt": "\u{e08a}", + "amazon": "\u{f270}", + "amazon-pay": "\u{f42c}", + "amilia": "\u{f36d}", + "ampersand": "\u{26}", + "amp-guitar": "\u{f8a1}", + "anchor": "\u{f13d}", + "anchor-circle-check": "\u{e4aa}", + "anchor-circle-exclamation": "\u{e4ab}", + "anchor-circle-xmark": "\u{e4ac}", + "anchor-lock": "\u{e4ad}", + "android": "\u{f17b}", + "angel": "\u{f779}", + "angellist": "\u{f209}", + "angle": "\u{e08c}", + "angle-90": "\u{e08d}", + "angle-down": "\u{f107}", + "angle-left": "\u{f104}", + "angle-right": "\u{f105}", + "angles-down": "\u{f103}", + "angle-double-down": "\u{f103}", + "angles-left": "\u{f100}", + "angle-double-left": "\u{f100}", + "angles-right": "\u{f101}", + "angle-double-right": "\u{f101}", + "angles-up": "\u{f102}", + "angle-double-up": "\u{f102}", + "angles-up-down": "\u{e60d}", + "angle-up": "\u{f106}", + "angrycreative": "\u{f36e}", + "angular": "\u{f420}", + "ankh": "\u{f644}", + "ant": "\u{e680}", + "apartment": "\u{e468}", + "aperture": "\u{e2df}", + "apostrophe": "\u{27}", + "apper": "\u{f371}", + "apple": "\u{f179}", + "apple-core": "\u{e08f}", + "apple-pay": "\u{f415}", + "apple-whole": "\u{f5d1}", + "apple-alt": "\u{f5d1}", + "app-store": "\u{f36f}", + "app-store-ios": "\u{f370}", + "archway": "\u{f557}", + "arrow-down": "\u{f063}", + "arrow-down-1-9": "\u{f162}", + "sort-numeric-asc": "\u{f162}", + "sort-numeric-down": "\u{f162}", + "arrow-down-9-1": "\u{f886}", + "sort-numeric-desc": "\u{f886}", + "sort-numeric-down-alt": "\u{f886}", + "arrow-down-arrow-up": "\u{f883}", + "sort-alt": "\u{f883}", + "arrow-down-a-z": "\u{f15d}", + "sort-alpha-asc": "\u{f15d}", + "sort-alpha-down": "\u{f15d}", + "arrow-down-big-small": "\u{f88c}", + "sort-size-down": "\u{f88c}", + "arrow-down-from-arc": "\u{e614}", + "arrow-down-from-bracket": "\u{e667}", + "arrow-down-from-dotted-line": "\u{e090}", + "arrow-down-from-line": "\u{f345}", + "arrow-from-top": "\u{f345}", + "arrow-down-left": "\u{e091}", + "arrow-down-left-and-arrow-up-right-to-center": "\u{e092}", + "arrow-down-long": "\u{f175}", + "long-arrow-down": "\u{f175}", + "arrow-down-right": "\u{e093}", + "arrow-down-short-wide": "\u{f884}", + "sort-amount-desc": "\u{f884}", + "sort-amount-down-alt": "\u{f884}", + "arrow-down-small-big": "\u{f88d}", + "sort-size-down-alt": "\u{f88d}", + "arrow-down-square-triangle": "\u{f889}", + "sort-shapes-down-alt": "\u{f889}", + "arrow-down-to-arc": "\u{e4ae}", + "arrow-down-to-bracket": "\u{e094}", + "arrow-down-to-dotted-line": "\u{e095}", + "arrow-down-to-line": "\u{f33d}", + "arrow-to-bottom": "\u{f33d}", + "arrow-down-to-square": "\u{e096}", + "arrow-down-triangle-square": "\u{f888}", + "sort-shapes-down": "\u{f888}", + "arrow-down-up-across-line": "\u{e4af}", + "arrow-down-up-lock": "\u{e4b0}", + "arrow-down-wide-short": "\u{f160}", + "sort-amount-asc": "\u{f160}", + "sort-amount-down": "\u{f160}", + "arrow-down-z-a": "\u{f881}", + "sort-alpha-desc": "\u{f881}", + "sort-alpha-down-alt": "\u{f881}", + "arrow-left": "\u{f060}", + "arrow-left-from-arc": "\u{e615}", + "arrow-left-from-bracket": "\u{e668}", + "arrow-left-from-line": "\u{f344}", + "arrow-from-right": "\u{f344}", + "arrow-left-long": "\u{f177}", + "long-arrow-left": "\u{f177}", + "arrow-left-long-to-line": "\u{e3d4}", + "arrow-left-to-arc": "\u{e616}", + "arrow-left-to-bracket": "\u{e669}", + "arrow-left-to-line": "\u{f33e}", + "arrow-to-left": "\u{f33e}", + "arrow-pointer": "\u{f245}", + "mouse-pointer": "\u{f245}", + "arrow-progress": "\u{e5df}", + "arrow-right": "\u{f061}", + "arrow-right-arrow-left": "\u{f0ec}", + "exchange": "\u{f0ec}", + "arrow-right-from-arc": "\u{e4b1}", + "arrow-right-from-bracket": "\u{f08b}", + "sign-out": "\u{f08b}", + "arrow-right-from-line": "\u{f343}", + "arrow-from-left": "\u{f343}", + "arrow-right-long": "\u{f178}", + "long-arrow-right": "\u{f178}", + "arrow-right-long-to-line": "\u{e3d5}", + "arrow-right-to-arc": "\u{e4b2}", + "arrow-right-to-bracket": "\u{f090}", + "sign-in": "\u{f090}", + "arrow-right-to-city": "\u{e4b3}", + "arrow-right-to-line": "\u{f340}", + "arrow-to-right": "\u{f340}", + "arrow-rotate-left": "\u{f0e2}", + "arrow-left-rotate": "\u{f0e2}", + "arrow-rotate-back": "\u{f0e2}", + "arrow-rotate-backward": "\u{f0e2}", + "undo": "\u{f0e2}", + "arrow-rotate-right": "\u{f01e}", + "arrow-right-rotate": "\u{f01e}", + "arrow-rotate-forward": "\u{f01e}", + "redo": "\u{f01e}", + "arrows-cross": "\u{e0a2}", + "arrows-down-to-line": "\u{e4b8}", + "arrows-down-to-people": "\u{e4b9}", + "arrows-from-dotted-line": "\u{e0a3}", + "arrows-from-line": "\u{e0a4}", + "arrows-left-right": "\u{f07e}", + "arrows-h": "\u{f07e}", + "arrows-left-right-to-line": "\u{e4ba}", + "arrows-maximize": "\u{f31d}", + "expand-arrows": "\u{f31d}", + "arrows-minimize": "\u{e0a5}", + "compress-arrows": "\u{e0a5}", + "arrows-repeat": "\u{f364}", + "repeat-alt": "\u{f364}", + "arrows-repeat-1": "\u{f366}", + "repeat-1-alt": "\u{f366}", + "arrows-retweet": "\u{f361}", + "retweet-alt": "\u{f361}", + "arrows-rotate": "\u{f021}", + "refresh": "\u{f021}", + "sync": "\u{f021}", + "arrows-rotate-reverse": "\u{e630}", + "arrows-spin": "\u{e4bb}", + "arrows-split-up-and-left": "\u{e4bc}", + "arrows-to-circle": "\u{e4bd}", + "arrows-to-dot": "\u{e4be}", + "arrows-to-dotted-line": "\u{e0a6}", + "arrows-to-eye": "\u{e4bf}", + "arrows-to-line": "\u{e0a7}", + "arrows-turn-right": "\u{e4c0}", + "arrows-turn-to-dots": "\u{e4c1}", + "arrows-up-down": "\u{f07d}", + "arrows-v": "\u{f07d}", + "arrows-up-down-left-right": "\u{f047}", + "arrows": "\u{f047}", + "arrows-up-to-line": "\u{e4c2}", + "arrow-trend-down": "\u{e097}", + "arrow-trend-up": "\u{e098}", + "arrow-turn-down": "\u{f149}", + "level-down": "\u{f149}", + "arrow-turn-down-left": "\u{e2e1}", + "arrow-turn-down-right": "\u{e3d6}", + "arrow-turn-left": "\u{e632}", + "arrow-turn-left-down": "\u{e633}", + "arrow-turn-left-up": "\u{e634}", + "arrow-turn-right": "\u{e635}", + "arrow-turn-up": "\u{f148}", + "level-up": "\u{f148}", + "arrow-up": "\u{f062}", + "arrow-up-1-9": "\u{f163}", + "sort-numeric-up": "\u{f163}", + "arrow-up-9-1": "\u{f887}", + "sort-numeric-up-alt": "\u{f887}", + "arrow-up-arrow-down": "\u{e099}", + "sort-up-down": "\u{e099}", + "arrow-up-a-z": "\u{f15e}", + "sort-alpha-up": "\u{f15e}", + "arrow-up-big-small": "\u{f88e}", + "sort-size-up": "\u{f88e}", + "arrow-up-from-arc": "\u{e4b4}", + "arrow-up-from-bracket": "\u{e09a}", + "arrow-up-from-dotted-line": "\u{e09b}", + "arrow-up-from-ground-water": "\u{e4b5}", + "arrow-up-from-line": "\u{f342}", + "arrow-from-bottom": "\u{f342}", + "arrow-up-from-square": "\u{e09c}", + "arrow-up-from-water-pump": "\u{e4b6}", + "arrow-up-left": "\u{e09d}", + "arrow-up-left-from-circle": "\u{e09e}", + "arrow-up-long": "\u{f176}", + "long-arrow-up": "\u{f176}", + "arrow-up-right": "\u{e09f}", + "arrow-up-right-and-arrow-down-left-from-center": "\u{e0a0}", + "arrow-up-right-dots": "\u{e4b7}", + "arrow-up-right-from-square": "\u{f08e}", + "external-link": "\u{f08e}", + "arrow-up-short-wide": "\u{f885}", + "sort-amount-up-alt": "\u{f885}", + "arrow-up-small-big": "\u{f88f}", + "sort-size-up-alt": "\u{f88f}", + "arrow-up-square-triangle": "\u{f88b}", + "sort-shapes-up-alt": "\u{f88b}", + "arrow-up-to-arc": "\u{e617}", + "arrow-up-to-bracket": "\u{e66a}", + "arrow-up-to-dotted-line": "\u{e0a1}", + "arrow-up-to-line": "\u{f341}", + "arrow-to-top": "\u{f341}", + "arrow-up-triangle-square": "\u{f88a}", + "sort-shapes-up": "\u{f88a}", + "arrow-up-wide-short": "\u{f161}", + "sort-amount-up": "\u{f161}", + "arrow-up-z-a": "\u{f882}", + "sort-alpha-up-alt": "\u{f882}", + "artstation": "\u{f77a}", + "asterisk": "\u{2a}", + "asymmetrik": "\u{f372}", + "at": "\u{40}", + "atlassian": "\u{f77b}", + "atom": "\u{f5d2}", + "atom-simple": "\u{f5d3}", + "atom-alt": "\u{f5d3}", + "audible": "\u{f373}", + "audio-description": "\u{f29e}", + "audio-description-slash": "\u{e0a8}", + "austral-sign": "\u{e0a9}", + "autoprefixer": "\u{f41c}", + "avianex": "\u{f374}", + "aviato": "\u{f421}", + "avocado": "\u{e0aa}", + "award": "\u{f559}", + "award-simple": "\u{e0ab}", + "aws": "\u{f375}", + "axe": "\u{f6b2}", + "axe-battle": "\u{f6b3}", + "b": "\u{42}", + "baby": "\u{f77c}", + "baby-carriage": "\u{f77d}", + "carriage-baby": "\u{f77d}", + "backpack": "\u{f5d4}", + "backward": "\u{f04a}", + "backward-fast": "\u{f049}", + "fast-backward": "\u{f049}", + "backward-step": "\u{f048}", + "step-backward": "\u{f048}", + "bacon": "\u{f7e5}", + "bacteria": "\u{e059}", + "bacterium": "\u{e05a}", + "badge": "\u{f335}", + "badge-check": "\u{f336}", + "badge-dollar": "\u{f645}", + "badge-percent": "\u{f646}", + "badger-honey": "\u{f6b4}", + "badge-sheriff": "\u{f8a2}", + "badminton": "\u{e33a}", + "bagel": "\u{e3d7}", + "bag-seedling": "\u{e5f2}", + "bag-shopping": "\u{f290}", + "shopping-bag": "\u{f290}", + "bag-shopping-minus": "\u{e650}", + "bag-shopping-plus": "\u{e651}", + "bags-shopping": "\u{f847}", + "baguette": "\u{e3d8}", + "bahai": "\u{f666}", + "haykal": "\u{f666}", + "baht-sign": "\u{e0ac}", + "balloon": "\u{e2e3}", + "balloons": "\u{e2e4}", + "ballot": "\u{f732}", + "ballot-check": "\u{f733}", + "ball-pile": "\u{f77e}", + "ban": "\u{f05e}", + "cancel": "\u{f05e}", + "banana": "\u{e2e5}", + "ban-bug": "\u{f7f9}", + "debug": "\u{f7f9}", + "bandage": "\u{f462}", + "band-aid": "\u{f462}", + "bandcamp": "\u{f2d5}", + "bangladeshi-taka-sign": "\u{e2e6}", + "banjo": "\u{f8a3}", + "ban-parking": "\u{f616}", + "parking-circle-slash": "\u{f616}", + "ban-smoking": "\u{f54d}", + "smoking-ban": "\u{f54d}", + "barcode": "\u{f02a}", + "barcode-read": "\u{f464}", + "barcode-scan": "\u{f465}", + "bars": "\u{f0c9}", + "navicon": "\u{f0c9}", + "bars-filter": "\u{e0ad}", + "bars-progress": "\u{f828}", + "tasks-alt": "\u{f828}", + "bars-sort": "\u{e0ae}", + "bars-staggered": "\u{f550}", + "reorder": "\u{f550}", + "stream": "\u{f550}", + "baseball": "\u{f433}", + "baseball-ball": "\u{f433}", + "baseball-bat-ball": "\u{f432}", + "basketball": "\u{f434}", + "basketball-ball": "\u{f434}", + "basketball-hoop": "\u{f435}", + "basket-shopping": "\u{f291}", + "shopping-basket": "\u{f291}", + "basket-shopping-minus": "\u{e652}", + "basket-shopping-plus": "\u{e653}", + "basket-shopping-simple": "\u{e0af}", + "shopping-basket-alt": "\u{e0af}", + "bat": "\u{f6b5}", + "bath": "\u{f2cd}", + "bathtub": "\u{f2cd}", + "battery-bolt": "\u{f376}", + "battery-empty": "\u{f244}", + "battery-0": "\u{f244}", + "battery-exclamation": "\u{e0b0}", + "battery-full": "\u{f240}", + "battery": "\u{f240}", + "battery-5": "\u{f240}", + "battery-half": "\u{f242}", + "battery-3": "\u{f242}", + "battery-low": "\u{e0b1}", + "battery-1": "\u{e0b1}", + "battery-quarter": "\u{f243}", + "battery-2": "\u{f243}", + "battery-slash": "\u{f377}", + "battery-three-quarters": "\u{f241}", + "battery-4": "\u{f241}", + "battle-net": "\u{f835}", + "bed": "\u{f236}", + "bed-bunk": "\u{f8f8}", + "bed-empty": "\u{f8f9}", + "bed-front": "\u{f8f7}", + "bed-alt": "\u{f8f7}", + "bed-pulse": "\u{f487}", + "procedures": "\u{f487}", + "bee": "\u{e0b2}", + "beer-mug": "\u{e0b3}", + "beer-foam": "\u{e0b3}", + "beer-mug-empty": "\u{f0fc}", + "beer": "\u{f0fc}", + "behance": "\u{f1b4}", + "bell": "\u{f0f3}", + "bell-concierge": "\u{f562}", + "concierge-bell": "\u{f562}", + "bell-exclamation": "\u{f848}", + "bell-on": "\u{f8fa}", + "bell-plus": "\u{f849}", + "bell-ring": "\u{e62c}", + "bells": "\u{f77f}", + "bell-school": "\u{f5d5}", + "bell-school-slash": "\u{f5d6}", + "bell-slash": "\u{f1f6}", + "bench-tree": "\u{e2e7}", + "bezier-curve": "\u{f55b}", + "bicycle": "\u{f206}", + "bilibili": "\u{e3d9}", + "billboard": "\u{e5cd}", + "bimobject": "\u{f378}", + "binary": "\u{e33b}", + "binary-circle-check": "\u{e33c}", + "binary-lock": "\u{e33d}", + "binary-slash": "\u{e33e}", + "bin-bottles": "\u{e5f5}", + "bin-bottles-recycle": "\u{e5f6}", + "binoculars": "\u{f1e5}", + "bin-recycle": "\u{e5f7}", + "biohazard": "\u{f780}", + "bird": "\u{e469}", + "bitbucket": "\u{f171}", + "bitcoin": "\u{f379}", + "bitcoin-sign": "\u{e0b4}", + "bity": "\u{f37a}", + "blackberry": "\u{f37b}", + "black-tie": "\u{f27e}", + "blanket": "\u{f498}", + "blanket-fire": "\u{e3da}", + "blender": "\u{f517}", + "blender-phone": "\u{f6b6}", + "blinds": "\u{f8fb}", + "blinds-open": "\u{f8fc}", + "blinds-raised": "\u{f8fd}", + "block": "\u{e46a}", + "block-brick": "\u{e3db}", + "wall-brick": "\u{e3db}", + "block-brick-fire": "\u{e3dc}", + "firewall": "\u{e3dc}", + "block-question": "\u{e3dd}", + "block-quote": "\u{e0b5}", + "blog": "\u{f781}", + "blogger": "\u{f37c}", + "blogger-b": "\u{f37d}", + "blueberries": "\u{e2e8}", + "bluesky": "\u{e671}", + "bluetooth": "\u{f293}", + "bluetooth-b": "\u{f294}", + "bold": "\u{f032}", + "bolt": "\u{f0e7}", + "zap": "\u{f0e7}", + "bolt-auto": "\u{e0b6}", + "bolt-lightning": "\u{e0b7}", + "bolt-slash": "\u{e0b8}", + "bomb": "\u{f1e2}", + "bone": "\u{f5d7}", + "bone-break": "\u{f5d8}", + "bong": "\u{f55c}", + "book": "\u{f02d}", + "book-arrow-right": "\u{e0b9}", + "book-arrow-up": "\u{e0ba}", + "book-atlas": "\u{f558}", + "atlas": "\u{f558}", + "book-bible": "\u{f647}", + "bible": "\u{f647}", + "book-blank": "\u{f5d9}", + "book-alt": "\u{f5d9}", + "book-bookmark": "\u{e0bb}", + "book-circle-arrow-right": "\u{e0bc}", + "book-circle-arrow-up": "\u{e0bd}", + "book-copy": "\u{e0be}", + "book-font": "\u{e0bf}", + "book-heart": "\u{f499}", + "book-journal-whills": "\u{f66a}", + "journal-whills": "\u{f66a}", + "bookmark": "\u{f02e}", + "bookmark-slash": "\u{e0c2}", + "book-medical": "\u{f7e6}", + "book-open": "\u{f518}", + "book-open-cover": "\u{e0c0}", + "book-open-alt": "\u{e0c0}", + "book-open-reader": "\u{f5da}", + "book-reader": "\u{f5da}", + "book-quran": "\u{f687}", + "quran": "\u{f687}", + "books": "\u{f5db}", + "book-section": "\u{e0c1}", + "book-law": "\u{e0c1}", + "book-skull": "\u{f6b7}", + "book-dead": "\u{f6b7}", + "books-medical": "\u{f7e8}", + "book-sparkles": "\u{f6b8}", + "book-spells": "\u{f6b8}", + "book-tanakh": "\u{f827}", + "tanakh": "\u{f827}", + "book-user": "\u{f7e7}", + "boombox": "\u{f8a5}", + "boot": "\u{f782}", + "booth-curtain": "\u{f734}", + "boot-heeled": "\u{e33f}", + "bootstrap": "\u{f836}", + "border-all": "\u{f84c}", + "border-bottom": "\u{f84d}", + "border-bottom-right": "\u{f854}", + "border-style-alt": "\u{f854}", + "border-center-h": "\u{f89c}", + "border-center-v": "\u{f89d}", + "border-inner": "\u{f84e}", + "border-left": "\u{f84f}", + "border-none": "\u{f850}", + "border-outer": "\u{f851}", + "border-right": "\u{f852}", + "border-top": "\u{f855}", + "border-top-left": "\u{f853}", + "border-style": "\u{f853}", + "bore-hole": "\u{e4c3}", + "bots": "\u{e340}", + "bottle-baby": "\u{e673}", + "bottle-droplet": "\u{e4c4}", + "bottle-water": "\u{e4c5}", + "bow-arrow": "\u{f6b9}", + "bowl-chopsticks": "\u{e2e9}", + "bowl-chopsticks-noodles": "\u{e2ea}", + "bowl-food": "\u{e4c6}", + "bowl-hot": "\u{f823}", + "soup": "\u{f823}", + "bowling-ball": "\u{f436}", + "bowling-ball-pin": "\u{e0c3}", + "bowling-pins": "\u{f437}", + "bowl-rice": "\u{e2eb}", + "bowl-scoop": "\u{e3de}", + "bowl-shaved-ice": "\u{e3de}", + "bowl-scoops": "\u{e3df}", + "bowl-soft-serve": "\u{e46b}", + "bowl-spoon": "\u{e3e0}", + "box": "\u{f466}", + "box-archive": "\u{f187}", + "archive": "\u{f187}", + "box-ballot": "\u{f735}", + "box-check": "\u{f467}", + "box-circle-check": "\u{e0c4}", + "box-dollar": "\u{f4a0}", + "box-usd": "\u{f4a0}", + "boxes-packing": "\u{e4c7}", + "boxes-stacked": "\u{f468}", + "boxes": "\u{f468}", + "boxes-alt": "\u{f468}", + "box-heart": "\u{f49d}", + "boxing-glove": "\u{f438}", + "glove-boxing": "\u{f438}", + "box-open": "\u{f49e}", + "box-open-full": "\u{f49c}", + "box-full": "\u{f49c}", + "box-taped": "\u{f49a}", + "box-alt": "\u{f49a}", + "box-tissue": "\u{e05b}", + "bracket-curly": "\u{7b}", + "bracket-curly-left": "\u{7b}", + "bracket-curly-right": "\u{7d}", + "bracket-round": "\u{28}", + "parenthesis": "\u{28}", + "bracket-round-right": "\u{29}", + "brackets-curly": "\u{f7ea}", + "bracket-square": "\u{5b}", + "bracket": "\u{5b}", + "bracket-left": "\u{5b}", + "bracket-square-right": "\u{5d}", + "brackets-round": "\u{e0c5}", + "parentheses": "\u{e0c5}", + "brackets-square": "\u{f7e9}", + "brackets": "\u{f7e9}", + "braille": "\u{f2a1}", + "brain": "\u{f5dc}", + "brain-arrow-curved-right": "\u{f677}", + "mind-share": "\u{f677}", + "brain-circuit": "\u{e0c6}", + "brake-warning": "\u{e0c7}", + "brave": "\u{e63c}", + "brave-reverse": "\u{e63d}", + "brazilian-real-sign": "\u{e46c}", + "bread-loaf": "\u{f7eb}", + "bread-slice": "\u{f7ec}", + "bread-slice-butter": "\u{e3e1}", + "bridge": "\u{e4c8}", + "bridge-circle-check": "\u{e4c9}", + "bridge-circle-exclamation": "\u{e4ca}", + "bridge-circle-xmark": "\u{e4cb}", + "bridge-lock": "\u{e4cc}", + "bridge-suspension": "\u{e4cd}", + "bridge-water": "\u{e4ce}", + "briefcase": "\u{f0b1}", + "briefcase-arrow-right": "\u{e2f2}", + "briefcase-blank": "\u{e0c8}", + "briefcase-medical": "\u{f469}", + "brightness": "\u{e0c9}", + "brightness-low": "\u{e0ca}", + "bring-forward": "\u{f856}", + "bring-front": "\u{f857}", + "broccoli": "\u{e3e2}", + "broom": "\u{f51a}", + "broom-ball": "\u{f458}", + "quidditch": "\u{f458}", + "quidditch-broom-ball": "\u{f458}", + "broom-wide": "\u{e5d1}", + "browser": "\u{f37e}", + "browsers": "\u{e0cb}", + "brush": "\u{f55d}", + "btc": "\u{f15a}", + "bucket": "\u{e4cf}", + "buffer": "\u{f837}", + "bug": "\u{f188}", + "bugs": "\u{e4d0}", + "bug-slash": "\u{e490}", + "building": "\u{f1ad}", + "building-circle-arrow-right": "\u{e4d1}", + "building-circle-check": "\u{e4d2}", + "building-circle-exclamation": "\u{e4d3}", + "building-circle-xmark": "\u{e4d4}", + "building-columns": "\u{f19c}", + "bank": "\u{f19c}", + "institution": "\u{f19c}", + "museum": "\u{f19c}", + "university": "\u{f19c}", + "building-flag": "\u{e4d5}", + "building-lock": "\u{e4d6}", + "building-magnifying-glass": "\u{e61c}", + "building-memo": "\u{e61e}", + "building-ngo": "\u{e4d7}", + "buildings": "\u{e0cc}", + "building-shield": "\u{e4d8}", + "building-un": "\u{e4d9}", + "building-user": "\u{e4da}", + "building-wheat": "\u{e4db}", + "bulldozer": "\u{e655}", + "bullhorn": "\u{f0a1}", + "bullseye": "\u{f140}", + "bullseye-arrow": "\u{f648}", + "bullseye-pointer": "\u{f649}", + "buoy": "\u{e5b5}", + "buoy-mooring": "\u{e5b6}", + "burger": "\u{f805}", + "hamburger": "\u{f805}", + "burger-cheese": "\u{f7f1}", + "cheeseburger": "\u{f7f1}", + "burger-fries": "\u{e0cd}", + "burger-glass": "\u{e0ce}", + "burger-lettuce": "\u{e3e3}", + "burger-soda": "\u{f858}", + "buromobelexperte": "\u{f37f}", + "burrito": "\u{f7ed}", + "burst": "\u{e4dc}", + "bus": "\u{f207}", + "business-time": "\u{f64a}", + "briefcase-clock": "\u{f64a}", + "bus-school": "\u{f5dd}", + "bus-simple": "\u{f55e}", + "bus-alt": "\u{f55e}", + "butter": "\u{e3e4}", + "buy-n-large": "\u{f8a6}", + "buysellads": "\u{f20d}", + "c": "\u{43}", + "cabin": "\u{e46d}", + "cabinet-filing": "\u{f64b}", + "cable-car": "\u{f7da}", + "tram": "\u{f7da}", + "cactus": "\u{f8a7}", + "caduceus": "\u{e681}", + "cake-candles": "\u{f1fd}", + "birthday-cake": "\u{f1fd}", + "cake": "\u{f1fd}", + "cake-slice": "\u{e3e5}", + "shortcake": "\u{e3e5}", + "calculator": "\u{f1ec}", + "calculator-simple": "\u{f64c}", + "calculator-alt": "\u{f64c}", + "calendar": "\u{f133}", + "calendar-arrow-down": "\u{e0d0}", + "calendar-download": "\u{e0d0}", + "calendar-arrow-up": "\u{e0d1}", + "calendar-upload": "\u{e0d1}", + "calendar-check": "\u{f274}", + "calendar-circle-exclamation": "\u{e46e}", + "calendar-circle-minus": "\u{e46f}", + "calendar-circle-plus": "\u{e470}", + "calendar-circle-user": "\u{e471}", + "calendar-clock": "\u{e0d2}", + "calendar-time": "\u{e0d2}", + "calendar-day": "\u{f783}", + "calendar-days": "\u{f073}", + "calendar-alt": "\u{f073}", + "calendar-exclamation": "\u{f334}", + "calendar-heart": "\u{e0d3}", + "calendar-image": "\u{e0d4}", + "calendar-lines": "\u{e0d5}", + "calendar-note": "\u{e0d5}", + "calendar-lines-pen": "\u{e472}", + "calendar-minus": "\u{f272}", + "calendar-pen": "\u{f333}", + "calendar-edit": "\u{f333}", + "calendar-plus": "\u{f271}", + "calendar-range": "\u{e0d6}", + "calendars": "\u{e0d7}", + "calendar-star": "\u{f736}", + "calendar-users": "\u{e5e2}", + "calendar-week": "\u{f784}", + "calendar-xmark": "\u{f273}", + "calendar-times": "\u{f273}", + "camcorder": "\u{f8a8}", + "video-handheld": "\u{f8a8}", + "camera": "\u{f030}", + "camera-alt": "\u{f030}", + "camera-cctv": "\u{f8ac}", + "cctv": "\u{f8ac}", + "camera-movie": "\u{f8a9}", + "camera-polaroid": "\u{f8aa}", + "camera-retro": "\u{f083}", + "camera-rotate": "\u{e0d8}", + "camera-security": "\u{f8fe}", + "camera-home": "\u{f8fe}", + "camera-slash": "\u{e0d9}", + "camera-viewfinder": "\u{e0da}", + "screenshot": "\u{e0da}", + "camera-web": "\u{f832}", + "webcam": "\u{f832}", + "camera-web-slash": "\u{f833}", + "webcam-slash": "\u{f833}", + "campfire": "\u{f6ba}", + "campground": "\u{f6bb}", + "canadian-maple-leaf": "\u{f785}", + "candle-holder": "\u{f6bc}", + "candy": "\u{e3e7}", + "candy-bar": "\u{e3e8}", + "chocolate-bar": "\u{e3e8}", + "candy-cane": "\u{f786}", + "candy-corn": "\u{f6bd}", + "can-food": "\u{e3e6}", + "cannabis": "\u{f55f}", + "cannon": "\u{e642}", + "capsules": "\u{f46b}", + "car": "\u{f1b9}", + "automobile": "\u{f1b9}", + "caravan": "\u{f8ff}", + "caravan-simple": "\u{e000}", + "caravan-alt": "\u{e000}", + "car-battery": "\u{f5df}", + "battery-car": "\u{f5df}", + "car-bolt": "\u{e341}", + "car-building": "\u{f859}", + "car-bump": "\u{f5e0}", + "car-burst": "\u{f5e1}", + "car-crash": "\u{f5e1}", + "car-bus": "\u{f85a}", + "car-circle-bolt": "\u{e342}", + "card-club": "\u{e3e9}", + "card-diamond": "\u{e3ea}", + "card-heart": "\u{e3eb}", + "cards": "\u{e3ed}", + "cards-blank": "\u{e4df}", + "card-spade": "\u{e3ec}", + "caret-down": "\u{f0d7}", + "caret-left": "\u{f0d9}", + "caret-right": "\u{f0da}", + "caret-up": "\u{f0d8}", + "car-garage": "\u{f5e2}", + "car-mirrors": "\u{e343}", + "car-on": "\u{e4dd}", + "car-rear": "\u{f5de}", + "car-alt": "\u{f5de}", + "carrot": "\u{f787}", + "cars": "\u{f85b}", + "car-side": "\u{f5e4}", + "car-side-bolt": "\u{e344}", + "cart-arrow-down": "\u{f218}", + "cart-arrow-up": "\u{e3ee}", + "cart-circle-arrow-down": "\u{e3ef}", + "cart-circle-arrow-up": "\u{e3f0}", + "cart-circle-check": "\u{e3f1}", + "cart-circle-exclamation": "\u{e3f2}", + "cart-circle-plus": "\u{e3f3}", + "cart-circle-xmark": "\u{e3f4}", + "cart-flatbed": "\u{f474}", + "dolly-flatbed": "\u{f474}", + "cart-flatbed-boxes": "\u{f475}", + "dolly-flatbed-alt": "\u{f475}", + "cart-flatbed-empty": "\u{f476}", + "dolly-flatbed-empty": "\u{f476}", + "cart-flatbed-suitcase": "\u{f59d}", + "luggage-cart": "\u{f59d}", + "car-tilt": "\u{f5e5}", + "cart-minus": "\u{e0db}", + "cart-plus": "\u{f217}", + "cart-shopping": "\u{f07a}", + "shopping-cart": "\u{f07a}", + "cart-shopping-fast": "\u{e0dc}", + "car-tunnel": "\u{e4de}", + "cart-xmark": "\u{e0dd}", + "car-wash": "\u{f5e6}", + "car-wrench": "\u{f5e3}", + "car-mechanic": "\u{f5e3}", + "cash-register": "\u{f788}", + "cassette-betamax": "\u{f8a4}", + "betamax": "\u{f8a4}", + "cassette-tape": "\u{f8ab}", + "cassette-vhs": "\u{f8ec}", + "vhs": "\u{f8ec}", + "castle": "\u{e0de}", + "cat": "\u{f6be}", + "cat-space": "\u{e001}", + "cauldron": "\u{f6bf}", + "cc-amazon-pay": "\u{f42d}", + "cc-amex": "\u{f1f3}", + "cc-apple-pay": "\u{f416}", + "cc-diners-club": "\u{f24c}", + "cc-discover": "\u{f1f2}", + "cc-jcb": "\u{f24b}", + "cc-mastercard": "\u{f1f1}", + "cc-paypal": "\u{f1f4}", + "cc-stripe": "\u{f1f5}", + "cc-visa": "\u{f1f0}", + "cedi-sign": "\u{e0df}", + "centercode": "\u{f380}", + "centos": "\u{f789}", + "cent-sign": "\u{e3f5}", + "certificate": "\u{f0a3}", + "chair": "\u{f6c0}", + "chair-office": "\u{f6c1}", + "chalkboard": "\u{f51b}", + "blackboard": "\u{f51b}", + "chalkboard-user": "\u{f51c}", + "chalkboard-teacher": "\u{f51c}", + "champagne-glass": "\u{f79e}", + "glass-champagne": "\u{f79e}", + "champagne-glasses": "\u{f79f}", + "glass-cheers": "\u{f79f}", + "charging-station": "\u{f5e7}", + "chart-area": "\u{f1fe}", + "area-chart": "\u{f1fe}", + "chart-bar": "\u{f080}", + "bar-chart": "\u{f080}", + "chart-bullet": "\u{e0e1}", + "chart-candlestick": "\u{e0e2}", + "chart-column": "\u{e0e3}", + "chart-gantt": "\u{e0e4}", + "chart-kanban": "\u{e64f}", + "chart-line": "\u{f201}", + "line-chart": "\u{f201}", + "chart-line-down": "\u{f64d}", + "chart-line-up": "\u{e0e5}", + "chart-line-up-down": "\u{e5d7}", + "chart-mixed": "\u{f643}", + "analytics": "\u{f643}", + "chart-mixed-up-circle-currency": "\u{e5d8}", + "chart-mixed-up-circle-dollar": "\u{e5d9}", + "chart-network": "\u{f78a}", + "chart-pie": "\u{f200}", + "pie-chart": "\u{f200}", + "chart-pie-simple": "\u{f64e}", + "chart-pie-alt": "\u{f64e}", + "chart-pie-simple-circle-currency": "\u{e604}", + "chart-pie-simple-circle-dollar": "\u{e605}", + "chart-pyramid": "\u{e0e6}", + "chart-radar": "\u{e0e7}", + "chart-scatter": "\u{f7ee}", + "chart-scatter-3d": "\u{e0e8}", + "chart-scatter-bubble": "\u{e0e9}", + "chart-simple": "\u{e473}", + "chart-simple-horizontal": "\u{e474}", + "chart-tree-map": "\u{e0ea}", + "chart-user": "\u{f6a3}", + "user-chart": "\u{f6a3}", + "chart-waterfall": "\u{e0eb}", + "check": "\u{f00c}", + "check-double": "\u{f560}", + "check-to-slot": "\u{f772}", + "vote-yea": "\u{f772}", + "cheese": "\u{f7ef}", + "cheese-swiss": "\u{f7f0}", + "cherries": "\u{e0ec}", + "chess": "\u{f439}", + "chess-bishop": "\u{f43a}", + "chess-bishop-piece": "\u{f43b}", + "chess-bishop-alt": "\u{f43b}", + "chess-board": "\u{f43c}", + "chess-clock": "\u{f43d}", + "chess-clock-flip": "\u{f43e}", + "chess-clock-alt": "\u{f43e}", + "chess-king": "\u{f43f}", + "chess-king-piece": "\u{f440}", + "chess-king-alt": "\u{f440}", + "chess-knight": "\u{f441}", + "chess-knight-piece": "\u{f442}", + "chess-knight-alt": "\u{f442}", + "chess-pawn": "\u{f443}", + "chess-pawn-piece": "\u{f444}", + "chess-pawn-alt": "\u{f444}", + "chess-queen": "\u{f445}", + "chess-queen-piece": "\u{f446}", + "chess-queen-alt": "\u{f446}", + "chess-rook": "\u{f447}", + "chess-rook-piece": "\u{f448}", + "chess-rook-alt": "\u{f448}", + "chestnut": "\u{e3f6}", + "chevron-down": "\u{f078}", + "chevron-left": "\u{f053}", + "chevron-right": "\u{f054}", + "chevrons-down": "\u{f322}", + "chevron-double-down": "\u{f322}", + "chevrons-left": "\u{f323}", + "chevron-double-left": "\u{f323}", + "chevrons-right": "\u{f324}", + "chevron-double-right": "\u{f324}", + "chevrons-up": "\u{f325}", + "chevron-double-up": "\u{f325}", + "chevron-up": "\u{f077}", + "chf-sign": "\u{e602}", + "child": "\u{f1ae}", + "child-combatant": "\u{e4e0}", + "child-rifle": "\u{e4e0}", + "child-dress": "\u{e59c}", + "child-reaching": "\u{e59d}", + "children": "\u{e4e1}", + "chimney": "\u{f78b}", + "chopsticks": "\u{e3f7}", + "chrome": "\u{f268}", + "chromecast": "\u{f838}", + "church": "\u{f51d}", + "circle": "\u{f111}", + "circle-0": "\u{e0ed}", + "circle-1": "\u{e0ee}", + "circle-2": "\u{e0ef}", + "circle-3": "\u{e0f0}", + "circle-4": "\u{e0f1}", + "circle-5": "\u{e0f2}", + "circle-6": "\u{e0f3}", + "circle-7": "\u{e0f4}", + "circle-8": "\u{e0f5}", + "circle-9": "\u{e0f6}", + "circle-a": "\u{e0f7}", + "circle-ampersand": "\u{e0f8}", + "circle-arrow-down": "\u{f0ab}", + "arrow-circle-down": "\u{f0ab}", + "circle-arrow-down-left": "\u{e0f9}", + "circle-arrow-down-right": "\u{e0fa}", + "circle-arrow-left": "\u{f0a8}", + "arrow-circle-left": "\u{f0a8}", + "circle-arrow-right": "\u{f0a9}", + "arrow-circle-right": "\u{f0a9}", + "circle-arrow-up": "\u{f0aa}", + "arrow-circle-up": "\u{f0aa}", + "circle-arrow-up-left": "\u{e0fb}", + "circle-arrow-up-right": "\u{e0fc}", + "circle-b": "\u{e0fd}", + "circle-bolt": "\u{e0fe}", + "circle-bookmark": "\u{e100}", + "bookmark-circle": "\u{e100}", + "circle-book-open": "\u{e0ff}", + "book-circle": "\u{e0ff}", + "circle-c": "\u{e101}", + "circle-calendar": "\u{e102}", + "calendar-circle": "\u{e102}", + "circle-camera": "\u{e103}", + "camera-circle": "\u{e103}", + "circle-caret-down": "\u{f32d}", + "caret-circle-down": "\u{f32d}", + "circle-caret-left": "\u{f32e}", + "caret-circle-left": "\u{f32e}", + "circle-caret-right": "\u{f330}", + "caret-circle-right": "\u{f330}", + "circle-caret-up": "\u{f331}", + "caret-circle-up": "\u{f331}", + "circle-check": "\u{f058}", + "check-circle": "\u{f058}", + "circle-chevron-down": "\u{f13a}", + "chevron-circle-down": "\u{f13a}", + "circle-chevron-left": "\u{f137}", + "chevron-circle-left": "\u{f137}", + "circle-chevron-right": "\u{f138}", + "chevron-circle-right": "\u{f138}", + "circle-chevron-up": "\u{f139}", + "chevron-circle-up": "\u{f139}", + "circle-d": "\u{e104}", + "circle-dashed": "\u{e105}", + "circle-divide": "\u{e106}", + "circle-dollar": "\u{f2e8}", + "dollar-circle": "\u{f2e8}", + "usd-circle": "\u{f2e8}", + "circle-dollar-to-slot": "\u{f4b9}", + "donate": "\u{f4b9}", + "circle-dot": "\u{f192}", + "dot-circle": "\u{f192}", + "circle-down": "\u{f358}", + "arrow-alt-circle-down": "\u{f358}", + "circle-down-left": "\u{e107}", + "circle-down-right": "\u{e108}", + "circle-e": "\u{e109}", + "circle-ellipsis": "\u{e10a}", + "circle-ellipsis-vertical": "\u{e10b}", + "circle-envelope": "\u{e10c}", + "envelope-circle": "\u{e10c}", + "circle-euro": "\u{e5ce}", + "circle-exclamation": "\u{f06a}", + "exclamation-circle": "\u{f06a}", + "circle-exclamation-check": "\u{e10d}", + "circle-f": "\u{e10e}", + "circle-g": "\u{e10f}", + "circle-gf": "\u{e67f}", + "circle-h": "\u{f47e}", + "hospital-symbol": "\u{f47e}", + "circle-half": "\u{e110}", + "circle-half-stroke": "\u{f042}", + "adjust": "\u{f042}", + "circle-heart": "\u{f4c7}", + "heart-circle": "\u{f4c7}", + "circle-i": "\u{e111}", + "circle-info": "\u{f05a}", + "info-circle": "\u{f05a}", + "circle-j": "\u{e112}", + "circle-k": "\u{e113}", + "circle-l": "\u{e114}", + "circle-left": "\u{f359}", + "arrow-alt-circle-left": "\u{f359}", + "circle-location-arrow": "\u{f602}", + "location-circle": "\u{f602}", + "circle-m": "\u{e115}", + "circle-microphone": "\u{e116}", + "microphone-circle": "\u{e116}", + "circle-microphone-lines": "\u{e117}", + "microphone-circle-alt": "\u{e117}", + "circle-minus": "\u{f056}", + "minus-circle": "\u{f056}", + "circle-n": "\u{e118}", + "circle-nodes": "\u{e4e2}", + "circle-notch": "\u{f1ce}", + "circle-o": "\u{e119}", + "circle-p": "\u{e11a}", + "circle-parking": "\u{f615}", + "parking-circle": "\u{f615}", + "circle-pause": "\u{f28b}", + "pause-circle": "\u{f28b}", + "circle-phone": "\u{e11b}", + "phone-circle": "\u{e11b}", + "circle-phone-flip": "\u{e11c}", + "phone-circle-alt": "\u{e11c}", + "circle-phone-hangup": "\u{e11d}", + "phone-circle-down": "\u{e11d}", + "circle-play": "\u{f144}", + "play-circle": "\u{f144}", + "circle-plus": "\u{f055}", + "plus-circle": "\u{f055}", + "circle-q": "\u{e11e}", + "circle-quarter": "\u{e11f}", + "circle-quarters": "\u{e3f8}", + "circle-quarter-stroke": "\u{e5d3}", + "circle-question": "\u{f059}", + "question-circle": "\u{f059}", + "circle-r": "\u{e120}", + "circle-radiation": "\u{f7ba}", + "radiation-alt": "\u{f7ba}", + "circle-right": "\u{f35a}", + "arrow-alt-circle-right": "\u{f35a}", + "circle-s": "\u{e121}", + "circle-small": "\u{e122}", + "circle-sort": "\u{e030}", + "sort-circle": "\u{e030}", + "circle-sort-down": "\u{e031}", + "sort-circle-down": "\u{e031}", + "circle-sort-up": "\u{e032}", + "sort-circle-up": "\u{e032}", + "circles-overlap": "\u{e600}", + "circle-star": "\u{e123}", + "star-circle": "\u{e123}", + "circle-sterling": "\u{e5cf}", + "circle-stop": "\u{f28d}", + "stop-circle": "\u{f28d}", + "circle-t": "\u{e124}", + "circle-three-quarters": "\u{e125}", + "circle-three-quarters-stroke": "\u{e5d4}", + "circle-trash": "\u{e126}", + "trash-circle": "\u{e126}", + "circle-u": "\u{e127}", + "circle-up": "\u{f35b}", + "arrow-alt-circle-up": "\u{f35b}", + "circle-up-left": "\u{e128}", + "circle-up-right": "\u{e129}", + "circle-user": "\u{f2bd}", + "user-circle": "\u{f2bd}", + "circle-v": "\u{e12a}", + "circle-video": "\u{e12b}", + "video-circle": "\u{e12b}", + "circle-w": "\u{e12c}", + "circle-waveform-lines": "\u{e12d}", + "waveform-circle": "\u{e12d}", + "circle-wifi": "\u{e67d}", + "circle-wifi-circle-wifi": "\u{e67e}", + "circle-wifi-group": "\u{e67e}", + "circle-x": "\u{e12e}", + "circle-xmark": "\u{f057}", + "times-circle": "\u{f057}", + "xmark-circle": "\u{f057}", + "circle-y": "\u{e12f}", + "circle-yen": "\u{e5d0}", + "circle-z": "\u{e130}", + "citrus": "\u{e2f4}", + "citrus-slice": "\u{e2f5}", + "city": "\u{f64f}", + "clapperboard": "\u{e131}", + "clapperboard-play": "\u{e132}", + "clarinet": "\u{f8ad}", + "claw-marks": "\u{f6c2}", + "clipboard": "\u{f328}", + "clipboard-check": "\u{f46c}", + "clipboard-list": "\u{f46d}", + "clipboard-list-check": "\u{f737}", + "clipboard-medical": "\u{e133}", + "clipboard-prescription": "\u{f5e8}", + "clipboard-question": "\u{e4e3}", + "clipboard-user": "\u{f7f3}", + "clock": "\u{f017}", + "clock-four": "\u{f017}", + "clock-desk": "\u{e134}", + "clock-eight": "\u{e345}", + "clock-eight-thirty": "\u{e346}", + "clock-eleven": "\u{e347}", + "clock-eleven-thirty": "\u{e348}", + "clock-five": "\u{e349}", + "clock-five-thirty": "\u{e34a}", + "clock-four-thirty": "\u{e34b}", + "clock-nine": "\u{e34c}", + "clock-nine-thirty": "\u{e34d}", + "clock-one": "\u{e34e}", + "clock-one-thirty": "\u{e34f}", + "clock-rotate-left": "\u{f1da}", + "history": "\u{f1da}", + "clock-seven": "\u{e350}", + "clock-seven-thirty": "\u{e351}", + "clock-six": "\u{e352}", + "clock-six-thirty": "\u{e353}", + "clock-ten": "\u{e354}", + "clock-ten-thirty": "\u{e355}", + "clock-three": "\u{e356}", + "clock-three-thirty": "\u{e357}", + "clock-twelve": "\u{e358}", + "clock-twelve-thirty": "\u{e359}", + "clock-two": "\u{e35a}", + "clock-two-thirty": "\u{e35b}", + "clone": "\u{f24d}", + "closed-captioning": "\u{f20a}", + "closed-captioning-slash": "\u{e135}", + "clothes-hanger": "\u{e136}", + "cloud": "\u{f0c2}", + "cloud-arrow-down": "\u{f0ed}", + "cloud-download": "\u{f0ed}", + "cloud-download-alt": "\u{f0ed}", + "cloud-arrow-up": "\u{f0ee}", + "cloud-upload": "\u{f0ee}", + "cloud-upload-alt": "\u{f0ee}", + "cloud-binary": "\u{e601}", + "cloud-bolt": "\u{f76c}", + "thunderstorm": "\u{f76c}", + "cloud-bolt-moon": "\u{f76d}", + "thunderstorm-moon": "\u{f76d}", + "cloud-bolt-sun": "\u{f76e}", + "thunderstorm-sun": "\u{f76e}", + "cloud-check": "\u{e35c}", + "cloud-drizzle": "\u{f738}", + "cloud-exclamation": "\u{e491}", + "cloudflare": "\u{e07d}", + "cloud-fog": "\u{f74e}", + "fog": "\u{f74e}", + "cloud-hail": "\u{f739}", + "cloud-hail-mixed": "\u{f73a}", + "cloud-meatball": "\u{f73b}", + "cloud-minus": "\u{e35d}", + "cloud-moon": "\u{f6c3}", + "cloud-moon-rain": "\u{f73c}", + "cloud-music": "\u{f8ae}", + "cloud-plus": "\u{e35e}", + "cloud-question": "\u{e492}", + "cloud-rain": "\u{f73d}", + "cloud-rainbow": "\u{f73e}", + "clouds": "\u{f744}", + "cloudscale": "\u{f383}", + "cloud-showers": "\u{f73f}", + "cloud-showers-heavy": "\u{f740}", + "cloud-showers-water": "\u{e4e4}", + "cloud-slash": "\u{e137}", + "cloud-sleet": "\u{f741}", + "cloudsmith": "\u{f384}", + "clouds-moon": "\u{f745}", + "cloud-snow": "\u{f742}", + "clouds-sun": "\u{f746}", + "cloud-sun": "\u{f6c4}", + "cloud-sun-rain": "\u{f743}", + "cloudversify": "\u{f385}", + "cloud-word": "\u{e138}", + "cloud-xmark": "\u{e35f}", + "clover": "\u{e139}", + "club": "\u{f327}", + "cmplid": "\u{e360}", + "coconut": "\u{e2f6}", + "code": "\u{f121}", + "code-branch": "\u{f126}", + "code-commit": "\u{f386}", + "code-compare": "\u{e13a}", + "code-fork": "\u{e13b}", + "code-merge": "\u{f387}", + "codepen": "\u{f1cb}", + "code-pull-request": "\u{e13c}", + "code-pull-request-closed": "\u{e3f9}", + "code-pull-request-draft": "\u{e3fa}", + "code-simple": "\u{e13d}", + "codiepie": "\u{f284}", + "coffee-bean": "\u{e13e}", + "coffee-beans": "\u{e13f}", + "coffee-pot": "\u{e002}", + "coffin": "\u{f6c6}", + "coffin-cross": "\u{e051}", + "coin": "\u{f85c}", + "coin-blank": "\u{e3fb}", + "coin-front": "\u{e3fc}", + "coins": "\u{f51e}", + "coin-vertical": "\u{e3fd}", + "colon": "\u{3a}", + "colon-sign": "\u{e140}", + "columns-3": "\u{e361}", + "comet": "\u{e003}", + "comma": "\u{2c}", + "command": "\u{e142}", + "comment": "\u{f075}", + "comment-arrow-down": "\u{e143}", + "comment-arrow-up": "\u{e144}", + "comment-arrow-up-right": "\u{e145}", + "comment-captions": "\u{e146}", + "comment-check": "\u{f4ac}", + "comment-code": "\u{e147}", + "comment-dollar": "\u{f651}", + "comment-dots": "\u{f4ad}", + "commenting": "\u{f4ad}", + "comment-exclamation": "\u{f4af}", + "comment-heart": "\u{e5c8}", + "comment-image": "\u{e148}", + "comment-lines": "\u{f4b0}", + "comment-medical": "\u{f7f5}", + "comment-middle": "\u{e149}", + "comment-middle-top": "\u{e14a}", + "comment-minus": "\u{f4b1}", + "comment-music": "\u{f8b0}", + "comment-pen": "\u{f4ae}", + "comment-edit": "\u{f4ae}", + "comment-plus": "\u{f4b2}", + "comment-question": "\u{e14b}", + "comment-quote": "\u{e14c}", + "comments": "\u{f086}", + "comments-dollar": "\u{f653}", + "comment-slash": "\u{f4b3}", + "comment-smile": "\u{f4b4}", + "comment-sms": "\u{f7cd}", + "sms": "\u{f7cd}", + "comments-question": "\u{e14e}", + "comments-question-check": "\u{e14f}", + "comment-text": "\u{e14d}", + "comment-xmark": "\u{f4b5}", + "comment-times": "\u{f4b5}", + "compact-disc": "\u{f51f}", + "compass": "\u{f14e}", + "compass-drafting": "\u{f568}", + "drafting-compass": "\u{f568}", + "compass-slash": "\u{f5e9}", + "compress": "\u{f066}", + "compress-wide": "\u{f326}", + "computer": "\u{e4e5}", + "computer-classic": "\u{f8b1}", + "computer-mouse": "\u{f8cc}", + "mouse": "\u{f8cc}", + "computer-mouse-scrollwheel": "\u{f8cd}", + "mouse-alt": "\u{f8cd}", + "computer-speaker": "\u{f8b2}", + "confluence": "\u{f78d}", + "connectdevelop": "\u{f20e}", + "container-storage": "\u{f4b7}", + "contao": "\u{f26d}", + "conveyor-belt": "\u{f46e}", + "conveyor-belt-arm": "\u{e5f8}", + "conveyor-belt-boxes": "\u{f46f}", + "conveyor-belt-alt": "\u{f46f}", + "conveyor-belt-empty": "\u{e150}", + "cookie": "\u{f563}", + "cookie-bite": "\u{f564}", + "copy": "\u{f0c5}", + "copyright": "\u{f1f9}", + "corn": "\u{f6c7}", + "corner": "\u{e3fe}", + "cotton-bureau": "\u{f89e}", + "couch": "\u{f4b8}", + "court-sport": "\u{e643}", + "cow": "\u{f6c8}", + "cowbell": "\u{f8b3}", + "cowbell-circle-plus": "\u{f8b4}", + "cowbell-more": "\u{f8b4}", + "cpanel": "\u{f388}", + "crab": "\u{e3ff}", + "crate-apple": "\u{f6b1}", + "apple-crate": "\u{f6b1}", + "crate-empty": "\u{e151}", + "creative-commons": "\u{f25e}", + "creative-commons-by": "\u{f4e7}", + "creative-commons-nc": "\u{f4e8}", + "creative-commons-nc-eu": "\u{f4e9}", + "creative-commons-nc-jp": "\u{f4ea}", + "creative-commons-nd": "\u{f4eb}", + "creative-commons-pd": "\u{f4ec}", + "creative-commons-pd-alt": "\u{f4ed}", + "creative-commons-remix": "\u{f4ee}", + "creative-commons-sa": "\u{f4ef}", + "creative-commons-sampling": "\u{f4f0}", + "creative-commons-sampling-plus": "\u{f4f1}", + "creative-commons-share": "\u{f4f2}", + "creative-commons-zero": "\u{f4f3}", + "credit-card": "\u{f09d}", + "credit-card-alt": "\u{f09d}", + "credit-card-blank": "\u{f389}", + "credit-card-front": "\u{f38a}", + "cricket-bat-ball": "\u{f449}", + "cricket": "\u{f449}", + "critical-role": "\u{f6c9}", + "croissant": "\u{f7f6}", + "crop": "\u{f125}", + "crop-simple": "\u{f565}", + "crop-alt": "\u{f565}", + "cross": "\u{f654}", + "crosshairs": "\u{f05b}", + "crosshairs-simple": "\u{e59f}", + "crow": "\u{f520}", + "crown": "\u{f521}", + "crutch": "\u{f7f7}", + "crutches": "\u{f7f8}", + "cruzeiro-sign": "\u{e152}", + "crystal-ball": "\u{e362}", + "css3": "\u{f13c}", + "css3-alt": "\u{f38b}", + "cube": "\u{f1b2}", + "cubes": "\u{f1b3}", + "cubes-stacked": "\u{e4e6}", + "cucumber": "\u{e401}", + "cupcake": "\u{e402}", + "cup-straw": "\u{e363}", + "cup-straw-swoosh": "\u{e364}", + "cup-togo": "\u{f6c5}", + "coffee-togo": "\u{f6c5}", + "curling-stone": "\u{f44a}", + "curling": "\u{f44a}", + "custard": "\u{e403}", + "cuttlefish": "\u{f38c}", + "d": "\u{44}", + "dagger": "\u{f6cb}", + "dailymotion": "\u{e052}", + "d-and-d": "\u{f38d}", + "d-and-d-beyond": "\u{f6ca}", + "dart-lang": "\u{e693}", + "dash": "\u{e404}", + "minus-large": "\u{e404}", + "dashcube": "\u{f210}", + "database": "\u{f1c0}", + "debian": "\u{e60b}", + "deer": "\u{f78e}", + "deer-rudolph": "\u{f78f}", + "deezer": "\u{e077}", + "delete-left": "\u{f55a}", + "backspace": "\u{f55a}", + "delete-right": "\u{e154}", + "delicious": "\u{f1a5}", + "democrat": "\u{f747}", + "deploydog": "\u{f38e}", + "deskpro": "\u{f38f}", + "desktop": "\u{f390}", + "desktop-alt": "\u{f390}", + "desktop-arrow-down": "\u{e155}", + "dev": "\u{f6cc}", + "deviantart": "\u{f1bd}", + "dharmachakra": "\u{f655}", + "dhl": "\u{f790}", + "diagram-cells": "\u{e475}", + "diagram-lean-canvas": "\u{e156}", + "diagram-nested": "\u{e157}", + "diagram-next": "\u{e476}", + "diagram-predecessor": "\u{e477}", + "diagram-previous": "\u{e478}", + "diagram-project": "\u{f542}", + "project-diagram": "\u{f542}", + "diagram-sankey": "\u{e158}", + "diagram-subtask": "\u{e479}", + "diagram-successor": "\u{e47a}", + "diagram-venn": "\u{e15a}", + "dial": "\u{e15b}", + "dial-med-high": "\u{e15b}", + "dial-high": "\u{e15c}", + "dial-low": "\u{e15d}", + "dial-max": "\u{e15e}", + "dial-med": "\u{e15f}", + "dial-med-low": "\u{e160}", + "dial-min": "\u{e161}", + "dial-off": "\u{e162}", + "diamond": "\u{f219}", + "diamond-exclamation": "\u{e405}", + "diamond-half": "\u{e5b7}", + "diamond-half-stroke": "\u{e5b8}", + "diamonds-4": "\u{e68b}", + "diamond-turn-right": "\u{f5eb}", + "directions": "\u{f5eb}", + "diaspora": "\u{f791}", + "dice": "\u{f522}", + "dice-d10": "\u{f6cd}", + "dice-d12": "\u{f6ce}", + "dice-d20": "\u{f6cf}", + "dice-d4": "\u{f6d0}", + "dice-d6": "\u{f6d1}", + "dice-d8": "\u{f6d2}", + "dice-five": "\u{f523}", + "dice-four": "\u{f524}", + "dice-one": "\u{f525}", + "dice-six": "\u{f526}", + "dice-three": "\u{f527}", + "dice-two": "\u{f528}", + "digg": "\u{f1a6}", + "digital-ocean": "\u{f391}", + "dinosaur": "\u{e5fe}", + "diploma": "\u{f5ea}", + "scroll-ribbon": "\u{f5ea}", + "disc-drive": "\u{f8b5}", + "discord": "\u{f392}", + "discourse": "\u{f393}", + "disease": "\u{f7fa}", + "display": "\u{e163}", + "display-arrow-down": "\u{e164}", + "display-chart-up": "\u{e5e3}", + "display-chart-up-circle-currency": "\u{e5e5}", + "display-chart-up-circle-dollar": "\u{e5e6}", + "display-code": "\u{e165}", + "desktop-code": "\u{e165}", + "display-medical": "\u{e166}", + "desktop-medical": "\u{e166}", + "display-slash": "\u{e2fa}", + "desktop-slash": "\u{e2fa}", + "distribute-spacing-horizontal": "\u{e365}", + "distribute-spacing-vertical": "\u{e366}", + "ditto": "\u{22}", + "divide": "\u{f529}", + "dna": "\u{f471}", + "dochub": "\u{f394}", + "docker": "\u{f395}", + "dog": "\u{f6d3}", + "dog-leashed": "\u{f6d4}", + "dollar-sign": "\u{24}", + "dollar": "\u{24}", + "usd": "\u{24}", + "dolly": "\u{f472}", + "dolly-box": "\u{f472}", + "dolly-empty": "\u{f473}", + "dolphin": "\u{e168}", + "dong-sign": "\u{e169}", + "do-not-enter": "\u{f5ec}", + "donut": "\u{e406}", + "doughnut": "\u{e406}", + "door-closed": "\u{f52a}", + "door-open": "\u{f52b}", + "dove": "\u{f4ba}", + "down": "\u{f354}", + "arrow-alt-down": "\u{f354}", + "down-from-bracket": "\u{e66b}", + "down-from-dotted-line": "\u{e407}", + "down-from-line": "\u{f349}", + "arrow-alt-from-top": "\u{f349}", + "down-left": "\u{e16a}", + "down-left-and-up-right-to-center": "\u{f422}", + "compress-alt": "\u{f422}", + "download": "\u{f019}", + "down-long": "\u{f309}", + "long-arrow-alt-down": "\u{f309}", + "down-right": "\u{e16b}", + "down-to-bracket": "\u{e4e7}", + "down-to-dotted-line": "\u{e408}", + "down-to-line": "\u{f34a}", + "arrow-alt-to-bottom": "\u{f34a}", + "draft2digital": "\u{f396}", + "dragon": "\u{f6d5}", + "draw-circle": "\u{f5ed}", + "draw-polygon": "\u{f5ee}", + "draw-square": "\u{f5ef}", + "dreidel": "\u{f792}", + "dribbble": "\u{f17d}", + "drone": "\u{f85f}", + "drone-front": "\u{f860}", + "drone-alt": "\u{f860}", + "dropbox": "\u{f16b}", + "droplet": "\u{f043}", + "tint": "\u{f043}", + "droplet-degree": "\u{f748}", + "dewpoint": "\u{f748}", + "droplet-percent": "\u{f750}", + "humidity": "\u{f750}", + "droplet-slash": "\u{f5c7}", + "tint-slash": "\u{f5c7}", + "drum": "\u{f569}", + "drum-steelpan": "\u{f56a}", + "drumstick": "\u{f6d6}", + "drumstick-bite": "\u{f6d7}", + "drupal": "\u{f1a9}", + "dryer": "\u{f861}", + "dryer-heat": "\u{f862}", + "dryer-alt": "\u{f862}", + "duck": "\u{f6d8}", + "dumbbell": "\u{f44b}", + "dumpster": "\u{f793}", + "dumpster-fire": "\u{f794}", + "dungeon": "\u{f6d9}", + "dyalog": "\u{f399}", + "e": "\u{45}", + "ear": "\u{f5f0}", + "ear-deaf": "\u{f2a4}", + "deaf": "\u{f2a4}", + "deafness": "\u{f2a4}", + "hard-of-hearing": "\u{f2a4}", + "ear-listen": "\u{f2a2}", + "assistive-listening-systems": "\u{f2a2}", + "earlybirds": "\u{f39a}", + "ear-muffs": "\u{f795}", + "earth-africa": "\u{f57c}", + "globe-africa": "\u{f57c}", + "earth-americas": "\u{f57d}", + "earth": "\u{f57d}", + "earth-america": "\u{f57d}", + "globe-americas": "\u{f57d}", + "earth-asia": "\u{f57e}", + "globe-asia": "\u{f57e}", + "earth-europe": "\u{f7a2}", + "globe-europe": "\u{f7a2}", + "earth-oceania": "\u{e47b}", + "globe-oceania": "\u{e47b}", + "ebay": "\u{f4f4}", + "eclipse": "\u{f749}", + "edge": "\u{f282}", + "edge-legacy": "\u{e078}", + "egg": "\u{f7fb}", + "egg-fried": "\u{f7fc}", + "eggplant": "\u{e16c}", + "eject": "\u{f052}", + "elementor": "\u{f430}", + "elephant": "\u{f6da}", + "elevator": "\u{e16d}", + "ellipsis": "\u{f141}", + "ellipsis-h": "\u{f141}", + "ellipsis-stroke": "\u{f39b}", + "ellipsis-h-alt": "\u{f39b}", + "ellipsis-stroke-vertical": "\u{f39c}", + "ellipsis-v-alt": "\u{f39c}", + "ellipsis-vertical": "\u{f142}", + "ellipsis-v": "\u{f142}", + "ello": "\u{f5f1}", + "ember": "\u{f423}", + "empire": "\u{f1d1}", + "empty-set": "\u{f656}", + "engine": "\u{e16e}", + "engine-warning": "\u{f5f2}", + "engine-exclamation": "\u{f5f2}", + "envelope": "\u{f0e0}", + "envelope-circle-check": "\u{e4e8}", + "envelope-dot": "\u{e16f}", + "envelope-badge": "\u{e16f}", + "envelope-open": "\u{f2b6}", + "envelope-open-dollar": "\u{f657}", + "envelope-open-text": "\u{f658}", + "envelopes": "\u{e170}", + "envelopes-bulk": "\u{f674}", + "mail-bulk": "\u{f674}", + "envira": "\u{f299}", + "equals": "\u{3d}", + "eraser": "\u{f12d}", + "erlang": "\u{f39d}", + "escalator": "\u{e171}", + "ethereum": "\u{f42e}", + "ethernet": "\u{f796}", + "etsy": "\u{f2d7}", + "euro-sign": "\u{f153}", + "eur": "\u{f153}", + "euro": "\u{f153}", + "evernote": "\u{f839}", + "excavator": "\u{e656}", + "exclamation": "\u{21}", + "expand": "\u{f065}", + "expand-wide": "\u{f320}", + "expeditedssl": "\u{f23e}", + "explosion": "\u{e4e9}", + "eye": "\u{f06e}", + "eye-dropper": "\u{f1fb}", + "eye-dropper-empty": "\u{f1fb}", + "eyedropper": "\u{f1fb}", + "eye-dropper-full": "\u{e172}", + "eye-dropper-half": "\u{e173}", + "eye-evil": "\u{f6db}", + "eye-low-vision": "\u{f2a8}", + "low-vision": "\u{f2a8}", + "eyes": "\u{e367}", + "eye-slash": "\u{f070}", + "f": "\u{46}", + "face-angry": "\u{f556}", + "angry": "\u{f556}", + "face-angry-horns": "\u{e368}", + "face-anguished": "\u{e369}", + "face-anxious-sweat": "\u{e36a}", + "face-astonished": "\u{e36b}", + "face-awesome": "\u{e409}", + "gave-dandy": "\u{e409}", + "face-beam-hand-over-mouth": "\u{e47c}", + "facebook": "\u{f09a}", + "facebook-f": "\u{f39e}", + "facebook-messenger": "\u{f39f}", + "face-clouds": "\u{e47d}", + "face-confounded": "\u{e36c}", + "face-confused": "\u{e36d}", + "face-cowboy-hat": "\u{e36e}", + "face-diagonal-mouth": "\u{e47e}", + "face-disappointed": "\u{e36f}", + "face-disguise": "\u{e370}", + "face-dizzy": "\u{f567}", + "dizzy": "\u{f567}", + "face-dotted": "\u{e47f}", + "face-downcast-sweat": "\u{e371}", + "face-drooling": "\u{e372}", + "face-exhaling": "\u{e480}", + "face-explode": "\u{e2fe}", + "exploding-head": "\u{e2fe}", + "face-expressionless": "\u{e373}", + "face-eyes-xmarks": "\u{e374}", + "face-fearful": "\u{e375}", + "face-flushed": "\u{f579}", + "flushed": "\u{f579}", + "face-frown": "\u{f119}", + "frown": "\u{f119}", + "face-frown-open": "\u{f57a}", + "frown-open": "\u{f57a}", + "face-frown-slight": "\u{e376}", + "face-glasses": "\u{e377}", + "face-grimace": "\u{f57f}", + "grimace": "\u{f57f}", + "face-grin": "\u{f580}", + "grin": "\u{f580}", + "face-grin-beam": "\u{f582}", + "grin-beam": "\u{f582}", + "face-grin-beam-sweat": "\u{f583}", + "grin-beam-sweat": "\u{f583}", + "face-grin-hearts": "\u{f584}", + "grin-hearts": "\u{f584}", + "face-grin-squint": "\u{f585}", + "grin-squint": "\u{f585}", + "face-grin-squint-tears": "\u{f586}", + "grin-squint-tears": "\u{f586}", + "face-grin-stars": "\u{f587}", + "grin-stars": "\u{f587}", + "face-grin-tears": "\u{f588}", + "grin-tears": "\u{f588}", + "face-grin-tongue": "\u{f589}", + "grin-tongue": "\u{f589}", + "face-grin-tongue-squint": "\u{f58a}", + "grin-tongue-squint": "\u{f58a}", + "face-grin-tongue-wink": "\u{f58b}", + "grin-tongue-wink": "\u{f58b}", + "face-grin-wide": "\u{f581}", + "grin-alt": "\u{f581}", + "face-grin-wink": "\u{f58c}", + "grin-wink": "\u{f58c}", + "face-hand-over-mouth": "\u{e378}", + "face-hand-peeking": "\u{e481}", + "face-hand-yawn": "\u{e379}", + "face-head-bandage": "\u{e37a}", + "face-holding-back-tears": "\u{e482}", + "face-hushed": "\u{e37b}", + "face-icicles": "\u{e37c}", + "face-kiss": "\u{f596}", + "kiss": "\u{f596}", + "face-kiss-beam": "\u{f597}", + "kiss-beam": "\u{f597}", + "face-kiss-closed-eyes": "\u{e37d}", + "face-kiss-wink-heart": "\u{f598}", + "kiss-wink-heart": "\u{f598}", + "face-laugh": "\u{f599}", + "laugh": "\u{f599}", + "face-laugh-beam": "\u{f59a}", + "laugh-beam": "\u{f59a}", + "face-laugh-squint": "\u{f59b}", + "laugh-squint": "\u{f59b}", + "face-laugh-wink": "\u{f59c}", + "laugh-wink": "\u{f59c}", + "face-lying": "\u{e37e}", + "face-mask": "\u{e37f}", + "face-meh": "\u{f11a}", + "meh": "\u{f11a}", + "face-meh-blank": "\u{f5a4}", + "meh-blank": "\u{f5a4}", + "face-melting": "\u{e483}", + "face-monocle": "\u{e380}", + "face-nauseated": "\u{e381}", + "face-nose-steam": "\u{e382}", + "face-party": "\u{e383}", + "face-pensive": "\u{e384}", + "face-persevering": "\u{e385}", + "face-pleading": "\u{e386}", + "face-pouting": "\u{e387}", + "face-raised-eyebrow": "\u{e388}", + "face-relieved": "\u{e389}", + "face-rolling-eyes": "\u{f5a5}", + "meh-rolling-eyes": "\u{f5a5}", + "face-sad-cry": "\u{f5b3}", + "sad-cry": "\u{f5b3}", + "face-sad-sweat": "\u{e38a}", + "face-sad-tear": "\u{f5b4}", + "sad-tear": "\u{f5b4}", + "face-saluting": "\u{e484}", + "face-scream": "\u{e38b}", + "face-shush": "\u{e38c}", + "face-sleeping": "\u{e38d}", + "face-sleepy": "\u{e38e}", + "face-smile": "\u{f118}", + "smile": "\u{f118}", + "face-smile-beam": "\u{f5b8}", + "smile-beam": "\u{f5b8}", + "face-smile-halo": "\u{e38f}", + "face-smile-hearts": "\u{e390}", + "face-smile-horns": "\u{e391}", + "face-smile-plus": "\u{f5b9}", + "smile-plus": "\u{f5b9}", + "face-smile-relaxed": "\u{e392}", + "face-smile-tear": "\u{e393}", + "face-smile-tongue": "\u{e394}", + "face-smile-upside-down": "\u{e395}", + "face-smile-wink": "\u{f4da}", + "smile-wink": "\u{f4da}", + "face-smiling-hands": "\u{e396}", + "face-smirking": "\u{e397}", + "face-spiral-eyes": "\u{e485}", + "face-sunglasses": "\u{e398}", + "face-surprise": "\u{f5c2}", + "surprise": "\u{f5c2}", + "face-swear": "\u{e399}", + "face-thermometer": "\u{e39a}", + "face-thinking": "\u{e39b}", + "face-tired": "\u{f5c8}", + "tired": "\u{f5c8}", + "face-tissue": "\u{e39c}", + "face-tongue-money": "\u{e39d}", + "face-tongue-sweat": "\u{e39e}", + "face-unamused": "\u{e39f}", + "face-viewfinder": "\u{e2ff}", + "face-vomit": "\u{e3a0}", + "face-weary": "\u{e3a1}", + "face-woozy": "\u{e3a2}", + "face-worried": "\u{e3a3}", + "face-zany": "\u{e3a4}", + "face-zipper": "\u{e3a5}", + "falafel": "\u{e40a}", + "family": "\u{e300}", + "family-dress": "\u{e301}", + "family-pants": "\u{e302}", + "fan": "\u{f863}", + "fan-table": "\u{e004}", + "fantasy-flight-games": "\u{f6dc}", + "farm": "\u{f864}", + "barn-silo": "\u{f864}", + "faucet": "\u{e005}", + "faucet-drip": "\u{e006}", + "fax": "\u{f1ac}", + "feather": "\u{f52d}", + "feather-pointed": "\u{f56b}", + "feather-alt": "\u{f56b}", + "fedex": "\u{f797}", + "fedora": "\u{f798}", + "fence": "\u{e303}", + "ferris-wheel": "\u{e174}", + "ferry": "\u{e4ea}", + "field-hockey-stick-ball": "\u{f44c}", + "field-hockey": "\u{f44c}", + "figma": "\u{f799}", + "file": "\u{f15b}", + "file-arrow-down": "\u{f56d}", + "file-download": "\u{f56d}", + "file-arrow-up": "\u{f574}", + "file-upload": "\u{f574}", + "file-audio": "\u{f1c7}", + "file-binary": "\u{e175}", + "file-cad": "\u{e672}", + "file-certificate": "\u{f5f3}", + "file-award": "\u{f5f3}", + "file-chart-column": "\u{f659}", + "file-chart-line": "\u{f659}", + "file-chart-pie": "\u{f65a}", + "file-check": "\u{f316}", + "file-circle-check": "\u{e5a0}", + "file-circle-exclamation": "\u{e4eb}", + "file-circle-info": "\u{e493}", + "file-circle-minus": "\u{e4ed}", + "file-circle-plus": "\u{e494}", + "file-circle-question": "\u{e4ef}", + "file-circle-xmark": "\u{e5a1}", + "file-code": "\u{f1c9}", + "file-contract": "\u{f56c}", + "file-csv": "\u{f6dd}", + "file-dashed-line": "\u{f877}", + "page-break": "\u{f877}", + "file-doc": "\u{e5ed}", + "file-eps": "\u{e644}", + "file-excel": "\u{f1c3}", + "file-exclamation": "\u{f31a}", + "file-export": "\u{f56e}", + "arrow-right-from-file": "\u{f56e}", + "file-gif": "\u{e645}", + "file-heart": "\u{e176}", + "file-image": "\u{f1c5}", + "file-import": "\u{f56f}", + "arrow-right-to-file": "\u{f56f}", + "file-invoice": "\u{f570}", + "file-invoice-dollar": "\u{f571}", + "file-jpg": "\u{e646}", + "file-lines": "\u{f15c}", + "file-alt": "\u{f15c}", + "file-text": "\u{f15c}", + "file-lock": "\u{e3a6}", + "file-magnifying-glass": "\u{f865}", + "file-search": "\u{f865}", + "file-medical": "\u{f477}", + "file-minus": "\u{f318}", + "file-mov": "\u{e647}", + "file-mp3": "\u{e648}", + "file-mp4": "\u{e649}", + "file-music": "\u{f8b6}", + "file-pdf": "\u{f1c1}", + "file-pen": "\u{f31c}", + "file-edit": "\u{f31c}", + "file-plus": "\u{f319}", + "file-plus-minus": "\u{e177}", + "file-png": "\u{e666}", + "file-powerpoint": "\u{f1c4}", + "file-ppt": "\u{e64a}", + "file-prescription": "\u{f572}", + "files": "\u{e178}", + "file-shield": "\u{e4f0}", + "file-signature": "\u{f573}", + "file-slash": "\u{e3a7}", + "files-medical": "\u{f7fd}", + "file-spreadsheet": "\u{f65b}", + "file-svg": "\u{e64b}", + "file-user": "\u{f65c}", + "file-vector": "\u{e64c}", + "file-video": "\u{f1c8}", + "file-waveform": "\u{f478}", + "file-medical-alt": "\u{f478}", + "file-word": "\u{f1c2}", + "file-xls": "\u{e64d}", + "file-xmark": "\u{f317}", + "file-times": "\u{f317}", + "file-xml": "\u{e654}", + "file-zip": "\u{e5ee}", + "file-zipper": "\u{f1c6}", + "file-archive": "\u{f1c6}", + "fill": "\u{f575}", + "fill-drip": "\u{f576}", + "film": "\u{f008}", + "film-canister": "\u{f8b7}", + "film-cannister": "\u{f8b7}", + "films": "\u{e17a}", + "film-simple": "\u{f3a0}", + "film-alt": "\u{f3a0}", + "film-slash": "\u{e179}", + "filter": "\u{f0b0}", + "filter-circle-dollar": "\u{f662}", + "funnel-dollar": "\u{f662}", + "filter-circle-xmark": "\u{e17b}", + "filter-list": "\u{e17c}", + "filters": "\u{e17e}", + "filter-slash": "\u{e17d}", + "fingerprint": "\u{f577}", + "fire": "\u{f06d}", + "fire-burner": "\u{e4f1}", + "fire-extinguisher": "\u{f134}", + "fire-flame": "\u{f6df}", + "flame": "\u{f6df}", + "fire-flame-curved": "\u{f7e4}", + "fire-alt": "\u{f7e4}", + "fire-flame-simple": "\u{f46a}", + "burn": "\u{f46a}", + "firefox": "\u{f269}", + "firefox-browser": "\u{e007}", + "fire-hydrant": "\u{e17f}", + "fireplace": "\u{f79a}", + "fire-smoke": "\u{f74b}", + "firstdraft": "\u{f3a1}", + "first-order": "\u{f2b0}", + "first-order-alt": "\u{f50a}", + "fish": "\u{f578}", + "fish-bones": "\u{e304}", + "fish-cooked": "\u{f7fe}", + "fish-fins": "\u{e4f2}", + "fishing-rod": "\u{e3a8}", + "flag": "\u{f024}", + "flag-checkered": "\u{f11e}", + "flag-pennant": "\u{f456}", + "pennant": "\u{f456}", + "flag-swallowtail": "\u{f74c}", + "flag-alt": "\u{f74c}", + "flag-usa": "\u{f74d}", + "flashlight": "\u{f8b8}", + "flask": "\u{f0c3}", + "flask-gear": "\u{e5f1}", + "flask-round-poison": "\u{f6e0}", + "flask-poison": "\u{f6e0}", + "flask-round-potion": "\u{f6e1}", + "flask-potion": "\u{f6e1}", + "flask-vial": "\u{e4f3}", + "flatbread": "\u{e40b}", + "flatbread-stuffed": "\u{e40c}", + "flickr": "\u{f16e}", + "flipboard": "\u{f44d}", + "floppy-disk": "\u{f0c7}", + "save": "\u{f0c7}", + "floppy-disk-circle-arrow-right": "\u{e180}", + "save-circle-arrow-right": "\u{e180}", + "floppy-disk-circle-xmark": "\u{e181}", + "floppy-disk-times": "\u{e181}", + "save-circle-xmark": "\u{e181}", + "save-times": "\u{e181}", + "floppy-disk-pen": "\u{e182}", + "floppy-disks": "\u{e183}", + "florin-sign": "\u{e184}", + "flower": "\u{f7ff}", + "flower-daffodil": "\u{f800}", + "flower-tulip": "\u{f801}", + "flute": "\u{f8b9}", + "flutter": "\u{e694}", + "flux-capacitor": "\u{f8ba}", + "fly": "\u{f417}", + "flying-disc": "\u{e3a9}", + "folder": "\u{f07b}", + "folder-blank": "\u{f07b}", + "folder-arrow-down": "\u{e053}", + "folder-download": "\u{e053}", + "folder-arrow-up": "\u{e054}", + "folder-upload": "\u{e054}", + "folder-bookmark": "\u{e186}", + "folder-check": "\u{e64e}", + "folder-closed": "\u{e185}", + "folder-gear": "\u{e187}", + "folder-cog": "\u{e187}", + "folder-grid": "\u{e188}", + "folder-heart": "\u{e189}", + "folder-image": "\u{e18a}", + "folder-magnifying-glass": "\u{e18b}", + "folder-search": "\u{e18b}", + "folder-medical": "\u{e18c}", + "folder-minus": "\u{f65d}", + "folder-music": "\u{e18d}", + "folder-open": "\u{f07c}", + "folder-plus": "\u{f65e}", + "folders": "\u{f660}", + "folder-tree": "\u{f802}", + "folder-user": "\u{e18e}", + "folder-xmark": "\u{f65f}", + "folder-times": "\u{f65f}", + "fondue-pot": "\u{e40d}", + "font": "\u{f031}", + "font-awesome": "\u{f2b4}", + "font-awesome-flag": "\u{f2b4}", + "font-awesome-logo-full": "\u{f2b4}", + "font-case": "\u{f866}", + "fonticons": "\u{f280}", + "fonticons-fi": "\u{f3a2}", + "football": "\u{f44e}", + "football-ball": "\u{f44e}", + "football-helmet": "\u{f44f}", + "fork": "\u{f2e3}", + "utensil-fork": "\u{f2e3}", + "fork-knife": "\u{f2e6}", + "utensils-alt": "\u{f2e6}", + "forklift": "\u{f47a}", + "fort": "\u{e486}", + "fort-awesome": "\u{f286}", + "fort-awesome-alt": "\u{f3a3}", + "forumbee": "\u{f211}", + "forward": "\u{f04e}", + "forward-fast": "\u{f050}", + "fast-forward": "\u{f050}", + "forward-step": "\u{f051}", + "step-forward": "\u{f051}", + "foursquare": "\u{f180}", + "frame": "\u{e495}", + "franc-sign": "\u{e18f}", + "freebsd": "\u{f3a4}", + "free-code-camp": "\u{f2c5}", + "french-fries": "\u{f803}", + "frog": "\u{f52e}", + "fulcrum": "\u{f50b}", + "function": "\u{f661}", + "futbol": "\u{f1e3}", + "futbol-ball": "\u{f1e3}", + "soccer-ball": "\u{f1e3}", + "g": "\u{47}", + "galactic-republic": "\u{f50c}", + "galactic-senate": "\u{f50d}", + "galaxy": "\u{e008}", + "gallery-thumbnails": "\u{e3aa}", + "game-board": "\u{f867}", + "game-board-simple": "\u{f868}", + "game-board-alt": "\u{f868}", + "game-console-handheld": "\u{f8bb}", + "game-console-handheld-crank": "\u{e5b9}", + "gamepad": "\u{f11b}", + "gamepad-modern": "\u{e5a2}", + "gamepad-alt": "\u{e5a2}", + "garage": "\u{e009}", + "garage-car": "\u{e00a}", + "garage-open": "\u{e00b}", + "garlic": "\u{e40e}", + "gas-pump": "\u{f52f}", + "gas-pump-slash": "\u{f5f4}", + "gauge": "\u{f624}", + "dashboard": "\u{f624}", + "gauge-med": "\u{f624}", + "tachometer-alt-average": "\u{f624}", + "gauge-circle-bolt": "\u{e496}", + "gauge-circle-minus": "\u{e497}", + "gauge-circle-plus": "\u{e498}", + "gauge-high": "\u{f625}", + "tachometer-alt": "\u{f625}", + "tachometer-alt-fast": "\u{f625}", + "gauge-low": "\u{f627}", + "tachometer-alt-slow": "\u{f627}", + "gauge-max": "\u{f626}", + "tachometer-alt-fastest": "\u{f626}", + "gauge-min": "\u{f628}", + "tachometer-alt-slowest": "\u{f628}", + "gauge-simple": "\u{f629}", + "gauge-simple-med": "\u{f629}", + "tachometer-average": "\u{f629}", + "gauge-simple-high": "\u{f62a}", + "tachometer": "\u{f62a}", + "tachometer-fast": "\u{f62a}", + "gauge-simple-low": "\u{f62c}", + "tachometer-slow": "\u{f62c}", + "gauge-simple-max": "\u{f62b}", + "tachometer-fastest": "\u{f62b}", + "gauge-simple-min": "\u{f62d}", + "tachometer-slowest": "\u{f62d}", + "gavel": "\u{f0e3}", + "legal": "\u{f0e3}", + "gear": "\u{f013}", + "cog": "\u{f013}", + "gear-code": "\u{e5e8}", + "gear-complex": "\u{e5e9}", + "gear-complex-code": "\u{e5eb}", + "gears": "\u{f085}", + "cogs": "\u{f085}", + "gem": "\u{f3a5}", + "genderless": "\u{f22d}", + "get-pocket": "\u{f265}", + "gg": "\u{f260}", + "gg-circle": "\u{f261}", + "ghost": "\u{f6e2}", + "gif": "\u{e190}", + "gift": "\u{f06b}", + "gift-card": "\u{f663}", + "gifts": "\u{f79c}", + "gingerbread-man": "\u{f79d}", + "git": "\u{f1d3}", + "git-alt": "\u{f841}", + "github": "\u{f09b}", + "github-alt": "\u{f113}", + "gitkraken": "\u{f3a6}", + "gitlab": "\u{f296}", + "gitter": "\u{f426}", + "glass": "\u{f804}", + "glass-citrus": "\u{f869}", + "glass-empty": "\u{e191}", + "glasses": "\u{f530}", + "glasses-round": "\u{f5f5}", + "glasses-alt": "\u{f5f5}", + "glass-half": "\u{e192}", + "glass-half-empty": "\u{e192}", + "glass-half-full": "\u{e192}", + "glass-water": "\u{e4f4}", + "glass-water-droplet": "\u{e4f5}", + "glide": "\u{f2a5}", + "glide-g": "\u{f2a6}", + "globe": "\u{f0ac}", + "globe-pointer": "\u{e60e}", + "globe-snow": "\u{f7a3}", + "globe-stand": "\u{f5f6}", + "globe-wifi": "\u{e685}", + "goal-net": "\u{e3ab}", + "gofore": "\u{f3a7}", + "golang": "\u{e40f}", + "golf-ball-tee": "\u{f450}", + "golf-ball": "\u{f450}", + "golf-club": "\u{f451}", + "golf-flag-hole": "\u{e3ac}", + "goodreads": "\u{f3a8}", + "goodreads-g": "\u{f3a9}", + "google": "\u{f1a0}", + "google-drive": "\u{f3aa}", + "google-pay": "\u{e079}", + "google-play": "\u{f3ab}", + "google-plus": "\u{f2b3}", + "google-plus-g": "\u{f0d5}", + "google-scholar": "\u{e63b}", + "google-wallet": "\u{f1ee}", + "gopuram": "\u{f664}", + "graduation-cap": "\u{f19d}", + "mortar-board": "\u{f19d}", + "gramophone": "\u{f8bd}", + "grapes": "\u{e306}", + "grate": "\u{e193}", + "grate-droplet": "\u{e194}", + "gratipay": "\u{f184}", + "grav": "\u{f2d6}", + "greater-than": "\u{3e}", + "greater-than-equal": "\u{f532}", + "grid": "\u{e195}", + "grid-3": "\u{e195}", + "grid-2": "\u{e196}", + "grid-2-plus": "\u{e197}", + "grid-4": "\u{e198}", + "grid-5": "\u{e199}", + "grid-dividers": "\u{e3ad}", + "grid-horizontal": "\u{e307}", + "grid-round": "\u{e5da}", + "grid-round-2": "\u{e5db}", + "grid-round-2-plus": "\u{e5dc}", + "grid-round-4": "\u{e5dd}", + "grid-round-5": "\u{e5de}", + "grill": "\u{e5a3}", + "grill-fire": "\u{e5a4}", + "grill-hot": "\u{e5a5}", + "grip": "\u{f58d}", + "grip-horizontal": "\u{f58d}", + "grip-dots": "\u{e410}", + "grip-dots-vertical": "\u{e411}", + "gripfire": "\u{f3ac}", + "grip-lines": "\u{f7a4}", + "grip-lines-vertical": "\u{f7a5}", + "grip-vertical": "\u{f58e}", + "group-arrows-rotate": "\u{e4f6}", + "grunt": "\u{f3ad}", + "guarani-sign": "\u{e19a}", + "guilded": "\u{e07e}", + "guitar": "\u{f7a6}", + "guitar-electric": "\u{f8be}", + "guitars": "\u{f8bf}", + "gulp": "\u{f3ae}", + "gun": "\u{e19b}", + "gun-slash": "\u{e19c}", + "gun-squirt": "\u{e19d}", + "h": "\u{48}", + "h1": "\u{f313}", + "h2": "\u{f314}", + "h3": "\u{f315}", + "h4": "\u{f86a}", + "h5": "\u{e412}", + "h6": "\u{e413}", + "hacker-news": "\u{f1d4}", + "hackerrank": "\u{f5f7}", + "hammer": "\u{f6e3}", + "hammer-brush": "\u{e620}", + "hammer-crash": "\u{e414}", + "hammer-war": "\u{f6e4}", + "hamsa": "\u{f665}", + "hand": "\u{f256}", + "hand-paper": "\u{f256}", + "hand-back-fist": "\u{f255}", + "hand-rock": "\u{f255}", + "hand-back-point-down": "\u{e19e}", + "hand-back-point-left": "\u{e19f}", + "hand-back-point-ribbon": "\u{e1a0}", + "hand-back-point-right": "\u{e1a1}", + "hand-back-point-up": "\u{e1a2}", + "handcuffs": "\u{e4f8}", + "hand-dots": "\u{f461}", + "allergies": "\u{f461}", + "hand-fingers-crossed": "\u{e1a3}", + "hand-fist": "\u{f6de}", + "fist-raised": "\u{f6de}", + "hand-heart": "\u{f4bc}", + "hand-holding": "\u{f4bd}", + "hand-holding-box": "\u{f47b}", + "hand-holding-circle-dollar": "\u{e621}", + "hand-holding-dollar": "\u{f4c0}", + "hand-holding-usd": "\u{f4c0}", + "hand-holding-droplet": "\u{f4c1}", + "hand-holding-water": "\u{f4c1}", + "hand-holding-hand": "\u{e4f7}", + "hand-holding-heart": "\u{f4be}", + "hand-holding-magic": "\u{f6e5}", + "hand-holding-medical": "\u{e05c}", + "hand-holding-seedling": "\u{f4bf}", + "hand-holding-skull": "\u{e1a4}", + "hand-horns": "\u{e1a9}", + "hand-lizard": "\u{f258}", + "hand-love": "\u{e1a5}", + "hand-middle-finger": "\u{f806}", + "hand-peace": "\u{f25b}", + "hand-point-down": "\u{f0a7}", + "hand-pointer": "\u{f25a}", + "hand-point-left": "\u{f0a5}", + "hand-point-ribbon": "\u{e1a6}", + "hand-point-right": "\u{f0a4}", + "hand-point-up": "\u{f0a6}", + "hands": "\u{f2a7}", + "sign-language": "\u{f2a7}", + "signing": "\u{f2a7}", + "hands-asl-interpreting": "\u{f2a3}", + "american-sign-language-interpreting": "\u{f2a3}", + "asl-interpreting": "\u{f2a3}", + "hands-american-sign-language-interpreting": "\u{f2a3}", + "hands-bound": "\u{e4f9}", + "hands-bubbles": "\u{e05e}", + "hands-wash": "\u{e05e}", + "hand-scissors": "\u{f257}", + "hands-clapping": "\u{e1a8}", + "handshake": "\u{f2b5}", + "handshake-angle": "\u{f4c4}", + "hands-helping": "\u{f4c4}", + "handshake-simple": "\u{f4c6}", + "handshake-alt": "\u{f4c6}", + "handshake-simple-slash": "\u{e05f}", + "handshake-alt-slash": "\u{e05f}", + "handshake-slash": "\u{e060}", + "hands-holding": "\u{f4c2}", + "hands-holding-child": "\u{e4fa}", + "hands-holding-circle": "\u{e4fb}", + "hands-holding-diamond": "\u{f47c}", + "hand-receiving": "\u{f47c}", + "hands-holding-dollar": "\u{f4c5}", + "hands-usd": "\u{f4c5}", + "hands-holding-heart": "\u{f4c3}", + "hands-heart": "\u{f4c3}", + "hand-sparkles": "\u{e05d}", + "hand-spock": "\u{f259}", + "hands-praying": "\u{f684}", + "praying-hands": "\u{f684}", + "hand-wave": "\u{e1a7}", + "hanukiah": "\u{f6e6}", + "hard-drive": "\u{f0a0}", + "hdd": "\u{f0a0}", + "hashnode": "\u{e499}", + "hashtag": "\u{23}", + "hashtag-lock": "\u{e415}", + "hat-beach": "\u{e606}", + "hat-chef": "\u{f86b}", + "hat-cowboy": "\u{f8c0}", + "hat-cowboy-side": "\u{f8c1}", + "hat-santa": "\u{f7a7}", + "hat-winter": "\u{f7a8}", + "hat-witch": "\u{f6e7}", + "hat-wizard": "\u{f6e8}", + "heading": "\u{f1dc}", + "header": "\u{f1dc}", + "headphones": "\u{f025}", + "headphones-simple": "\u{f58f}", + "headphones-alt": "\u{f58f}", + "headset": "\u{f590}", + "head-side": "\u{f6e9}", + "head-side-brain": "\u{f808}", + "head-side-cough": "\u{e061}", + "head-side-cough-slash": "\u{e062}", + "head-side-gear": "\u{e611}", + "head-side-goggles": "\u{f6ea}", + "head-vr": "\u{f6ea}", + "head-side-headphones": "\u{f8c2}", + "head-side-heart": "\u{e1aa}", + "head-side-mask": "\u{e063}", + "head-side-medical": "\u{f809}", + "head-side-virus": "\u{e064}", + "heart": "\u{f004}", + "heart-circle-bolt": "\u{e4fc}", + "heart-circle-check": "\u{e4fd}", + "heart-circle-exclamation": "\u{e4fe}", + "heart-circle-minus": "\u{e4ff}", + "heart-circle-plus": "\u{e500}", + "heart-circle-xmark": "\u{e501}", + "heart-crack": "\u{f7a9}", + "heart-broken": "\u{f7a9}", + "heart-half": "\u{e1ab}", + "heart-half-stroke": "\u{e1ac}", + "heart-half-alt": "\u{e1ac}", + "heart-pulse": "\u{f21e}", + "heartbeat": "\u{f21e}", + "heat": "\u{e00c}", + "helicopter": "\u{f533}", + "helicopter-symbol": "\u{e502}", + "helmet-battle": "\u{f6eb}", + "helmet-safety": "\u{f807}", + "hard-hat": "\u{f807}", + "hat-hard": "\u{f807}", + "helmet-un": "\u{e503}", + "hexagon": "\u{f312}", + "hexagon-check": "\u{e416}", + "hexagon-divide": "\u{e1ad}", + "hexagon-exclamation": "\u{e417}", + "hexagon-image": "\u{e504}", + "hexagon-minus": "\u{f307}", + "minus-hexagon": "\u{f307}", + "hexagon-plus": "\u{f300}", + "plus-hexagon": "\u{f300}", + "hexagon-vertical-nft": "\u{e505}", + "hexagon-vertical-nft-slanted": "\u{e506}", + "hexagon-xmark": "\u{f2ee}", + "times-hexagon": "\u{f2ee}", + "xmark-hexagon": "\u{f2ee}", + "high-definition": "\u{e1ae}", + "rectangle-hd": "\u{e1ae}", + "highlighter": "\u{f591}", + "highlighter-line": "\u{e1af}", + "hill-avalanche": "\u{e507}", + "hill-rockslide": "\u{e508}", + "hippo": "\u{f6ed}", + "hips": "\u{f452}", + "hire-a-helper": "\u{f3b0}", + "hive": "\u{e07f}", + "hockey-mask": "\u{f6ee}", + "hockey-puck": "\u{f453}", + "hockey-stick-puck": "\u{e3ae}", + "hockey-sticks": "\u{f454}", + "holly-berry": "\u{f7aa}", + "honey-pot": "\u{e418}", + "hood-cloak": "\u{f6ef}", + "hooli": "\u{f427}", + "horizontal-rule": "\u{f86c}", + "hornbill": "\u{f592}", + "horse": "\u{f6f0}", + "horse-head": "\u{f7ab}", + "horse-saddle": "\u{f8c3}", + "hose": "\u{e419}", + "hose-reel": "\u{e41a}", + "hospital": "\u{f0f8}", + "hospital-alt": "\u{f0f8}", + "hospital-wide": "\u{f0f8}", + "hospitals": "\u{f80e}", + "hospital-user": "\u{f80d}", + "hotdog": "\u{f80f}", + "hotel": "\u{f594}", + "hotjar": "\u{f3b1}", + "hot-tub-person": "\u{f593}", + "hot-tub": "\u{f593}", + "hourglass": "\u{f254}", + "hourglass-empty": "\u{f254}", + "hourglass-clock": "\u{e41b}", + "hourglass-end": "\u{f253}", + "hourglass-3": "\u{f253}", + "hourglass-half": "\u{f252}", + "hourglass-2": "\u{f252}", + "hourglass-start": "\u{f251}", + "hourglass-1": "\u{f251}", + "house": "\u{f015}", + "home": "\u{f015}", + "home-alt": "\u{f015}", + "home-lg-alt": "\u{f015}", + "house-blank": "\u{e487}", + "home-blank": "\u{e487}", + "house-building": "\u{e1b1}", + "house-chimney": "\u{e3af}", + "home-lg": "\u{e3af}", + "house-chimney-blank": "\u{e3b0}", + "house-chimney-crack": "\u{f6f1}", + "house-damage": "\u{f6f1}", + "house-chimney-heart": "\u{e1b2}", + "house-chimney-medical": "\u{f7f2}", + "clinic-medical": "\u{f7f2}", + "house-chimney-user": "\u{e065}", + "house-chimney-window": "\u{e00d}", + "house-circle-check": "\u{e509}", + "house-circle-exclamation": "\u{e50a}", + "house-circle-xmark": "\u{e50b}", + "house-crack": "\u{e3b1}", + "house-day": "\u{e00e}", + "house-fire": "\u{e50c}", + "house-flag": "\u{e50d}", + "house-flood-water": "\u{e50e}", + "house-flood-water-circle-arrow-right": "\u{e50f}", + "house-heart": "\u{f4c9}", + "home-heart": "\u{f4c9}", + "house-laptop": "\u{e066}", + "laptop-house": "\u{e066}", + "house-lock": "\u{e510}", + "house-medical": "\u{e3b2}", + "house-medical-circle-check": "\u{e511}", + "house-medical-circle-exclamation": "\u{e512}", + "house-medical-circle-xmark": "\u{e513}", + "house-medical-flag": "\u{e514}", + "house-night": "\u{e010}", + "house-person-leave": "\u{e00f}", + "house-leave": "\u{e00f}", + "house-person-depart": "\u{e00f}", + "house-person-return": "\u{e011}", + "house-person-arrive": "\u{e011}", + "house-return": "\u{e011}", + "house-signal": "\u{e012}", + "house-tree": "\u{e1b3}", + "house-tsunami": "\u{e515}", + "house-turret": "\u{e1b4}", + "house-user": "\u{e1b0}", + "home-user": "\u{e1b0}", + "house-water": "\u{f74f}", + "house-flood": "\u{f74f}", + "house-window": "\u{e3b3}", + "houzz": "\u{f27c}", + "hryvnia-sign": "\u{f6f2}", + "hryvnia": "\u{f6f2}", + "html5": "\u{f13b}", + "hubspot": "\u{f3b2}", + "hundred-points": "\u{e41c}", + "100": "\u{e41c}", + "hurricane": "\u{f751}", + "hydra": "\u{e686}", + "hyphen": "\u{2d}", + "i": "\u{49}", + "ice-cream": "\u{f810}", + "ice-skate": "\u{f7ac}", + "icicles": "\u{f7ad}", + "icons": "\u{f86d}", + "heart-music-camera-bolt": "\u{f86d}", + "i-cursor": "\u{f246}", + "id-badge": "\u{f2c1}", + "id-card": "\u{f2c2}", + "drivers-license": "\u{f2c2}", + "id-card-clip": "\u{f47f}", + "id-card-alt": "\u{f47f}", + "ideal": "\u{e013}", + "igloo": "\u{f7ae}", + "image": "\u{f03e}", + "image-landscape": "\u{e1b5}", + "landscape": "\u{e1b5}", + "image-polaroid": "\u{f8c4}", + "image-polaroid-user": "\u{e1b6}", + "image-portrait": "\u{f3e0}", + "portrait": "\u{f3e0}", + "images": "\u{f302}", + "image-slash": "\u{e1b7}", + "images-user": "\u{e1b9}", + "image-user": "\u{e1b8}", + "imdb": "\u{f2d8}", + "inbox": "\u{f01c}", + "inboxes": "\u{e1bb}", + "inbox-full": "\u{e1ba}", + "inbox-in": "\u{f310}", + "inbox-arrow-down": "\u{f310}", + "inbox-out": "\u{f311}", + "inbox-arrow-up": "\u{f311}", + "indent": "\u{f03c}", + "indian-rupee-sign": "\u{e1bc}", + "indian-rupee": "\u{e1bc}", + "inr": "\u{e1bc}", + "industry": "\u{f275}", + "industry-windows": "\u{f3b3}", + "industry-alt": "\u{f3b3}", + "infinity": "\u{f534}", + "info": "\u{f129}", + "inhaler": "\u{f5f9}", + "input-numeric": "\u{e1bd}", + "input-pipe": "\u{e1be}", + "input-text": "\u{e1bf}", + "instagram": "\u{f16d}", + "instalod": "\u{e081}", + "integral": "\u{f667}", + "intercom": "\u{f7af}", + "internet-explorer": "\u{f26b}", + "interrobang": "\u{e5ba}", + "intersection": "\u{f668}", + "invision": "\u{f7b0}", + "ioxhost": "\u{f208}", + "island-tropical": "\u{f811}", + "island-tree-palm": "\u{f811}", + "italic": "\u{f033}", + "itch-io": "\u{f83a}", + "itunes": "\u{f3b4}", + "itunes-note": "\u{f3b5}", + "j": "\u{4a}", + "jack-o-lantern": "\u{f30e}", + "jar": "\u{e516}", + "jar-wheat": "\u{e517}", + "java": "\u{f4e4}", + "jedi": "\u{f669}", + "jedi-order": "\u{f50e}", + "jenkins": "\u{f3b6}", + "jet-fighter": "\u{f0fb}", + "fighter-jet": "\u{f0fb}", + "jet-fighter-up": "\u{e518}", + "jira": "\u{f7b1}", + "joget": "\u{f3b7}", + "joint": "\u{f595}", + "joomla": "\u{f1aa}", + "joystick": "\u{f8c5}", + "js": "\u{f3b8}", + "jsfiddle": "\u{f1cc}", + "jug": "\u{f8c6}", + "jug-bottle": "\u{e5fb}", + "jug-detergent": "\u{e519}", + "jxl": "\u{e67b}", + "k": "\u{4b}", + "kaaba": "\u{f66b}", + "kaggle": "\u{f5fa}", + "kazoo": "\u{f8c7}", + "kerning": "\u{f86f}", + "key": "\u{f084}", + "keybase": "\u{f4f5}", + "keyboard": "\u{f11c}", + "keyboard-brightness": "\u{e1c0}", + "keyboard-brightness-low": "\u{e1c1}", + "keyboard-down": "\u{e1c2}", + "keyboard-left": "\u{e1c3}", + "keycdn": "\u{f3ba}", + "keynote": "\u{f66c}", + "key-skeleton": "\u{f6f3}", + "key-skeleton-left-right": "\u{e3b4}", + "khanda": "\u{f66d}", + "kickstarter": "\u{f3bb}", + "square-kickstarter": "\u{f3bb}", + "kickstarter-k": "\u{f3bc}", + "kidneys": "\u{f5fb}", + "kip-sign": "\u{e1c4}", + "kitchen-set": "\u{e51a}", + "kite": "\u{f6f4}", + "kit-medical": "\u{f479}", + "first-aid": "\u{f479}", + "kiwi-bird": "\u{f535}", + "kiwi-fruit": "\u{e30c}", + "knife": "\u{f2e4}", + "utensil-knife": "\u{f2e4}", + "knife-kitchen": "\u{f6f5}", + "korvue": "\u{f42f}", + "l": "\u{4c}", + "lacrosse-stick": "\u{e3b5}", + "lacrosse-stick-ball": "\u{e3b6}", + "lambda": "\u{f66e}", + "lamp": "\u{f4ca}", + "lamp-desk": "\u{e014}", + "lamp-floor": "\u{e015}", + "lamp-street": "\u{e1c5}", + "landmark": "\u{f66f}", + "landmark-dome": "\u{f752}", + "landmark-alt": "\u{f752}", + "landmark-flag": "\u{e51c}", + "landmark-magnifying-glass": "\u{e622}", + "land-mine-on": "\u{e51b}", + "language": "\u{f1ab}", + "laptop": "\u{f109}", + "laptop-arrow-down": "\u{e1c6}", + "laptop-binary": "\u{e5e7}", + "laptop-code": "\u{f5fc}", + "laptop-file": "\u{e51d}", + "laptop-medical": "\u{f812}", + "laptop-mobile": "\u{f87a}", + "phone-laptop": "\u{f87a}", + "laptop-slash": "\u{e1c7}", + "laravel": "\u{f3bd}", + "lari-sign": "\u{e1c8}", + "lasso": "\u{f8c8}", + "lasso-sparkles": "\u{e1c9}", + "lastfm": "\u{f202}", + "layer-group": "\u{f5fd}", + "layer-minus": "\u{f5fe}", + "layer-group-minus": "\u{f5fe}", + "layer-plus": "\u{f5ff}", + "layer-group-plus": "\u{f5ff}", + "leaf": "\u{f06c}", + "leaf-heart": "\u{f4cb}", + "leaf-maple": "\u{f6f6}", + "leaf-oak": "\u{f6f7}", + "leafy-green": "\u{e41d}", + "leanpub": "\u{f212}", + "left": "\u{f355}", + "arrow-alt-left": "\u{f355}", + "left-from-bracket": "\u{e66c}", + "left-from-line": "\u{f348}", + "arrow-alt-from-right": "\u{f348}", + "left-long": "\u{f30a}", + "long-arrow-alt-left": "\u{f30a}", + "left-long-to-line": "\u{e41e}", + "left-right": "\u{f337}", + "arrows-alt-h": "\u{f337}", + "left-to-bracket": "\u{e66d}", + "left-to-line": "\u{f34b}", + "arrow-alt-to-left": "\u{f34b}", + "lemon": "\u{f094}", + "less": "\u{f41d}", + "less-than": "\u{3c}", + "less-than-equal": "\u{f537}", + "letterboxd": "\u{e62d}", + "life-ring": "\u{f1cd}", + "lightbulb": "\u{f0eb}", + "lightbulb-cfl": "\u{e5a6}", + "lightbulb-cfl-on": "\u{e5a7}", + "lightbulb-dollar": "\u{f670}", + "lightbulb-exclamation": "\u{f671}", + "lightbulb-exclamation-on": "\u{e1ca}", + "lightbulb-gear": "\u{e5fd}", + "lightbulb-message": "\u{e687}", + "lightbulb-on": "\u{f672}", + "lightbulb-slash": "\u{f673}", + "light-ceiling": "\u{e016}", + "light-emergency": "\u{e41f}", + "light-emergency-on": "\u{e420}", + "lighthouse": "\u{e612}", + "lights-holiday": "\u{f7b2}", + "light-switch": "\u{e017}", + "light-switch-off": "\u{e018}", + "light-switch-on": "\u{e019}", + "line": "\u{f3c0}", + "line-columns": "\u{f870}", + "line-height": "\u{f871}", + "lines-leaning": "\u{e51e}", + "link": "\u{f0c1}", + "chain": "\u{f0c1}", + "linkedin": "\u{f08c}", + "linkedin-in": "\u{f0e1}", + "link-horizontal": "\u{e1cb}", + "chain-horizontal": "\u{e1cb}", + "link-horizontal-slash": "\u{e1cc}", + "chain-horizontal-slash": "\u{e1cc}", + "link-simple": "\u{e1cd}", + "link-simple-slash": "\u{e1ce}", + "link-slash": "\u{f127}", + "chain-broken": "\u{f127}", + "chain-slash": "\u{f127}", + "unlink": "\u{f127}", + "linode": "\u{f2b8}", + "linux": "\u{f17c}", + "lips": "\u{f600}", + "lira-sign": "\u{f195}", + "list": "\u{f03a}", + "list-squares": "\u{f03a}", + "list-check": "\u{f0ae}", + "tasks": "\u{f0ae}", + "list-dropdown": "\u{e1cf}", + "list-music": "\u{f8c9}", + "list-ol": "\u{f0cb}", + "list-1-2": "\u{f0cb}", + "list-numeric": "\u{f0cb}", + "list-radio": "\u{e1d0}", + "list-timeline": "\u{e1d1}", + "list-tree": "\u{e1d2}", + "list-ul": "\u{f0ca}", + "list-dots": "\u{f0ca}", + "litecoin-sign": "\u{e1d3}", + "loader": "\u{e1d4}", + "lobster": "\u{e421}", + "location-arrow": "\u{f124}", + "location-arrow-up": "\u{e63a}", + "location-check": "\u{f606}", + "map-marker-check": "\u{f606}", + "location-crosshairs": "\u{f601}", + "location": "\u{f601}", + "location-crosshairs-slash": "\u{f603}", + "location-slash": "\u{f603}", + "location-dot": "\u{f3c5}", + "map-marker-alt": "\u{f3c5}", + "location-dot-slash": "\u{f605}", + "map-marker-alt-slash": "\u{f605}", + "location-exclamation": "\u{f608}", + "map-marker-exclamation": "\u{f608}", + "location-minus": "\u{f609}", + "map-marker-minus": "\u{f609}", + "location-pen": "\u{f607}", + "map-marker-edit": "\u{f607}", + "location-pin": "\u{f041}", + "map-marker": "\u{f041}", + "location-pin-lock": "\u{e51f}", + "location-pin-slash": "\u{f60c}", + "map-marker-slash": "\u{f60c}", + "location-plus": "\u{f60a}", + "map-marker-plus": "\u{f60a}", + "location-question": "\u{f60b}", + "map-marker-question": "\u{f60b}", + "location-smile": "\u{f60d}", + "map-marker-smile": "\u{f60d}", + "location-xmark": "\u{f60e}", + "map-marker-times": "\u{f60e}", + "map-marker-xmark": "\u{f60e}", + "lock": "\u{f023}", + "lock-a": "\u{e422}", + "lock-hashtag": "\u{e423}", + "lock-keyhole": "\u{f30d}", + "lock-alt": "\u{f30d}", + "lock-keyhole-open": "\u{f3c2}", + "lock-open-alt": "\u{f3c2}", + "lock-open": "\u{f3c1}", + "locust": "\u{e520}", + "lollipop": "\u{e424}", + "lollypop": "\u{e424}", + "loveseat": "\u{f4cc}", + "couch-small": "\u{f4cc}", + "luchador-mask": "\u{f455}", + "luchador": "\u{f455}", + "mask-luchador": "\u{f455}", + "lungs": "\u{f604}", + "lungs-virus": "\u{e067}", + "lyft": "\u{f3c3}", + "m": "\u{4d}", + "mace": "\u{f6f8}", + "magento": "\u{f3c4}", + "magnet": "\u{f076}", + "magnifying-glass": "\u{f002}", + "search": "\u{f002}", + "magnifying-glass-arrow-right": "\u{e521}", + "magnifying-glass-arrows-rotate": "\u{e65e}", + "magnifying-glass-chart": "\u{e522}", + "magnifying-glass-dollar": "\u{f688}", + "search-dollar": "\u{f688}", + "magnifying-glass-location": "\u{f689}", + "search-location": "\u{f689}", + "magnifying-glass-minus": "\u{f010}", + "search-minus": "\u{f010}", + "magnifying-glass-music": "\u{e65f}", + "magnifying-glass-play": "\u{e660}", + "magnifying-glass-plus": "\u{f00e}", + "search-plus": "\u{f00e}", + "magnifying-glass-waveform": "\u{e661}", + "mailbox": "\u{f813}", + "mailbox-flag-up": "\u{e5bb}", + "mailchimp": "\u{f59e}", + "manat-sign": "\u{e1d5}", + "mandalorian": "\u{f50f}", + "mandolin": "\u{f6f9}", + "mango": "\u{e30f}", + "manhole": "\u{e1d6}", + "map": "\u{f279}", + "map-location": "\u{f59f}", + "map-marked": "\u{f59f}", + "map-location-dot": "\u{f5a0}", + "map-marked-alt": "\u{f5a0}", + "map-pin": "\u{f276}", + "markdown": "\u{f60f}", + "marker": "\u{f5a1}", + "mars": "\u{f222}", + "mars-and-venus": "\u{f224}", + "mars-and-venus-burst": "\u{e523}", + "mars-double": "\u{f227}", + "mars-stroke": "\u{f229}", + "mars-stroke-right": "\u{f22b}", + "mars-stroke-h": "\u{f22b}", + "mars-stroke-up": "\u{f22a}", + "mars-stroke-v": "\u{f22a}", + "martini-glass": "\u{f57b}", + "glass-martini-alt": "\u{f57b}", + "martini-glass-citrus": "\u{f561}", + "cocktail": "\u{f561}", + "martini-glass-empty": "\u{f000}", + "glass-martini": "\u{f000}", + "mask": "\u{f6fa}", + "mask-face": "\u{e1d7}", + "mask-snorkel": "\u{e3b7}", + "masks-theater": "\u{f630}", + "theater-masks": "\u{f630}", + "mask-ventilator": "\u{e524}", + "mastodon": "\u{f4f6}", + "mattress-pillow": "\u{e525}", + "maxcdn": "\u{f136}", + "maximize": "\u{f31e}", + "expand-arrows-alt": "\u{f31e}", + "mdb": "\u{f8ca}", + "meat": "\u{f814}", + "medal": "\u{f5a2}", + "medapps": "\u{f3c6}", + "medium": "\u{f23a}", + "medium-m": "\u{f23a}", + "medrt": "\u{f3c8}", + "meetup": "\u{f2e0}", + "megaphone": "\u{f675}", + "megaport": "\u{f5a3}", + "melon": "\u{e310}", + "melon-slice": "\u{e311}", + "memo": "\u{e1d8}", + "memo-circle-check": "\u{e1d9}", + "memo-circle-info": "\u{e49a}", + "memo-pad": "\u{e1da}", + "memory": "\u{f538}", + "mendeley": "\u{f7b3}", + "menorah": "\u{f676}", + "mercury": "\u{f223}", + "merge": "\u{e526}", + "message": "\u{f27a}", + "comment-alt": "\u{f27a}", + "message-arrow-down": "\u{e1db}", + "comment-alt-arrow-down": "\u{e1db}", + "message-arrow-up": "\u{e1dc}", + "comment-alt-arrow-up": "\u{e1dc}", + "message-arrow-up-right": "\u{e1dd}", + "message-bot": "\u{e3b8}", + "message-captions": "\u{e1de}", + "comment-alt-captions": "\u{e1de}", + "message-check": "\u{f4a2}", + "comment-alt-check": "\u{f4a2}", + "message-code": "\u{e1df}", + "message-dollar": "\u{f650}", + "comment-alt-dollar": "\u{f650}", + "message-dots": "\u{f4a3}", + "comment-alt-dots": "\u{f4a3}", + "messaging": "\u{f4a3}", + "message-exclamation": "\u{f4a5}", + "comment-alt-exclamation": "\u{f4a5}", + "message-heart": "\u{e5c9}", + "message-image": "\u{e1e0}", + "comment-alt-image": "\u{e1e0}", + "message-lines": "\u{f4a6}", + "comment-alt-lines": "\u{f4a6}", + "message-medical": "\u{f7f4}", + "comment-alt-medical": "\u{f7f4}", + "message-middle": "\u{e1e1}", + "comment-middle-alt": "\u{e1e1}", + "message-middle-top": "\u{e1e2}", + "comment-middle-top-alt": "\u{e1e2}", + "message-minus": "\u{f4a7}", + "comment-alt-minus": "\u{f4a7}", + "message-music": "\u{f8af}", + "comment-alt-music": "\u{f8af}", + "message-pen": "\u{f4a4}", + "comment-alt-edit": "\u{f4a4}", + "message-edit": "\u{f4a4}", + "message-plus": "\u{f4a8}", + "comment-alt-plus": "\u{f4a8}", + "message-question": "\u{e1e3}", + "message-quote": "\u{e1e4}", + "comment-alt-quote": "\u{e1e4}", + "messages": "\u{f4b6}", + "comments-alt": "\u{f4b6}", + "messages-dollar": "\u{f652}", + "comments-alt-dollar": "\u{f652}", + "message-slash": "\u{f4a9}", + "comment-alt-slash": "\u{f4a9}", + "message-smile": "\u{f4aa}", + "comment-alt-smile": "\u{f4aa}", + "message-sms": "\u{e1e5}", + "messages-question": "\u{e1e7}", + "message-text": "\u{e1e6}", + "comment-alt-text": "\u{e1e6}", + "message-xmark": "\u{f4ab}", + "comment-alt-times": "\u{f4ab}", + "message-times": "\u{f4ab}", + "meta": "\u{e49b}", + "meteor": "\u{f753}", + "meter": "\u{e1e8}", + "meter-bolt": "\u{e1e9}", + "meter-droplet": "\u{e1ea}", + "meter-fire": "\u{e1eb}", + "microblog": "\u{e01a}", + "microchip": "\u{f2db}", + "microchip-ai": "\u{e1ec}", + "microphone": "\u{f130}", + "microphone-lines": "\u{f3c9}", + "microphone-alt": "\u{f3c9}", + "microphone-lines-slash": "\u{f539}", + "microphone-alt-slash": "\u{f539}", + "microphone-slash": "\u{f131}", + "microphone-stand": "\u{f8cb}", + "microscope": "\u{f610}", + "microsoft": "\u{f3ca}", + "microwave": "\u{e01b}", + "mill-sign": "\u{e1ed}", + "minimize": "\u{f78c}", + "compress-arrows-alt": "\u{f78c}", + "mintbit": "\u{e62f}", + "minus": "\u{f068}", + "subtract": "\u{f068}", + "mistletoe": "\u{f7b4}", + "mitten": "\u{f7b5}", + "mix": "\u{f3cb}", + "mixcloud": "\u{f289}", + "mixer": "\u{e056}", + "mizuni": "\u{f3cc}", + "mobile": "\u{f3ce}", + "mobile-android": "\u{f3ce}", + "mobile-phone": "\u{f3ce}", + "mobile-button": "\u{f10b}", + "mobile-notch": "\u{e1ee}", + "mobile-iphone": "\u{e1ee}", + "mobile-retro": "\u{e527}", + "mobile-screen": "\u{f3cf}", + "mobile-android-alt": "\u{f3cf}", + "mobile-screen-button": "\u{f3cd}", + "mobile-alt": "\u{f3cd}", + "mobile-signal": "\u{e1ef}", + "mobile-signal-out": "\u{e1f0}", + "modx": "\u{f285}", + "monero": "\u{f3d0}", + "money-bill": "\u{f0d6}", + "money-bill-1": "\u{f3d1}", + "money-bill-alt": "\u{f3d1}", + "money-bill-1-wave": "\u{f53b}", + "money-bill-wave-alt": "\u{f53b}", + "money-bills": "\u{e1f3}", + "money-bill-simple": "\u{e1f1}", + "money-bill-simple-wave": "\u{e1f2}", + "money-bills-simple": "\u{e1f4}", + "money-bills-alt": "\u{e1f4}", + "money-bill-transfer": "\u{e528}", + "money-bill-trend-up": "\u{e529}", + "money-bill-wave": "\u{f53a}", + "money-bill-wheat": "\u{e52a}", + "money-check": "\u{f53c}", + "money-check-dollar": "\u{f53d}", + "money-check-alt": "\u{f53d}", + "money-check-dollar-pen": "\u{f873}", + "money-check-edit-alt": "\u{f873}", + "money-check-pen": "\u{f872}", + "money-check-edit": "\u{f872}", + "money-from-bracket": "\u{e312}", + "money-simple-from-bracket": "\u{e313}", + "monitor-waveform": "\u{f611}", + "monitor-heart-rate": "\u{f611}", + "monkey": "\u{f6fb}", + "monument": "\u{f5a6}", + "moon": "\u{f186}", + "moon-cloud": "\u{f754}", + "moon-over-sun": "\u{f74a}", + "eclipse-alt": "\u{f74a}", + "moon-stars": "\u{f755}", + "moped": "\u{e3b9}", + "mortar-pestle": "\u{f5a7}", + "mosque": "\u{f678}", + "mosquito": "\u{e52b}", + "mosquito-net": "\u{e52c}", + "motorcycle": "\u{f21c}", + "mound": "\u{e52d}", + "mountain": "\u{f6fc}", + "mountain-city": "\u{e52e}", + "mountains": "\u{f6fd}", + "mountain-sun": "\u{e52f}", + "mouse-field": "\u{e5a8}", + "mp3-player": "\u{f8ce}", + "mug": "\u{f874}", + "mug-hot": "\u{f7b6}", + "mug-marshmallows": "\u{f7b7}", + "mug-saucer": "\u{f0f4}", + "coffee": "\u{f0f4}", + "mug-tea": "\u{f875}", + "mug-tea-saucer": "\u{e1f5}", + "mushroom": "\u{e425}", + "music": "\u{f001}", + "music-magnifying-glass": "\u{e662}", + "music-note": "\u{f8cf}", + "music-alt": "\u{f8cf}", + "music-note-slash": "\u{f8d0}", + "music-alt-slash": "\u{f8d0}", + "music-slash": "\u{f8d1}", + "mustache": "\u{e5bc}", + "n": "\u{4e}", + "naira-sign": "\u{e1f6}", + "napster": "\u{f3d2}", + "narwhal": "\u{f6fe}", + "neos": "\u{f612}", + "nesting-dolls": "\u{e3ba}", + "network-wired": "\u{f6ff}", + "neuter": "\u{f22c}", + "newspaper": "\u{f1ea}", + "nfc": "\u{e1f7}", + "nfc-directional": "\u{e530}", + "nfc-lock": "\u{e1f8}", + "nfc-magnifying-glass": "\u{e1f9}", + "nfc-pen": "\u{e1fa}", + "nfc-signal": "\u{e1fb}", + "nfc-slash": "\u{e1fc}", + "nfc-symbol": "\u{e531}", + "nfc-trash": "\u{e1fd}", + "nimblr": "\u{f5a8}", + "node": "\u{f419}", + "node-js": "\u{f3d3}", + "nose": "\u{e5bd}", + "notdef": "\u{e1fe}", + "note": "\u{e1ff}", + "notebook": "\u{e201}", + "note-medical": "\u{e200}", + "not-equal": "\u{f53e}", + "notes": "\u{e202}", + "notes-medical": "\u{f481}", + "note-sticky": "\u{f249}", + "sticky-note": "\u{f249}", + "npm": "\u{f3d4}", + "ns8": "\u{f3d5}", + "nutritionix": "\u{f3d6}", + "o": "\u{4f}", + "object-exclude": "\u{e49c}", + "object-group": "\u{f247}", + "object-intersect": "\u{e49d}", + "objects-align-bottom": "\u{e3bb}", + "objects-align-center-horizontal": "\u{e3bc}", + "objects-align-center-vertical": "\u{e3bd}", + "objects-align-left": "\u{e3be}", + "objects-align-right": "\u{e3bf}", + "objects-align-top": "\u{e3c0}", + "objects-column": "\u{e3c1}", + "object-subtract": "\u{e49e}", + "object-ungroup": "\u{f248}", + "object-union": "\u{e49f}", + "octagon": "\u{f306}", + "octagon-check": "\u{e426}", + "octagon-divide": "\u{e203}", + "octagon-exclamation": "\u{e204}", + "octagon-minus": "\u{f308}", + "minus-octagon": "\u{f308}", + "octagon-plus": "\u{f301}", + "plus-octagon": "\u{f301}", + "octagon-xmark": "\u{f2f0}", + "times-octagon": "\u{f2f0}", + "xmark-octagon": "\u{f2f0}", + "octopus": "\u{e688}", + "octopus-deploy": "\u{e082}", + "odnoklassniki": "\u{f263}", + "odysee": "\u{e5c6}", + "oil-can": "\u{f613}", + "oil-can-drip": "\u{e205}", + "oil-temperature": "\u{f614}", + "oil-temp": "\u{f614}", + "oil-well": "\u{e532}", + "old-republic": "\u{f510}", + "olive": "\u{e316}", + "olive-branch": "\u{e317}", + "om": "\u{f679}", + "omega": "\u{f67a}", + "onion": "\u{e427}", + "opencart": "\u{f23d}", + "openid": "\u{f19b}", + "opensuse": "\u{e62b}", + "opera": "\u{f26a}", + "optin-monster": "\u{f23c}", + "option": "\u{e318}", + "orcid": "\u{f8d2}", + "ornament": "\u{f7b8}", + "osi": "\u{f41a}", + "otter": "\u{f700}", + "outdent": "\u{f03b}", + "dedent": "\u{f03b}", + "outlet": "\u{e01c}", + "oven": "\u{e01d}", + "overline": "\u{f876}", + "p": "\u{50}", + "padlet": "\u{e4a0}", + "page": "\u{e428}", + "page4": "\u{f3d7}", + "page-caret-down": "\u{e429}", + "file-caret-down": "\u{e429}", + "page-caret-up": "\u{e42a}", + "file-caret-up": "\u{e42a}", + "pagelines": "\u{f18c}", + "pager": "\u{f815}", + "paintbrush": "\u{f1fc}", + "paint-brush": "\u{f1fc}", + "paintbrush-fine": "\u{f5a9}", + "paint-brush-alt": "\u{f5a9}", + "paint-brush-fine": "\u{f5a9}", + "paintbrush-alt": "\u{f5a9}", + "paintbrush-pencil": "\u{e206}", + "paint-roller": "\u{f5aa}", + "palette": "\u{f53f}", + "palfed": "\u{f3d8}", + "pallet": "\u{f482}", + "pallet-box": "\u{e208}", + "pallet-boxes": "\u{f483}", + "palette-boxes": "\u{f483}", + "pallet-alt": "\u{f483}", + "pancakes": "\u{e42d}", + "panel-ews": "\u{e42e}", + "panel-fire": "\u{e42f}", + "pan-food": "\u{e42b}", + "pan-frying": "\u{e42c}", + "panorama": "\u{e209}", + "paperclip": "\u{f0c6}", + "paperclip-vertical": "\u{e3c2}", + "paper-plane": "\u{f1d8}", + "paper-plane-top": "\u{e20a}", + "paper-plane-alt": "\u{e20a}", + "send": "\u{e20a}", + "parachute-box": "\u{f4cd}", + "paragraph": "\u{f1dd}", + "paragraph-left": "\u{f878}", + "paragraph-rtl": "\u{f878}", + "party-bell": "\u{e31a}", + "party-horn": "\u{e31b}", + "passport": "\u{f5ab}", + "paste": "\u{f0ea}", + "file-clipboard": "\u{f0ea}", + "patreon": "\u{f3d9}", + "pause": "\u{f04c}", + "paw": "\u{f1b0}", + "paw-claws": "\u{f702}", + "paw-simple": "\u{f701}", + "paw-alt": "\u{f701}", + "paypal": "\u{f1ed}", + "peace": "\u{f67c}", + "peach": "\u{e20b}", + "peanut": "\u{e430}", + "peanuts": "\u{e431}", + "peapod": "\u{e31c}", + "pear": "\u{e20c}", + "pedestal": "\u{e20d}", + "pegasus": "\u{f703}", + "pen": "\u{f304}", + "pencil": "\u{f303}", + "pencil-alt": "\u{f303}", + "pencil-mechanical": "\u{e5ca}", + "pencil-slash": "\u{e215}", + "pen-circle": "\u{e20e}", + "pen-clip": "\u{f305}", + "pen-alt": "\u{f305}", + "pen-clip-slash": "\u{e20f}", + "pen-alt-slash": "\u{e20f}", + "pen-fancy": "\u{f5ac}", + "pen-fancy-slash": "\u{e210}", + "pen-field": "\u{e211}", + "pen-line": "\u{e212}", + "pen-nib": "\u{f5ad}", + "pen-nib-slash": "\u{e4a1}", + "pen-paintbrush": "\u{f618}", + "pencil-paintbrush": "\u{f618}", + "pen-ruler": "\u{f5ae}", + "pencil-ruler": "\u{f5ae}", + "pen-slash": "\u{e213}", + "pen-swirl": "\u{e214}", + "pen-to-square": "\u{f044}", + "edit": "\u{f044}", + "people": "\u{e216}", + "people-arrows": "\u{e068}", + "people-arrows-left-right": "\u{e068}", + "people-carry-box": "\u{f4ce}", + "people-carry": "\u{f4ce}", + "people-dress": "\u{e217}", + "people-dress-simple": "\u{e218}", + "people-group": "\u{e533}", + "people-line": "\u{e534}", + "people-pants": "\u{e219}", + "people-pants-simple": "\u{e21a}", + "people-pulling": "\u{e535}", + "people-robbery": "\u{e536}", + "people-roof": "\u{e537}", + "people-simple": "\u{e21b}", + "pepper": "\u{e432}", + "pepper-hot": "\u{f816}", + "perbyte": "\u{e083}", + "percent": "\u{25}", + "percentage": "\u{25}", + "period": "\u{2e}", + "periscope": "\u{f3da}", + "person": "\u{f183}", + "male": "\u{f183}", + "person-arrow-down-to-line": "\u{e538}", + "person-arrow-up-from-line": "\u{e539}", + "person-biking": "\u{f84a}", + "biking": "\u{f84a}", + "person-biking-mountain": "\u{f84b}", + "biking-mountain": "\u{f84b}", + "person-booth": "\u{f756}", + "person-breastfeeding": "\u{e53a}", + "person-burst": "\u{e53b}", + "person-cane": "\u{e53c}", + "person-carry-box": "\u{f4cf}", + "person-carry": "\u{f4cf}", + "person-chalkboard": "\u{e53d}", + "person-circle-check": "\u{e53e}", + "person-circle-exclamation": "\u{e53f}", + "person-circle-minus": "\u{e540}", + "person-circle-plus": "\u{e541}", + "person-circle-question": "\u{e542}", + "person-circle-xmark": "\u{e543}", + "person-digging": "\u{f85e}", + "digging": "\u{f85e}", + "person-dolly": "\u{f4d0}", + "person-dolly-empty": "\u{f4d1}", + "person-dots-from-line": "\u{f470}", + "diagnoses": "\u{f470}", + "person-dress": "\u{f182}", + "female": "\u{f182}", + "person-dress-burst": "\u{e544}", + "person-dress-fairy": "\u{e607}", + "person-dress-simple": "\u{e21c}", + "person-drowning": "\u{e545}", + "person-fairy": "\u{e608}", + "person-falling": "\u{e546}", + "person-falling-burst": "\u{e547}", + "person-from-portal": "\u{e023}", + "portal-exit": "\u{e023}", + "person-half-dress": "\u{e548}", + "person-harassing": "\u{e549}", + "person-hiking": "\u{f6ec}", + "hiking": "\u{f6ec}", + "person-military-pointing": "\u{e54a}", + "person-military-rifle": "\u{e54b}", + "person-military-to-person": "\u{e54c}", + "person-pinball": "\u{e21d}", + "person-praying": "\u{f683}", + "pray": "\u{f683}", + "person-pregnant": "\u{e31e}", + "person-rays": "\u{e54d}", + "person-rifle": "\u{e54e}", + "person-running": "\u{f70c}", + "running": "\u{f70c}", + "person-running-fast": "\u{e5ff}", + "person-seat": "\u{e21e}", + "person-seat-reclined": "\u{e21f}", + "person-shelter": "\u{e54f}", + "person-sign": "\u{f757}", + "person-simple": "\u{e220}", + "person-skating": "\u{f7c5}", + "skating": "\u{f7c5}", + "person-skiing": "\u{f7c9}", + "skiing": "\u{f7c9}", + "person-skiing-nordic": "\u{f7ca}", + "skiing-nordic": "\u{f7ca}", + "person-ski-jumping": "\u{f7c7}", + "ski-jump": "\u{f7c7}", + "person-ski-lift": "\u{f7c8}", + "ski-lift": "\u{f7c8}", + "person-sledding": "\u{f7cb}", + "sledding": "\u{f7cb}", + "person-snowboarding": "\u{f7ce}", + "snowboarding": "\u{f7ce}", + "person-snowmobiling": "\u{f7d1}", + "snowmobile": "\u{f7d1}", + "person-swimming": "\u{f5c4}", + "swimmer": "\u{f5c4}", + "person-through-window": "\u{e5a9}", + "person-to-door": "\u{e433}", + "person-to-portal": "\u{e022}", + "portal-enter": "\u{e022}", + "person-walking": "\u{f554}", + "walking": "\u{f554}", + "person-walking-arrow-loop-left": "\u{e551}", + "person-walking-arrow-right": "\u{e552}", + "person-walking-dashed-line-arrow-right": "\u{e553}", + "person-walking-luggage": "\u{e554}", + "person-walking-with-cane": "\u{f29d}", + "blind": "\u{f29d}", + "peseta-sign": "\u{e221}", + "peso-sign": "\u{e222}", + "phabricator": "\u{f3db}", + "phoenix-framework": "\u{f3dc}", + "phoenix-squadron": "\u{f511}", + "phone": "\u{f095}", + "phone-arrow-down-left": "\u{e223}", + "phone-arrow-down": "\u{e223}", + "phone-incoming": "\u{e223}", + "phone-arrow-right": "\u{e5be}", + "phone-arrow-up-right": "\u{e224}", + "phone-arrow-up": "\u{e224}", + "phone-outgoing": "\u{e224}", + "phone-flip": "\u{f879}", + "phone-alt": "\u{f879}", + "phone-hangup": "\u{e225}", + "phone-intercom": "\u{e434}", + "phone-missed": "\u{e226}", + "phone-office": "\u{f67d}", + "phone-plus": "\u{f4d2}", + "phone-rotary": "\u{f8d3}", + "phone-slash": "\u{f3dd}", + "phone-volume": "\u{f2a0}", + "volume-control-phone": "\u{f2a0}", + "phone-xmark": "\u{e227}", + "photo-film": "\u{f87c}", + "photo-video": "\u{f87c}", + "photo-film-music": "\u{e228}", + "php": "\u{f457}", + "pi": "\u{f67e}", + "piano": "\u{f8d4}", + "piano-keyboard": "\u{f8d5}", + "pickaxe": "\u{e5bf}", + "pickleball": "\u{e435}", + "pie": "\u{f705}", + "pied-piper": "\u{f2ae}", + "pied-piper-alt": "\u{f1a8}", + "pied-piper-hat": "\u{f4e5}", + "pied-piper-pp": "\u{f1a7}", + "pig": "\u{f706}", + "piggy-bank": "\u{f4d3}", + "pills": "\u{f484}", + "pinata": "\u{e3c3}", + "pinball": "\u{e229}", + "pineapple": "\u{e31f}", + "pinterest": "\u{f0d2}", + "pinterest-p": "\u{f231}", + "pipe": "\u{7c}", + "pipe-circle-check": "\u{e436}", + "pipe-collar": "\u{e437}", + "pipe-section": "\u{e438}", + "pipe-smoking": "\u{e3c4}", + "pipe-valve": "\u{e439}", + "pix": "\u{e43a}", + "pixiv": "\u{e640}", + "pizza": "\u{f817}", + "pizza-slice": "\u{f818}", + "place-of-worship": "\u{f67f}", + "plane": "\u{f072}", + "plane-arrival": "\u{f5af}", + "plane-circle-check": "\u{e555}", + "plane-circle-exclamation": "\u{e556}", + "plane-circle-xmark": "\u{e557}", + "plane-departure": "\u{f5b0}", + "plane-engines": "\u{f3de}", + "plane-alt": "\u{f3de}", + "plane-lock": "\u{e558}", + "plane-prop": "\u{e22b}", + "plane-slash": "\u{e069}", + "plane-tail": "\u{e22c}", + "planet-moon": "\u{e01f}", + "planet-ringed": "\u{e020}", + "plane-up": "\u{e22d}", + "plane-up-slash": "\u{e22e}", + "plant-wilt": "\u{e5aa}", + "plate-utensils": "\u{e43b}", + "plate-wheat": "\u{e55a}", + "play": "\u{f04b}", + "play-pause": "\u{e22f}", + "playstation": "\u{f3df}", + "plug": "\u{f1e6}", + "plug-circle-bolt": "\u{e55b}", + "plug-circle-check": "\u{e55c}", + "plug-circle-exclamation": "\u{e55d}", + "plug-circle-minus": "\u{e55e}", + "plug-circle-plus": "\u{e55f}", + "plug-circle-xmark": "\u{e560}", + "plus": "\u{2b}", + "add": "\u{2b}", + "plus-large": "\u{e59e}", + "plus-minus": "\u{e43c}", + "podcast": "\u{f2ce}", + "podium": "\u{f680}", + "podium-star": "\u{f758}", + "police-box": "\u{e021}", + "poll-people": "\u{f759}", + "pompebled": "\u{e43d}", + "poo": "\u{f2fe}", + "pool-8-ball": "\u{e3c5}", + "poop": "\u{f619}", + "poo-storm": "\u{f75a}", + "poo-bolt": "\u{f75a}", + "popcorn": "\u{f819}", + "popsicle": "\u{e43e}", + "potato": "\u{e440}", + "pot-food": "\u{e43f}", + "power-off": "\u{f011}", + "prescription": "\u{f5b1}", + "prescription-bottle": "\u{f485}", + "prescription-bottle-medical": "\u{f486}", + "prescription-bottle-alt": "\u{f486}", + "prescription-bottle-pill": "\u{e5c0}", + "presentation-screen": "\u{f685}", + "presentation": "\u{f685}", + "pretzel": "\u{e441}", + "print": "\u{f02f}", + "print-magnifying-glass": "\u{f81a}", + "print-search": "\u{f81a}", + "print-slash": "\u{f686}", + "product-hunt": "\u{f288}", + "projector": "\u{f8d6}", + "pump": "\u{e442}", + "pumpkin": "\u{f707}", + "pump-medical": "\u{e06a}", + "pump-soap": "\u{e06b}", + "pushed": "\u{f3e1}", + "puzzle": "\u{e443}", + "puzzle-piece": "\u{f12e}", + "puzzle-piece-simple": "\u{e231}", + "puzzle-piece-alt": "\u{e231}", + "python": "\u{f3e2}", + "q": "\u{51}", + "qq": "\u{f1d6}", + "qrcode": "\u{f029}", + "question": "\u{3f}", + "quinscape": "\u{f459}", + "quora": "\u{f2c4}", + "quote-left": "\u{f10d}", + "quote-left-alt": "\u{f10d}", + "quote-right": "\u{f10e}", + "quote-right-alt": "\u{f10e}", + "quotes": "\u{e234}", + "r": "\u{52}", + "rabbit": "\u{f708}", + "rabbit-running": "\u{f709}", + "rabbit-fast": "\u{f709}", + "raccoon": "\u{e613}", + "racquet": "\u{f45a}", + "radar": "\u{e024}", + "radiation": "\u{f7b9}", + "radio": "\u{f8d7}", + "radio-tuner": "\u{f8d8}", + "radio-alt": "\u{f8d8}", + "rainbow": "\u{f75b}", + "raindrops": "\u{f75c}", + "ram": "\u{f70a}", + "ramp-loading": "\u{f4d4}", + "ranking-star": "\u{e561}", + "raspberry-pi": "\u{f7bb}", + "ravelry": "\u{f2d9}", + "raygun": "\u{e025}", + "react": "\u{f41b}", + "reacteurope": "\u{f75d}", + "readme": "\u{f4d5}", + "rebel": "\u{f1d0}", + "receipt": "\u{f543}", + "record-vinyl": "\u{f8d9}", + "rectangle": "\u{f2fa}", + "rectangle-landscape": "\u{f2fa}", + "rectangle-ad": "\u{f641}", + "ad": "\u{f641}", + "rectangle-barcode": "\u{f463}", + "barcode-alt": "\u{f463}", + "rectangle-code": "\u{e322}", + "rectangle-history": "\u{e4a2}", + "rectangle-history-circle-plus": "\u{e4a3}", + "rectangle-history-circle-user": "\u{e4a4}", + "rectangle-list": "\u{f022}", + "list-alt": "\u{f022}", + "rectangle-pro": "\u{e235}", + "pro": "\u{e235}", + "rectangles-mixed": "\u{e323}", + "rectangle-terminal": "\u{e236}", + "rectangle-vertical": "\u{f2fb}", + "rectangle-portrait": "\u{f2fb}", + "rectangle-vertical-history": "\u{e237}", + "rectangle-wide": "\u{f2fc}", + "rectangle-xmark": "\u{f410}", + "rectangle-times": "\u{f410}", + "times-rectangle": "\u{f410}", + "window-close": "\u{f410}", + "recycle": "\u{f1b8}", + "reddit": "\u{f1a1}", + "reddit-alien": "\u{f281}", + "redhat": "\u{f7bc}", + "red-river": "\u{f3e3}", + "reel": "\u{e238}", + "reflect-both": "\u{e66f}", + "reflect-horizontal": "\u{e664}", + "reflect-vertical": "\u{e665}", + "refrigerator": "\u{e026}", + "registered": "\u{f25d}", + "renren": "\u{f18b}", + "repeat": "\u{f363}", + "repeat-1": "\u{f365}", + "reply": "\u{f3e5}", + "mail-reply": "\u{f3e5}", + "reply-all": "\u{f122}", + "mail-reply-all": "\u{f122}", + "reply-clock": "\u{e239}", + "reply-time": "\u{e239}", + "replyd": "\u{f3e6}", + "republican": "\u{f75e}", + "researchgate": "\u{f4f8}", + "resolving": "\u{f3e7}", + "restroom": "\u{f7bd}", + "restroom-simple": "\u{e23a}", + "retweet": "\u{f079}", + "rev": "\u{f5b2}", + "rhombus": "\u{e23b}", + "ribbon": "\u{f4d6}", + "right": "\u{f356}", + "arrow-alt-right": "\u{f356}", + "right-from-bracket": "\u{f2f5}", + "sign-out-alt": "\u{f2f5}", + "right-from-line": "\u{f347}", + "arrow-alt-from-left": "\u{f347}", + "right-left": "\u{f362}", + "exchange-alt": "\u{f362}", + "right-left-large": "\u{e5e1}", + "right-long": "\u{f30b}", + "long-arrow-alt-right": "\u{f30b}", + "right-long-to-line": "\u{e444}", + "right-to-bracket": "\u{f2f6}", + "sign-in-alt": "\u{f2f6}", + "right-to-line": "\u{f34c}", + "arrow-alt-to-right": "\u{f34c}", + "ring": "\u{f70b}", + "ring-diamond": "\u{e5ab}", + "rings-wedding": "\u{f81b}", + "road": "\u{f018}", + "road-barrier": "\u{e562}", + "road-bridge": "\u{e563}", + "road-circle-check": "\u{e564}", + "road-circle-exclamation": "\u{e565}", + "road-circle-xmark": "\u{e566}", + "road-lock": "\u{e567}", + "road-spikes": "\u{e568}", + "robot": "\u{f544}", + "robot-astromech": "\u{e2d2}", + "rocket": "\u{f135}", + "rocketchat": "\u{f3e8}", + "rocket-launch": "\u{e027}", + "rockrms": "\u{f3e9}", + "roller-coaster": "\u{e324}", + "rotate": "\u{f2f1}", + "sync-alt": "\u{f2f1}", + "rotate-exclamation": "\u{e23c}", + "rotate-left": "\u{f2ea}", + "rotate-back": "\u{f2ea}", + "rotate-backward": "\u{f2ea}", + "undo-alt": "\u{f2ea}", + "rotate-reverse": "\u{e631}", + "rotate-right": "\u{f2f9}", + "redo-alt": "\u{f2f9}", + "rotate-forward": "\u{f2f9}", + "route": "\u{f4d7}", + "route-highway": "\u{f61a}", + "route-interstate": "\u{f61b}", + "router": "\u{f8da}", + "r-project": "\u{f4f7}", + "rss": "\u{f09e}", + "feed": "\u{f09e}", + "ruble-sign": "\u{f158}", + "rouble": "\u{f158}", + "rub": "\u{f158}", + "ruble": "\u{f158}", + "rug": "\u{e569}", + "rugby-ball": "\u{e3c6}", + "ruler": "\u{f545}", + "ruler-combined": "\u{f546}", + "ruler-horizontal": "\u{f547}", + "ruler-triangle": "\u{f61c}", + "ruler-vertical": "\u{f548}", + "rupee-sign": "\u{f156}", + "rupee": "\u{f156}", + "rupiah-sign": "\u{e23d}", + "rust": "\u{e07a}", + "rv": "\u{f7be}", + "s": "\u{53}", + "sack": "\u{f81c}", + "sack-dollar": "\u{f81d}", + "sack-xmark": "\u{e56a}", + "safari": "\u{f267}", + "sailboat": "\u{e445}", + "salad": "\u{f81e}", + "bowl-salad": "\u{f81e}", + "salesforce": "\u{f83b}", + "salt-shaker": "\u{e446}", + "sandwich": "\u{f81f}", + "sass": "\u{f41e}", + "satellite": "\u{f7bf}", + "satellite-dish": "\u{f7c0}", + "sausage": "\u{f820}", + "saxophone": "\u{f8dc}", + "saxophone-fire": "\u{f8db}", + "sax-hot": "\u{f8db}", + "scale-balanced": "\u{f24e}", + "balance-scale": "\u{f24e}", + "scale-unbalanced": "\u{f515}", + "balance-scale-left": "\u{f515}", + "scale-unbalanced-flip": "\u{f516}", + "balance-scale-right": "\u{f516}", + "scalpel": "\u{f61d}", + "scalpel-line-dashed": "\u{f61e}", + "scalpel-path": "\u{f61e}", + "scanner-gun": "\u{f488}", + "scanner": "\u{f488}", + "scanner-image": "\u{f8f3}", + "scanner-keyboard": "\u{f489}", + "scanner-touchscreen": "\u{f48a}", + "scarecrow": "\u{f70d}", + "scarf": "\u{f7c1}", + "schlix": "\u{f3ea}", + "school": "\u{f549}", + "school-circle-check": "\u{e56b}", + "school-circle-exclamation": "\u{e56c}", + "school-circle-xmark": "\u{e56d}", + "school-flag": "\u{e56e}", + "school-lock": "\u{e56f}", + "scissors": "\u{f0c4}", + "cut": "\u{f0c4}", + "screencast": "\u{e23e}", + "screenpal": "\u{e570}", + "screen-users": "\u{f63d}", + "users-class": "\u{f63d}", + "screwdriver": "\u{f54a}", + "screwdriver-wrench": "\u{f7d9}", + "tools": "\u{f7d9}", + "scribble": "\u{e23f}", + "scribd": "\u{f28a}", + "scroll": "\u{f70e}", + "scroll-old": "\u{f70f}", + "scroll-torah": "\u{f6a0}", + "torah": "\u{f6a0}", + "scrubber": "\u{f2f8}", + "scythe": "\u{f710}", + "sd-card": "\u{f7c2}", + "sd-cards": "\u{e240}", + "seal": "\u{e241}", + "seal-exclamation": "\u{e242}", + "seal-question": "\u{e243}", + "searchengin": "\u{f3eb}", + "seat-airline": "\u{e244}", + "section": "\u{e447}", + "seedling": "\u{f4d8}", + "sprout": "\u{f4d8}", + "sellcast": "\u{f2da}", + "sellsy": "\u{f213}", + "semicolon": "\u{3b}", + "send-back": "\u{f87e}", + "send-backward": "\u{f87f}", + "sensor": "\u{e028}", + "sensor-cloud": "\u{e02c}", + "sensor-smoke": "\u{e02c}", + "sensor-fire": "\u{e02a}", + "sensor-on": "\u{e02b}", + "sensor-triangle-exclamation": "\u{e029}", + "sensor-alert": "\u{e029}", + "server": "\u{f233}", + "servicestack": "\u{f3ec}", + "shapes": "\u{f61f}", + "triangle-circle-square": "\u{f61f}", + "share": "\u{f064}", + "mail-forward": "\u{f064}", + "share-all": "\u{f367}", + "share-from-square": "\u{f14d}", + "share-square": "\u{f14d}", + "share-nodes": "\u{f1e0}", + "share-alt": "\u{f1e0}", + "sheep": "\u{f711}", + "sheet-plastic": "\u{e571}", + "shekel-sign": "\u{f20b}", + "ils": "\u{f20b}", + "shekel": "\u{f20b}", + "sheqel": "\u{f20b}", + "sheqel-sign": "\u{f20b}", + "shelves": "\u{f480}", + "inventory": "\u{f480}", + "shelves-empty": "\u{e246}", + "shield": "\u{f132}", + "shield-blank": "\u{f132}", + "shield-cat": "\u{e572}", + "shield-check": "\u{f2f7}", + "shield-cross": "\u{f712}", + "shield-dog": "\u{e573}", + "shield-exclamation": "\u{e247}", + "shield-halved": "\u{f3ed}", + "shield-alt": "\u{f3ed}", + "shield-heart": "\u{e574}", + "shield-keyhole": "\u{e248}", + "shield-minus": "\u{e249}", + "shield-plus": "\u{e24a}", + "shield-quartered": "\u{e575}", + "shield-slash": "\u{e24b}", + "shield-virus": "\u{e06c}", + "shield-xmark": "\u{e24c}", + "shield-times": "\u{e24c}", + "ship": "\u{f21a}", + "shirt": "\u{f553}", + "t-shirt": "\u{f553}", + "tshirt": "\u{f553}", + "shirt-long-sleeve": "\u{e3c7}", + "shirt-running": "\u{e3c8}", + "shirtsinbulk": "\u{f214}", + "shirt-tank-top": "\u{e3c9}", + "shish-kebab": "\u{f821}", + "shoelace": "\u{e60c}", + "shoe-prints": "\u{f54b}", + "shop": "\u{f54f}", + "store-alt": "\u{f54f}", + "shopify": "\u{e057}", + "shop-lock": "\u{e4a5}", + "shop-slash": "\u{e070}", + "store-alt-slash": "\u{e070}", + "shopware": "\u{f5b5}", + "shovel": "\u{f713}", + "shovel-snow": "\u{f7c3}", + "shower": "\u{f2cc}", + "shower-down": "\u{e24d}", + "shower-alt": "\u{e24d}", + "shredder": "\u{f68a}", + "shrimp": "\u{e448}", + "shuffle": "\u{f074}", + "random": "\u{f074}", + "shutters": "\u{e449}", + "shuttlecock": "\u{f45b}", + "shuttle-space": "\u{f197}", + "space-shuttle": "\u{f197}", + "sickle": "\u{f822}", + "sidebar": "\u{e24e}", + "sidebar-flip": "\u{e24f}", + "sigma": "\u{f68b}", + "signal": "\u{f012}", + "signal-5": "\u{f012}", + "signal-perfect": "\u{f012}", + "signal-bars": "\u{f690}", + "signal-alt": "\u{f690}", + "signal-alt-4": "\u{f690}", + "signal-bars-strong": "\u{f690}", + "signal-bars-fair": "\u{f692}", + "signal-alt-2": "\u{f692}", + "signal-bars-good": "\u{f693}", + "signal-alt-3": "\u{f693}", + "signal-bars-slash": "\u{f694}", + "signal-alt-slash": "\u{f694}", + "signal-bars-weak": "\u{f691}", + "signal-alt-1": "\u{f691}", + "signal-fair": "\u{f68d}", + "signal-2": "\u{f68d}", + "signal-good": "\u{f68e}", + "signal-3": "\u{f68e}", + "signal-messenger": "\u{e663}", + "signal-slash": "\u{f695}", + "signal-stream": "\u{f8dd}", + "signal-stream-slash": "\u{e250}", + "signal-strong": "\u{f68f}", + "signal-4": "\u{f68f}", + "signal-weak": "\u{f68c}", + "signal-1": "\u{f68c}", + "signature": "\u{f5b7}", + "signature-lock": "\u{e3ca}", + "signature-slash": "\u{e3cb}", + "sign-hanging": "\u{f4d9}", + "sign": "\u{f4d9}", + "sign-post": "\u{e624}", + "sign-posts": "\u{e625}", + "sign-posts-wrench": "\u{e626}", + "signs-post": "\u{f277}", + "map-signs": "\u{f277}", + "sim-card": "\u{f7c4}", + "sim-cards": "\u{e251}", + "simplybuilt": "\u{f215}", + "sink": "\u{e06d}", + "siren": "\u{e02d}", + "siren-on": "\u{e02e}", + "sistrix": "\u{f3ee}", + "sitemap": "\u{f0e8}", + "sith": "\u{f512}", + "sitrox": "\u{e44a}", + "skeleton": "\u{f620}", + "skeleton-ribs": "\u{e5cb}", + "sketch": "\u{f7c6}", + "ski-boot": "\u{e3cc}", + "ski-boot-ski": "\u{e3cd}", + "skull": "\u{f54c}", + "skull-cow": "\u{f8de}", + "skull-crossbones": "\u{f714}", + "skyatlas": "\u{f216}", + "skype": "\u{f17e}", + "slack": "\u{f198}", + "slack-hash": "\u{f198}", + "slash": "\u{f715}", + "slash-back": "\u{5c}", + "slash-forward": "\u{2f}", + "sleigh": "\u{f7cc}", + "slider": "\u{e252}", + "sliders": "\u{f1de}", + "sliders-h": "\u{f1de}", + "sliders-simple": "\u{e253}", + "sliders-up": "\u{f3f1}", + "sliders-v": "\u{f3f1}", + "slideshare": "\u{f1e7}", + "slot-machine": "\u{e3ce}", + "smog": "\u{f75f}", + "smoke": "\u{f760}", + "smoking": "\u{f48d}", + "snake": "\u{f716}", + "snapchat": "\u{f2ab}", + "snapchat-ghost": "\u{f2ab}", + "snooze": "\u{f880}", + "zzz": "\u{f880}", + "snow-blowing": "\u{f761}", + "snowflake": "\u{f2dc}", + "snowflake-droplets": "\u{e5c1}", + "snowflakes": "\u{f7cf}", + "snowman": "\u{f7d0}", + "snowman-head": "\u{f79b}", + "frosty-head": "\u{f79b}", + "snowplow": "\u{f7d2}", + "soap": "\u{e06e}", + "socks": "\u{f696}", + "soft-serve": "\u{e400}", + "creemee": "\u{e400}", + "solar-panel": "\u{f5ba}", + "solar-system": "\u{e02f}", + "sort": "\u{f0dc}", + "unsorted": "\u{f0dc}", + "sort-down": "\u{f0dd}", + "sort-desc": "\u{f0dd}", + "sort-up": "\u{f0de}", + "sort-asc": "\u{f0de}", + "soundcloud": "\u{f1be}", + "sourcetree": "\u{f7d3}", + "spa": "\u{f5bb}", + "space-awesome": "\u{e5ac}", + "space-station-moon": "\u{e033}", + "space-station-moon-construction": "\u{e034}", + "space-station-moon-alt": "\u{e034}", + "spade": "\u{f2f4}", + "spaghetti-monster-flying": "\u{f67b}", + "pastafarianism": "\u{f67b}", + "sparkle": "\u{e5d6}", + "sparkles": "\u{f890}", + "speakap": "\u{f3f3}", + "speaker": "\u{f8df}", + "speaker-deck": "\u{f83c}", + "speakers": "\u{f8e0}", + "spell-check": "\u{f891}", + "spider": "\u{f717}", + "spider-black-widow": "\u{f718}", + "spider-web": "\u{f719}", + "spinner": "\u{f110}", + "spinner-scale": "\u{e62a}", + "spinner-third": "\u{f3f4}", + "split": "\u{e254}", + "splotch": "\u{f5bc}", + "spoon": "\u{f2e5}", + "utensil-spoon": "\u{f2e5}", + "sportsball": "\u{e44b}", + "spotify": "\u{f1bc}", + "spray-can": "\u{f5bd}", + "spray-can-sparkles": "\u{f5d0}", + "air-freshener": "\u{f5d0}", + "sprinkler": "\u{e035}", + "sprinkler-ceiling": "\u{e44c}", + "square": "\u{f0c8}", + "square-0": "\u{e255}", + "square-1": "\u{e256}", + "square-2": "\u{e257}", + "square-3": "\u{e258}", + "square-4": "\u{e259}", + "square-5": "\u{e25a}", + "square-6": "\u{e25b}", + "square-7": "\u{e25c}", + "square-8": "\u{e25d}", + "square-9": "\u{e25e}", + "square-a": "\u{e25f}", + "square-a-lock": "\u{e44d}", + "square-ampersand": "\u{e260}", + "square-arrow-down": "\u{f339}", + "arrow-square-down": "\u{f339}", + "square-arrow-down-left": "\u{e261}", + "square-arrow-down-right": "\u{e262}", + "square-arrow-left": "\u{f33a}", + "arrow-square-left": "\u{f33a}", + "square-arrow-right": "\u{f33b}", + "arrow-square-right": "\u{f33b}", + "square-arrow-up": "\u{f33c}", + "arrow-square-up": "\u{f33c}", + "square-arrow-up-left": "\u{e263}", + "square-arrow-up-right": "\u{f14c}", + "external-link-square": "\u{f14c}", + "square-b": "\u{e264}", + "square-behance": "\u{f1b5}", + "behance-square": "\u{f1b5}", + "square-bolt": "\u{e265}", + "square-c": "\u{e266}", + "square-caret-down": "\u{f150}", + "caret-square-down": "\u{f150}", + "square-caret-left": "\u{f191}", + "caret-square-left": "\u{f191}", + "square-caret-right": "\u{f152}", + "caret-square-right": "\u{f152}", + "square-caret-up": "\u{f151}", + "caret-square-up": "\u{f151}", + "square-check": "\u{f14a}", + "check-square": "\u{f14a}", + "square-chevron-down": "\u{f329}", + "chevron-square-down": "\u{f329}", + "square-chevron-left": "\u{f32a}", + "chevron-square-left": "\u{f32a}", + "square-chevron-right": "\u{f32b}", + "chevron-square-right": "\u{f32b}", + "square-chevron-up": "\u{f32c}", + "chevron-square-up": "\u{f32c}", + "square-code": "\u{e267}", + "square-d": "\u{e268}", + "square-dashed": "\u{e269}", + "square-dashed-circle-plus": "\u{e5c2}", + "square-divide": "\u{e26a}", + "square-dollar": "\u{f2e9}", + "dollar-square": "\u{f2e9}", + "usd-square": "\u{f2e9}", + "square-down": "\u{f350}", + "arrow-alt-square-down": "\u{f350}", + "square-down-left": "\u{e26b}", + "square-down-right": "\u{e26c}", + "square-dribbble": "\u{f397}", + "dribbble-square": "\u{f397}", + "square-e": "\u{e26d}", + "square-ellipsis": "\u{e26e}", + "square-ellipsis-vertical": "\u{e26f}", + "square-envelope": "\u{f199}", + "envelope-square": "\u{f199}", + "square-exclamation": "\u{f321}", + "exclamation-square": "\u{f321}", + "square-f": "\u{e270}", + "square-facebook": "\u{f082}", + "facebook-square": "\u{f082}", + "square-font-awesome": "\u{e5ad}", + "square-font-awesome-stroke": "\u{f35c}", + "font-awesome-alt": "\u{f35c}", + "square-fragile": "\u{f49b}", + "box-fragile": "\u{f49b}", + "square-wine-glass-crack": "\u{f49b}", + "square-full": "\u{f45c}", + "square-g": "\u{e271}", + "square-git": "\u{f1d2}", + "git-square": "\u{f1d2}", + "square-github": "\u{f092}", + "github-square": "\u{f092}", + "square-gitlab": "\u{e5ae}", + "gitlab-square": "\u{e5ae}", + "square-google-plus": "\u{f0d4}", + "google-plus-square": "\u{f0d4}", + "square-h": "\u{f0fd}", + "h-square": "\u{f0fd}", + "square-hacker-news": "\u{f3af}", + "hacker-news-square": "\u{f3af}", + "square-heart": "\u{f4c8}", + "heart-square": "\u{f4c8}", + "square-i": "\u{e272}", + "square-info": "\u{f30f}", + "info-square": "\u{f30f}", + "square-instagram": "\u{e055}", + "instagram-square": "\u{e055}", + "square-j": "\u{e273}", + "square-js": "\u{f3b9}", + "js-square": "\u{f3b9}", + "square-k": "\u{e274}", + "square-kanban": "\u{e488}", + "square-l": "\u{e275}", + "square-lastfm": "\u{f203}", + "lastfm-square": "\u{f203}", + "square-left": "\u{f351}", + "arrow-alt-square-left": "\u{f351}", + "square-letterboxd": "\u{e62e}", + "square-list": "\u{e489}", + "square-m": "\u{e276}", + "square-minus": "\u{f146}", + "minus-square": "\u{f146}", + "square-n": "\u{e277}", + "square-nfi": "\u{e576}", + "square-o": "\u{e278}", + "square-odnoklassniki": "\u{f264}", + "odnoklassniki-square": "\u{f264}", + "square-p": "\u{e279}", + "square-parking": "\u{f540}", + "parking": "\u{f540}", + "square-parking-slash": "\u{f617}", + "parking-slash": "\u{f617}", + "square-pen": "\u{f14b}", + "pen-square": "\u{f14b}", + "pencil-square": "\u{f14b}", + "square-person-confined": "\u{e577}", + "square-phone": "\u{f098}", + "phone-square": "\u{f098}", + "square-phone-flip": "\u{f87b}", + "phone-square-alt": "\u{f87b}", + "square-phone-hangup": "\u{e27a}", + "phone-square-down": "\u{e27a}", + "square-pied-piper": "\u{e01e}", + "pied-piper-square": "\u{e01e}", + "square-pinterest": "\u{f0d3}", + "pinterest-square": "\u{f0d3}", + "square-plus": "\u{f0fe}", + "plus-square": "\u{f0fe}", + "square-poll-horizontal": "\u{f682}", + "poll-h": "\u{f682}", + "square-poll-vertical": "\u{f681}", + "poll": "\u{f681}", + "square-q": "\u{e27b}", + "square-quarters": "\u{e44e}", + "square-question": "\u{f2fd}", + "question-square": "\u{f2fd}", + "square-quote": "\u{e329}", + "square-r": "\u{e27c}", + "square-reddit": "\u{f1a2}", + "reddit-square": "\u{f1a2}", + "square-right": "\u{f352}", + "arrow-alt-square-right": "\u{f352}", + "square-ring": "\u{e44f}", + "square-root": "\u{f697}", + "square-root-variable": "\u{f698}", + "square-root-alt": "\u{f698}", + "square-rss": "\u{f143}", + "rss-square": "\u{f143}", + "square-s": "\u{e27d}", + "square-share-nodes": "\u{f1e1}", + "share-alt-square": "\u{f1e1}", + "square-sliders": "\u{f3f0}", + "sliders-h-square": "\u{f3f0}", + "square-sliders-vertical": "\u{f3f2}", + "sliders-v-square": "\u{f3f2}", + "square-small": "\u{e27e}", + "square-snapchat": "\u{f2ad}", + "snapchat-square": "\u{f2ad}", + "squarespace": "\u{f5be}", + "square-star": "\u{e27f}", + "square-steam": "\u{f1b7}", + "steam-square": "\u{f1b7}", + "square-t": "\u{e280}", + "square-terminal": "\u{e32a}", + "square-this-way-up": "\u{f49f}", + "box-up": "\u{f49f}", + "square-threads": "\u{e619}", + "square-tumblr": "\u{f174}", + "tumblr-square": "\u{f174}", + "square-twitter": "\u{f081}", + "twitter-square": "\u{f081}", + "square-u": "\u{e281}", + "square-up": "\u{f353}", + "arrow-alt-square-up": "\u{f353}", + "square-up-left": "\u{e282}", + "square-up-right": "\u{f360}", + "external-link-square-alt": "\u{f360}", + "square-upwork": "\u{e67c}", + "square-user": "\u{e283}", + "square-v": "\u{e284}", + "square-viadeo": "\u{f2aa}", + "viadeo-square": "\u{f2aa}", + "square-vimeo": "\u{f194}", + "vimeo-square": "\u{f194}", + "square-virus": "\u{e578}", + "square-w": "\u{e285}", + "square-web-awesome": "\u{e683}", + "square-web-awesome-stroke": "\u{e684}", + "square-whatsapp": "\u{f40c}", + "whatsapp-square": "\u{f40c}", + "square-x": "\u{e286}", + "square-xing": "\u{f169}", + "xing-square": "\u{f169}", + "square-xmark": "\u{f2d3}", + "times-square": "\u{f2d3}", + "xmark-square": "\u{f2d3}", + "square-x-twitter": "\u{e61a}", + "square-y": "\u{e287}", + "square-youtube": "\u{f431}", + "youtube-square": "\u{f431}", + "square-z": "\u{e288}", + "squid": "\u{e450}", + "squirrel": "\u{f71a}", + "stack-exchange": "\u{f18d}", + "stack-overflow": "\u{f16c}", + "stackpath": "\u{f842}", + "staff": "\u{f71b}", + "staff-snake": "\u{e579}", + "rod-asclepius": "\u{e579}", + "rod-snake": "\u{e579}", + "staff-aesculapius": "\u{e579}", + "stairs": "\u{e289}", + "stamp": "\u{f5bf}", + "standard-definition": "\u{e28a}", + "rectangle-sd": "\u{e28a}", + "stapler": "\u{e5af}", + "star": "\u{f005}", + "star-and-crescent": "\u{f699}", + "star-christmas": "\u{f7d4}", + "star-exclamation": "\u{f2f3}", + "starfighter": "\u{e037}", + "starfighter-twin-ion-engine": "\u{e038}", + "starfighter-alt": "\u{e038}", + "starfighter-twin-ion-engine-advanced": "\u{e28e}", + "starfighter-alt-advanced": "\u{e28e}", + "star-half": "\u{f089}", + "star-half-stroke": "\u{f5c0}", + "star-half-alt": "\u{f5c0}", + "star-of-david": "\u{f69a}", + "star-of-life": "\u{f621}", + "stars": "\u{f762}", + "star-sharp": "\u{e28b}", + "star-sharp-half": "\u{e28c}", + "star-sharp-half-stroke": "\u{e28d}", + "star-sharp-half-alt": "\u{e28d}", + "starship": "\u{e039}", + "starship-freighter": "\u{e03a}", + "star-shooting": "\u{e036}", + "staylinked": "\u{f3f5}", + "steak": "\u{f824}", + "steam": "\u{f1b6}", + "steam-symbol": "\u{f3f6}", + "steering-wheel": "\u{f622}", + "sterling-sign": "\u{f154}", + "gbp": "\u{f154}", + "pound-sign": "\u{f154}", + "stethoscope": "\u{f0f1}", + "sticker-mule": "\u{f3f7}", + "stocking": "\u{f7d5}", + "stomach": "\u{f623}", + "stop": "\u{f04d}", + "stopwatch": "\u{f2f2}", + "stopwatch-20": "\u{e06f}", + "store": "\u{f54e}", + "store-lock": "\u{e4a6}", + "store-slash": "\u{e071}", + "strava": "\u{f428}", + "strawberry": "\u{e32b}", + "street-view": "\u{f21d}", + "stretcher": "\u{f825}", + "strikethrough": "\u{f0cc}", + "stripe": "\u{f429}", + "stripe-s": "\u{f42a}", + "stroopwafel": "\u{f551}", + "stubber": "\u{e5c7}", + "studiovinari": "\u{f3f8}", + "stumbleupon": "\u{f1a4}", + "stumbleupon-circle": "\u{f1a3}", + "subscript": "\u{f12c}", + "subtitles": "\u{e60f}", + "subtitles-slash": "\u{e610}", + "suitcase": "\u{f0f2}", + "suitcase-medical": "\u{f0fa}", + "medkit": "\u{f0fa}", + "suitcase-rolling": "\u{f5c1}", + "sun": "\u{f185}", + "sun-bright": "\u{e28f}", + "sun-alt": "\u{e28f}", + "sun-cloud": "\u{f763}", + "sun-dust": "\u{f764}", + "sunglasses": "\u{f892}", + "sun-haze": "\u{f765}", + "sun-plant-wilt": "\u{e57a}", + "sunrise": "\u{f766}", + "sunset": "\u{f767}", + "superpowers": "\u{f2dd}", + "superscript": "\u{f12b}", + "supple": "\u{f3f9}", + "suse": "\u{f7d6}", + "sushi": "\u{e48a}", + "nigiri": "\u{e48a}", + "sushi-roll": "\u{e48b}", + "maki-roll": "\u{e48b}", + "makizushi": "\u{e48b}", + "swap": "\u{e609}", + "swap-arrows": "\u{e60a}", + "swatchbook": "\u{f5c3}", + "swift": "\u{f8e1}", + "sword": "\u{f71c}", + "sword-laser": "\u{e03b}", + "sword-laser-alt": "\u{e03c}", + "swords": "\u{f71d}", + "swords-laser": "\u{e03d}", + "symbols": "\u{f86e}", + "icons-alt": "\u{f86e}", + "symfony": "\u{f83d}", + "synagogue": "\u{f69b}", + "syringe": "\u{f48e}", + "t": "\u{54}", + "table": "\u{f0ce}", + "table-cells": "\u{f00a}", + "th": "\u{f00a}", + "table-cells-column-lock": "\u{e678}", + "table-cells-column-unlock": "\u{e690}", + "table-cells-large": "\u{f009}", + "th-large": "\u{f009}", + "table-cells-lock": "\u{e679}", + "table-cells-row-lock": "\u{e67a}", + "table-cells-row-unlock": "\u{e691}", + "table-cells-unlock": "\u{e692}", + "table-columns": "\u{f0db}", + "columns": "\u{f0db}", + "table-layout": "\u{e290}", + "table-list": "\u{f00b}", + "th-list": "\u{f00b}", + "table-picnic": "\u{e32d}", + "table-pivot": "\u{e291}", + "table-rows": "\u{e292}", + "rows": "\u{e292}", + "tablet": "\u{f3fb}", + "tablet-android": "\u{f3fb}", + "tablet-button": "\u{f10a}", + "table-tennis-paddle-ball": "\u{f45d}", + "ping-pong-paddle-ball": "\u{f45d}", + "table-tennis": "\u{f45d}", + "table-tree": "\u{e293}", + "tablet-rugged": "\u{f48f}", + "tablets": "\u{f490}", + "tablet-screen": "\u{f3fc}", + "tablet-android-alt": "\u{f3fc}", + "tablet-screen-button": "\u{f3fa}", + "tablet-alt": "\u{f3fa}", + "tachograph-digital": "\u{f566}", + "digital-tachograph": "\u{f566}", + "taco": "\u{f826}", + "tag": "\u{f02b}", + "tags": "\u{f02c}", + "tally": "\u{f69c}", + "tally-5": "\u{f69c}", + "tally-1": "\u{e294}", + "tally-2": "\u{e295}", + "tally-3": "\u{e296}", + "tally-4": "\u{e297}", + "tamale": "\u{e451}", + "tank-water": "\u{e452}", + "tape": "\u{f4db}", + "tarp": "\u{e57b}", + "tarp-droplet": "\u{e57c}", + "taxi": "\u{f1ba}", + "cab": "\u{f1ba}", + "taxi-bus": "\u{e298}", + "teamspeak": "\u{f4f9}", + "teddy-bear": "\u{e3cf}", + "teeth": "\u{f62e}", + "teeth-open": "\u{f62f}", + "telegram": "\u{f2c6}", + "telegram-plane": "\u{f2c6}", + "telescope": "\u{e03e}", + "temperature-arrow-down": "\u{e03f}", + "temperature-down": "\u{e03f}", + "temperature-arrow-up": "\u{e040}", + "temperature-up": "\u{e040}", + "temperature-empty": "\u{f2cb}", + "temperature-0": "\u{f2cb}", + "thermometer-0": "\u{f2cb}", + "thermometer-empty": "\u{f2cb}", + "temperature-full": "\u{f2c7}", + "temperature-4": "\u{f2c7}", + "thermometer-4": "\u{f2c7}", + "thermometer-full": "\u{f2c7}", + "temperature-half": "\u{f2c9}", + "temperature-2": "\u{f2c9}", + "thermometer-2": "\u{f2c9}", + "thermometer-half": "\u{f2c9}", + "temperature-high": "\u{f769}", + "temperature-list": "\u{e299}", + "temperature-low": "\u{f76b}", + "temperature-quarter": "\u{f2ca}", + "temperature-1": "\u{f2ca}", + "thermometer-1": "\u{f2ca}", + "thermometer-quarter": "\u{f2ca}", + "temperature-snow": "\u{f768}", + "temperature-frigid": "\u{f768}", + "temperature-sun": "\u{f76a}", + "temperature-hot": "\u{f76a}", + "temperature-three-quarters": "\u{f2c8}", + "temperature-3": "\u{f2c8}", + "thermometer-3": "\u{f2c8}", + "thermometer-three-quarters": "\u{f2c8}", + "tencent-weibo": "\u{f1d5}", + "tenge-sign": "\u{f7d7}", + "tenge": "\u{f7d7}", + "tennis-ball": "\u{f45e}", + "tent": "\u{e57d}", + "tent-arrow-down-to-line": "\u{e57e}", + "tent-arrow-left-right": "\u{e57f}", + "tent-arrows-down": "\u{e581}", + "tent-arrow-turn-left": "\u{e580}", + "tent-double-peak": "\u{e627}", + "tents": "\u{e582}", + "terminal": "\u{f120}", + "text": "\u{f893}", + "text-height": "\u{f034}", + "text-size": "\u{f894}", + "text-slash": "\u{f87d}", + "remove-format": "\u{f87d}", + "text-width": "\u{f035}", + "themeco": "\u{f5c6}", + "themeisle": "\u{f2b2}", + "the-red-yeti": "\u{f69d}", + "thermometer": "\u{f491}", + "theta": "\u{f69e}", + "think-peaks": "\u{f731}", + "thought-bubble": "\u{e32e}", + "threads": "\u{e618}", + "thumbs-down": "\u{f165}", + "thumbs-up": "\u{f164}", + "thumbtack": "\u{f08d}", + "thumb-tack": "\u{f08d}", + "thumbtack-slash": "\u{e68f}", + "thumb-tack-slash": "\u{e68f}", + "tick": "\u{e32f}", + "ticket": "\u{f145}", + "ticket-airline": "\u{e29a}", + "ticket-perforated-plane": "\u{e29a}", + "ticket-plane": "\u{e29a}", + "ticket-perforated": "\u{e63e}", + "tickets": "\u{e658}", + "tickets-airline": "\u{e29b}", + "tickets-perforated-plane": "\u{e29b}", + "tickets-plane": "\u{e29b}", + "ticket-simple": "\u{f3ff}", + "ticket-alt": "\u{f3ff}", + "tickets-perforated": "\u{e63f}", + "tickets-simple": "\u{e659}", + "tiktok": "\u{e07b}", + "tilde": "\u{7e}", + "timeline": "\u{e29c}", + "timeline-arrow": "\u{e29d}", + "timer": "\u{e29e}", + "tire": "\u{f631}", + "tire-flat": "\u{f632}", + "tire-pressure-warning": "\u{f633}", + "tire-rugged": "\u{f634}", + "toggle-large-off": "\u{e5b0}", + "toggle-large-on": "\u{e5b1}", + "toggle-off": "\u{f204}", + "toggle-on": "\u{f205}", + "toilet": "\u{f7d8}", + "toilet-paper": "\u{f71e}", + "toilet-paper-blank": "\u{f71f}", + "toilet-paper-alt": "\u{f71f}", + "toilet-paper-blank-under": "\u{e29f}", + "toilet-paper-reverse-alt": "\u{e29f}", + "toilet-paper-check": "\u{e5b2}", + "toilet-paper-slash": "\u{e072}", + "toilet-paper-under": "\u{e2a0}", + "toilet-paper-reverse": "\u{e2a0}", + "toilet-paper-under-slash": "\u{e2a1}", + "toilet-paper-reverse-slash": "\u{e2a1}", + "toilet-paper-xmark": "\u{e5b3}", + "toilet-portable": "\u{e583}", + "toilets-portable": "\u{e584}", + "tomato": "\u{e330}", + "tombstone": "\u{f720}", + "tombstone-blank": "\u{f721}", + "tombstone-alt": "\u{f721}", + "toolbox": "\u{f552}", + "tooth": "\u{f5c9}", + "toothbrush": "\u{f635}", + "torii-gate": "\u{f6a1}", + "tornado": "\u{f76f}", + "tower-broadcast": "\u{f519}", + "broadcast-tower": "\u{f519}", + "tower-cell": "\u{e585}", + "tower-control": "\u{e2a2}", + "tower-observation": "\u{e586}", + "tractor": "\u{f722}", + "trade-federation": "\u{f513}", + "trademark": "\u{f25c}", + "traffic-cone": "\u{f636}", + "traffic-light": "\u{f637}", + "traffic-light-go": "\u{f638}", + "traffic-light-slow": "\u{f639}", + "traffic-light-stop": "\u{f63a}", + "trailer": "\u{e041}", + "train": "\u{f238}", + "train-subway": "\u{f239}", + "subway": "\u{f239}", + "train-subway-tunnel": "\u{e2a3}", + "subway-tunnel": "\u{e2a3}", + "train-track": "\u{e453}", + "train-tram": "\u{e5b4}", + "train-tunnel": "\u{e454}", + "transformer-bolt": "\u{e2a4}", + "transgender": "\u{f225}", + "transgender-alt": "\u{f225}", + "transporter": "\u{e042}", + "transporter-1": "\u{e043}", + "transporter-2": "\u{e044}", + "transporter-3": "\u{e045}", + "transporter-4": "\u{e2a5}", + "transporter-5": "\u{e2a6}", + "transporter-6": "\u{e2a7}", + "transporter-7": "\u{e2a8}", + "transporter-empty": "\u{e046}", + "trash": "\u{f1f8}", + "trash-arrow-up": "\u{f829}", + "trash-restore": "\u{f829}", + "trash-can": "\u{f2ed}", + "trash-alt": "\u{f2ed}", + "trash-can-arrow-up": "\u{f82a}", + "trash-restore-alt": "\u{f82a}", + "trash-can-check": "\u{e2a9}", + "trash-can-clock": "\u{e2aa}", + "trash-can-list": "\u{e2ab}", + "trash-can-plus": "\u{e2ac}", + "trash-can-slash": "\u{e2ad}", + "trash-alt-slash": "\u{e2ad}", + "trash-can-undo": "\u{f896}", + "trash-can-arrow-turn-left": "\u{f896}", + "trash-undo-alt": "\u{f896}", + "trash-can-xmark": "\u{e2ae}", + "trash-check": "\u{e2af}", + "trash-clock": "\u{e2b0}", + "trash-list": "\u{e2b1}", + "trash-plus": "\u{e2b2}", + "trash-slash": "\u{e2b3}", + "trash-undo": "\u{f895}", + "trash-arrow-turn-left": "\u{f895}", + "trash-xmark": "\u{e2b4}", + "treasure-chest": "\u{f723}", + "tree": "\u{f1bb}", + "tree-christmas": "\u{f7db}", + "tree-city": "\u{e587}", + "tree-deciduous": "\u{f400}", + "tree-alt": "\u{f400}", + "tree-decorated": "\u{f7dc}", + "tree-large": "\u{f7dd}", + "tree-palm": "\u{f82b}", + "trees": "\u{f724}", + "trello": "\u{f181}", + "t-rex": "\u{e629}", + "triangle": "\u{f2ec}", + "triangle-exclamation": "\u{f071}", + "exclamation-triangle": "\u{f071}", + "warning": "\u{f071}", + "triangle-instrument": "\u{f8e2}", + "triangle-music": "\u{f8e2}", + "triangle-person-digging": "\u{f85d}", + "construction": "\u{f85d}", + "tricycle": "\u{e5c3}", + "tricycle-adult": "\u{e5c4}", + "trillium": "\u{e588}", + "trophy": "\u{f091}", + "trophy-star": "\u{f2eb}", + "trophy-alt": "\u{f2eb}", + "trowel": "\u{e589}", + "trowel-bricks": "\u{e58a}", + "truck": "\u{f0d1}", + "truck-arrow-right": "\u{e58b}", + "truck-bolt": "\u{e3d0}", + "truck-clock": "\u{f48c}", + "shipping-timed": "\u{f48c}", + "truck-container": "\u{f4dc}", + "truck-container-empty": "\u{e2b5}", + "truck-droplet": "\u{e58c}", + "truck-fast": "\u{f48b}", + "shipping-fast": "\u{f48b}", + "truck-field": "\u{e58d}", + "truck-field-un": "\u{e58e}", + "truck-fire": "\u{e65a}", + "truck-flatbed": "\u{e2b6}", + "truck-front": "\u{e2b7}", + "truck-ladder": "\u{e657}", + "truck-medical": "\u{f0f9}", + "ambulance": "\u{f0f9}", + "truck-monster": "\u{f63b}", + "truck-moving": "\u{f4df}", + "truck-pickup": "\u{f63c}", + "truck-plane": "\u{e58f}", + "truck-plow": "\u{f7de}", + "truck-ramp": "\u{f4e0}", + "truck-ramp-box": "\u{f4de}", + "truck-loading": "\u{f4de}", + "truck-ramp-couch": "\u{f4dd}", + "truck-couch": "\u{f4dd}", + "truck-tow": "\u{e2b8}", + "truck-utensils": "\u{e628}", + "trumpet": "\u{f8e3}", + "tty": "\u{f1e4}", + "teletype": "\u{f1e4}", + "tty-answer": "\u{e2b9}", + "teletype-answer": "\u{e2b9}", + "tugrik-sign": "\u{e2ba}", + "tumblr": "\u{f173}", + "turkey": "\u{f725}", + "turkish-lira-sign": "\u{e2bb}", + "try": "\u{e2bb}", + "turkish-lira": "\u{e2bb}", + "turn-down": "\u{f3be}", + "level-down-alt": "\u{f3be}", + "turn-down-left": "\u{e331}", + "turn-down-right": "\u{e455}", + "turn-left": "\u{e636}", + "turn-left-down": "\u{e637}", + "turn-left-up": "\u{e638}", + "turn-right": "\u{e639}", + "turntable": "\u{f8e4}", + "turn-up": "\u{f3bf}", + "level-up-alt": "\u{f3bf}", + "turtle": "\u{f726}", + "tv": "\u{f26c}", + "television": "\u{f26c}", + "tv-alt": "\u{f26c}", + "tv-music": "\u{f8e6}", + "tv-retro": "\u{f401}", + "twitch": "\u{f1e8}", + "twitter": "\u{f099}", + "typewriter": "\u{f8e7}", + "typo3": "\u{f42b}", + "u": "\u{55}", + "uber": "\u{f402}", + "ubuntu": "\u{f7df}", + "ufo": "\u{e047}", + "ufo-beam": "\u{e048}", + "uikit": "\u{f403}", + "umbraco": "\u{f8e8}", + "umbrella": "\u{f0e9}", + "umbrella-beach": "\u{f5ca}", + "umbrella-simple": "\u{e2bc}", + "umbrella-alt": "\u{e2bc}", + "uncharted": "\u{e084}", + "underline": "\u{f0cd}", + "unicorn": "\u{f727}", + "uniform-martial-arts": "\u{e3d1}", + "union": "\u{f6a2}", + "uniregistry": "\u{f404}", + "unity": "\u{e049}", + "universal-access": "\u{f29a}", + "unlock": "\u{f09c}", + "unlock-keyhole": "\u{f13e}", + "unlock-alt": "\u{f13e}", + "unsplash": "\u{e07c}", + "untappd": "\u{f405}", + "up": "\u{f357}", + "arrow-alt-up": "\u{f357}", + "up-down": "\u{f338}", + "arrows-alt-v": "\u{f338}", + "up-down-left-right": "\u{f0b2}", + "arrows-alt": "\u{f0b2}", + "up-from-bracket": "\u{e590}", + "up-from-dotted-line": "\u{e456}", + "up-from-line": "\u{f346}", + "arrow-alt-from-bottom": "\u{f346}", + "up-left": "\u{e2bd}", + "upload": "\u{f093}", + "up-long": "\u{f30c}", + "long-arrow-alt-up": "\u{f30c}", + "up-right": "\u{e2be}", + "up-right-and-down-left-from-center": "\u{f424}", + "expand-alt": "\u{f424}", + "up-right-from-square": "\u{f35d}", + "external-link-alt": "\u{f35d}", + "ups": "\u{f7e0}", + "up-to-bracket": "\u{e66e}", + "up-to-dotted-line": "\u{e457}", + "up-to-line": "\u{f34d}", + "arrow-alt-to-top": "\u{f34d}", + "upwork": "\u{e641}", + "usb": "\u{f287}", + "usb-drive": "\u{f8e9}", + "user": "\u{f007}", + "user-alien": "\u{e04a}", + "user-astronaut": "\u{f4fb}", + "user-beard-bolt": "\u{e689}", + "user-bounty-hunter": "\u{e2bf}", + "user-check": "\u{f4fc}", + "user-chef": "\u{e3d2}", + "user-clock": "\u{f4fd}", + "user-cowboy": "\u{f8ea}", + "user-crown": "\u{f6a4}", + "user-doctor": "\u{f0f0}", + "user-md": "\u{f0f0}", + "user-doctor-hair": "\u{e458}", + "user-doctor-hair-long": "\u{e459}", + "user-doctor-message": "\u{f82e}", + "user-md-chat": "\u{f82e}", + "user-gear": "\u{f4fe}", + "user-cog": "\u{f4fe}", + "user-graduate": "\u{f501}", + "user-group": "\u{f500}", + "user-friends": "\u{f500}", + "user-group-crown": "\u{f6a5}", + "users-crown": "\u{f6a5}", + "user-group-simple": "\u{e603}", + "user-hair": "\u{e45a}", + "user-hair-buns": "\u{e3d3}", + "user-hair-long": "\u{e45b}", + "user-hair-mullet": "\u{e45c}", + "business-front": "\u{e45c}", + "party-back": "\u{e45c}", + "trian-balbot": "\u{e45c}", + "user-headset": "\u{f82d}", + "user-helmet-safety": "\u{f82c}", + "user-construction": "\u{f82c}", + "user-hard-hat": "\u{f82c}", + "user-hoodie": "\u{e68a}", + "user-injured": "\u{f728}", + "user-large": "\u{f406}", + "user-alt": "\u{f406}", + "user-large-slash": "\u{f4fa}", + "user-alt-slash": "\u{f4fa}", + "user-lock": "\u{f502}", + "user-magnifying-glass": "\u{e5c5}", + "user-minus": "\u{f503}", + "user-music": "\u{f8eb}", + "user-ninja": "\u{f504}", + "user-nurse": "\u{f82f}", + "user-nurse-hair": "\u{e45d}", + "user-nurse-hair-long": "\u{e45e}", + "user-pen": "\u{f4ff}", + "user-edit": "\u{f4ff}", + "user-pilot": "\u{e2c0}", + "user-pilot-tie": "\u{e2c1}", + "user-plus": "\u{f234}", + "user-police": "\u{e333}", + "user-police-tie": "\u{e334}", + "user-robot": "\u{e04b}", + "user-robot-xmarks": "\u{e4a7}", + "users": "\u{f0c0}", + "users-between-lines": "\u{e591}", + "user-secret": "\u{f21b}", + "users-gear": "\u{f509}", + "users-cog": "\u{f509}", + "user-shakespeare": "\u{e2c2}", + "user-shield": "\u{f505}", + "user-slash": "\u{f506}", + "users-line": "\u{e592}", + "users-medical": "\u{f830}", + "users-rays": "\u{e593}", + "users-rectangle": "\u{e594}", + "users-slash": "\u{e073}", + "users-viewfinder": "\u{e595}", + "user-tag": "\u{f507}", + "user-tie": "\u{f508}", + "user-tie-hair": "\u{e45f}", + "user-tie-hair-long": "\u{e460}", + "user-unlock": "\u{e058}", + "user-visor": "\u{e04c}", + "user-vneck": "\u{e461}", + "user-vneck-hair": "\u{e462}", + "user-vneck-hair-long": "\u{e463}", + "user-xmark": "\u{f235}", + "user-times": "\u{f235}", + "usps": "\u{f7e1}", + "ussunnah": "\u{f407}", + "utensils": "\u{f2e7}", + "cutlery": "\u{f2e7}", + "utensils-slash": "\u{e464}", + "utility-pole": "\u{e2c3}", + "utility-pole-double": "\u{e2c4}", + "v": "\u{56}", + "vaadin": "\u{f408}", + "vacuum": "\u{e04d}", + "vacuum-robot": "\u{e04e}", + "value-absolute": "\u{f6a6}", + "van-shuttle": "\u{f5b6}", + "shuttle-van": "\u{f5b6}", + "vault": "\u{e2c5}", + "vector-circle": "\u{e2c6}", + "vector-polygon": "\u{e2c7}", + "vector-square": "\u{f5cb}", + "vent-damper": "\u{e465}", + "venus": "\u{f221}", + "venus-double": "\u{f226}", + "venus-mars": "\u{f228}", + "vest": "\u{e085}", + "vest-patches": "\u{e086}", + "viacoin": "\u{f237}", + "viadeo": "\u{f2a9}", + "vial": "\u{f492}", + "vial-circle-check": "\u{e596}", + "vials": "\u{f493}", + "vial-virus": "\u{e597}", + "viber": "\u{f409}", + "video": "\u{f03d}", + "video-camera": "\u{f03d}", + "video-arrow-down-left": "\u{e2c8}", + "video-arrow-up-right": "\u{e2c9}", + "video-plus": "\u{f4e1}", + "video-slash": "\u{f4e2}", + "vihara": "\u{f6a7}", + "vimeo": "\u{f40a}", + "vimeo-v": "\u{f27d}", + "vine": "\u{f1ca}", + "violin": "\u{f8ed}", + "virus": "\u{e074}", + "virus-covid": "\u{e4a8}", + "virus-covid-slash": "\u{e4a9}", + "viruses": "\u{e076}", + "virus-slash": "\u{e075}", + "vk": "\u{f189}", + "vnv": "\u{f40b}", + "voicemail": "\u{f897}", + "volcano": "\u{f770}", + "volleyball": "\u{f45f}", + "volleyball-ball": "\u{f45f}", + "volume": "\u{f6a8}", + "volume-medium": "\u{f6a8}", + "volume-high": "\u{f028}", + "volume-up": "\u{f028}", + "volume-low": "\u{f027}", + "volume-down": "\u{f027}", + "volume-off": "\u{f026}", + "volume-slash": "\u{f2e2}", + "volume-xmark": "\u{f6a9}", + "volume-mute": "\u{f6a9}", + "volume-times": "\u{f6a9}", + "vr-cardboard": "\u{f729}", + "vuejs": "\u{f41f}", + "w": "\u{57}", + "waffle": "\u{e466}", + "wagon-covered": "\u{f8ee}", + "walker": "\u{f831}", + "walkie-talkie": "\u{f8ef}", + "wallet": "\u{f555}", + "wand": "\u{f72a}", + "wand-magic": "\u{f0d0}", + "magic": "\u{f0d0}", + "wand-magic-sparkles": "\u{e2ca}", + "magic-wand-sparkles": "\u{e2ca}", + "wand-sparkles": "\u{f72b}", + "warehouse": "\u{f494}", + "warehouse-full": "\u{f495}", + "warehouse-alt": "\u{f495}", + "washing-machine": "\u{f898}", + "washer": "\u{f898}", + "watch": "\u{f2e1}", + "watch-apple": "\u{e2cb}", + "watch-calculator": "\u{f8f0}", + "watch-fitness": "\u{f63e}", + "watchman-monitoring": "\u{e087}", + "watch-smart": "\u{e2cc}", + "water": "\u{f773}", + "water-arrow-down": "\u{f774}", + "water-lower": "\u{f774}", + "water-arrow-up": "\u{f775}", + "water-rise": "\u{f775}", + "water-ladder": "\u{f5c5}", + "ladder-water": "\u{f5c5}", + "swimming-pool": "\u{f5c5}", + "watermelon-slice": "\u{e337}", + "wave": "\u{e65b}", + "waveform": "\u{f8f1}", + "waveform-lines": "\u{f8f2}", + "waveform-path": "\u{f8f2}", + "wave-pulse": "\u{f5f8}", + "heart-rate": "\u{f5f8}", + "wave-sine": "\u{f899}", + "wave-square": "\u{f83e}", + "waves-sine": "\u{e65d}", + "wave-triangle": "\u{f89a}", + "waze": "\u{f83f}", + "web-awesome": "\u{e682}", + "webflow": "\u{e65c}", + "webhook": "\u{e5d5}", + "weebly": "\u{f5cc}", + "weibo": "\u{f18a}", + "weight-hanging": "\u{f5cd}", + "weight-scale": "\u{f496}", + "weight": "\u{f496}", + "weixin": "\u{f1d7}", + "whale": "\u{f72c}", + "whatsapp": "\u{f232}", + "wheat": "\u{f72d}", + "wheat-awn": "\u{e2cd}", + "wheat-alt": "\u{e2cd}", + "wheat-awn-circle-exclamation": "\u{e598}", + "wheat-awn-slash": "\u{e338}", + "wheat-slash": "\u{e339}", + "wheelchair": "\u{f193}", + "wheelchair-move": "\u{e2ce}", + "wheelchair-alt": "\u{e2ce}", + "whiskey-glass": "\u{f7a0}", + "glass-whiskey": "\u{f7a0}", + "whiskey-glass-ice": "\u{f7a1}", + "glass-whiskey-rocks": "\u{f7a1}", + "whistle": "\u{f460}", + "whmcs": "\u{f40d}", + "wifi": "\u{f1eb}", + "wifi-3": "\u{f1eb}", + "wifi-strong": "\u{f1eb}", + "wifi-exclamation": "\u{e2cf}", + "wifi-fair": "\u{f6ab}", + "wifi-2": "\u{f6ab}", + "wifi-slash": "\u{f6ac}", + "wifi-weak": "\u{f6aa}", + "wifi-1": "\u{f6aa}", + "wikipedia-w": "\u{f266}", + "wind": "\u{f72e}", + "window": "\u{f40e}", + "window-flip": "\u{f40f}", + "window-alt": "\u{f40f}", + "window-frame": "\u{e04f}", + "window-frame-open": "\u{e050}", + "window-maximize": "\u{f2d0}", + "window-minimize": "\u{f2d1}", + "window-restore": "\u{f2d2}", + "windows": "\u{f17a}", + "windsock": "\u{f777}", + "wind-turbine": "\u{f89b}", + "wind-warning": "\u{f776}", + "wind-circle-exclamation": "\u{f776}", + "wine-bottle": "\u{f72f}", + "wine-glass": "\u{f4e3}", + "wine-glass-crack": "\u{f4bb}", + "fragile": "\u{f4bb}", + "wine-glass-empty": "\u{f5ce}", + "wine-glass-alt": "\u{f5ce}", + "wirsindhandwerk": "\u{e2d0}", + "wsh": "\u{e2d0}", + "wix": "\u{f5cf}", + "wizards-of-the-coast": "\u{f730}", + "wodu": "\u{e088}", + "wolf-pack-battalion": "\u{f514}", + "won-sign": "\u{f159}", + "krw": "\u{f159}", + "won": "\u{f159}", + "wordpress": "\u{f19a}", + "wordpress-simple": "\u{f411}", + "worm": "\u{e599}", + "wpbeginner": "\u{f297}", + "wpexplorer": "\u{f2de}", + "wpforms": "\u{f298}", + "wpressr": "\u{f3e4}", + "rendact": "\u{f3e4}", + "wreath": "\u{f7e2}", + "wreath-laurel": "\u{e5d2}", + "wrench": "\u{f0ad}", + "wrench-simple": "\u{e2d1}", + "x": "\u{58}", + "xbox": "\u{f412}", + "xing": "\u{f168}", + "xmark": "\u{f00d}", + "close": "\u{f00d}", + "multiply": "\u{f00d}", + "remove": "\u{f00d}", + "times": "\u{f00d}", + "xmark-large": "\u{e59b}", + "xmarks-lines": "\u{e59a}", + "xmark-to-slot": "\u{f771}", + "times-to-slot": "\u{f771}", + "vote-nay": "\u{f771}", + "x-ray": "\u{f497}", + "x-twitter": "\u{e61b}", + "y": "\u{59}", + "yahoo": "\u{f19e}", + "yammer": "\u{f840}", + "yandex": "\u{f413}", + "yandex-international": "\u{f414}", + "yarn": "\u{f7e3}", + "y-combinator": "\u{f23b}", + "yelp": "\u{f1e9}", + "yen-sign": "\u{f157}", + "cny": "\u{f157}", + "jpy": "\u{f157}", + "rmb": "\u{f157}", + "yen": "\u{f157}", + "yin-yang": "\u{f6ad}", + "yoast": "\u{f2b1}", + "youtube": "\u{f167}", + "z": "\u{5a}", + "zhihu": "\u{f63f}", +) +#let fa-0 = fa-icon.with("\u{30}") +#let fa-00 = fa-icon.with("\u{e467}") +#let fa-1 = fa-icon.with("\u{31}") +#let fa-2 = fa-icon.with("\u{32}") +#let fa-3 = fa-icon.with("\u{33}") +#let fa-360-degrees = fa-icon.with("\u{e2dc}") +#let fa-4 = fa-icon.with("\u{34}") +#let fa-42-group = fa-icon.with("\u{e080}") +#let fa-innosoft = fa-icon.with("\u{e080}") +#let fa-5 = fa-icon.with("\u{35}") +#let fa-500px = fa-icon.with("\u{f26e}") +#let fa-6 = fa-icon.with("\u{36}") +#let fa-7 = fa-icon.with("\u{37}") +#let fa-8 = fa-icon.with("\u{38}") +#let fa-9 = fa-icon.with("\u{39}") +#let fa-a = fa-icon.with("\u{41}") +#let fa-abacus = fa-icon.with("\u{f640}") +#let fa-accent-grave = fa-icon.with("\u{60}") +#let fa-accessible-icon = fa-icon.with("\u{f368}") +#let fa-accusoft = fa-icon.with("\u{f369}") +#let fa-acorn = fa-icon.with("\u{f6ae}") +#let fa-address-book = fa-icon.with("\u{f2b9}") +#let fa-contact-book = fa-icon.with("\u{f2b9}") +#let fa-address-card = fa-icon.with("\u{f2bb}") +#let fa-contact-card = fa-icon.with("\u{f2bb}") +#let fa-vcard = fa-icon.with("\u{f2bb}") +#let fa-adn = fa-icon.with("\u{f170}") +#let fa-adversal = fa-icon.with("\u{f36a}") +#let fa-affiliatetheme = fa-icon.with("\u{f36b}") +#let fa-airbnb = fa-icon.with("\u{f834}") +#let fa-air-conditioner = fa-icon.with("\u{f8f4}") +#let fa-airplay = fa-icon.with("\u{e089}") +#let fa-alarm-clock = fa-icon.with("\u{f34e}") +#let fa-alarm-exclamation = fa-icon.with("\u{f843}") +#let fa-alarm-plus = fa-icon.with("\u{f844}") +#let fa-alarm-snooze = fa-icon.with("\u{f845}") +#let fa-album = fa-icon.with("\u{f89f}") +#let fa-album-circle-plus = fa-icon.with("\u{e48c}") +#let fa-album-circle-user = fa-icon.with("\u{e48d}") +#let fa-album-collection = fa-icon.with("\u{f8a0}") +#let fa-album-collection-circle-plus = fa-icon.with("\u{e48e}") +#let fa-album-collection-circle-user = fa-icon.with("\u{e48f}") +#let fa-algolia = fa-icon.with("\u{f36c}") +#let fa-alicorn = fa-icon.with("\u{f6b0}") +#let fa-alien = fa-icon.with("\u{f8f5}") +#let fa-alien-8bit = fa-icon.with("\u{f8f6}") +#let fa-alien-monster = fa-icon.with("\u{f8f6}") +#let fa-align-center = fa-icon.with("\u{f037}") +#let fa-align-justify = fa-icon.with("\u{f039}") +#let fa-align-left = fa-icon.with("\u{f036}") +#let fa-align-right = fa-icon.with("\u{f038}") +#let fa-align-slash = fa-icon.with("\u{f846}") +#let fa-alipay = fa-icon.with("\u{f642}") +#let fa-alt = fa-icon.with("\u{e08a}") +#let fa-amazon = fa-icon.with("\u{f270}") +#let fa-amazon-pay = fa-icon.with("\u{f42c}") +#let fa-amilia = fa-icon.with("\u{f36d}") +#let fa-ampersand = fa-icon.with("\u{26}") +#let fa-amp-guitar = fa-icon.with("\u{f8a1}") +#let fa-anchor = fa-icon.with("\u{f13d}") +#let fa-anchor-circle-check = fa-icon.with("\u{e4aa}") +#let fa-anchor-circle-exclamation = fa-icon.with("\u{e4ab}") +#let fa-anchor-circle-xmark = fa-icon.with("\u{e4ac}") +#let fa-anchor-lock = fa-icon.with("\u{e4ad}") +#let fa-android = fa-icon.with("\u{f17b}") +#let fa-angel = fa-icon.with("\u{f779}") +#let fa-angellist = fa-icon.with("\u{f209}") +#let fa-angle = fa-icon.with("\u{e08c}") +#let fa-angle-90 = fa-icon.with("\u{e08d}") +#let fa-angle-down = fa-icon.with("\u{f107}") +#let fa-angle-left = fa-icon.with("\u{f104}") +#let fa-angle-right = fa-icon.with("\u{f105}") +#let fa-angles-down = fa-icon.with("\u{f103}") +#let fa-angle-double-down = fa-icon.with("\u{f103}") +#let fa-angles-left = fa-icon.with("\u{f100}") +#let fa-angle-double-left = fa-icon.with("\u{f100}") +#let fa-angles-right = fa-icon.with("\u{f101}") +#let fa-angle-double-right = fa-icon.with("\u{f101}") +#let fa-angles-up = fa-icon.with("\u{f102}") +#let fa-angle-double-up = fa-icon.with("\u{f102}") +#let fa-angles-up-down = fa-icon.with("\u{e60d}") +#let fa-angle-up = fa-icon.with("\u{f106}") +#let fa-angrycreative = fa-icon.with("\u{f36e}") +#let fa-angular = fa-icon.with("\u{f420}") +#let fa-ankh = fa-icon.with("\u{f644}") +#let fa-ant = fa-icon.with("\u{e680}") +#let fa-apartment = fa-icon.with("\u{e468}") +#let fa-aperture = fa-icon.with("\u{e2df}") +#let fa-apostrophe = fa-icon.with("\u{27}") +#let fa-apper = fa-icon.with("\u{f371}") +#let fa-apple = fa-icon.with("\u{f179}") +#let fa-apple-core = fa-icon.with("\u{e08f}") +#let fa-apple-pay = fa-icon.with("\u{f415}") +#let fa-apple-whole = fa-icon.with("\u{f5d1}") +#let fa-apple-alt = fa-icon.with("\u{f5d1}") +#let fa-app-store = fa-icon.with("\u{f36f}") +#let fa-app-store-ios = fa-icon.with("\u{f370}") +#let fa-archway = fa-icon.with("\u{f557}") +#let fa-arrow-down = fa-icon.with("\u{f063}") +#let fa-arrow-down-1-9 = fa-icon.with("\u{f162}") +#let fa-sort-numeric-asc = fa-icon.with("\u{f162}") +#let fa-sort-numeric-down = fa-icon.with("\u{f162}") +#let fa-arrow-down-9-1 = fa-icon.with("\u{f886}") +#let fa-sort-numeric-desc = fa-icon.with("\u{f886}") +#let fa-sort-numeric-down-alt = fa-icon.with("\u{f886}") +#let fa-arrow-down-arrow-up = fa-icon.with("\u{f883}") +#let fa-sort-alt = fa-icon.with("\u{f883}") +#let fa-arrow-down-a-z = fa-icon.with("\u{f15d}") +#let fa-sort-alpha-asc = fa-icon.with("\u{f15d}") +#let fa-sort-alpha-down = fa-icon.with("\u{f15d}") +#let fa-arrow-down-big-small = fa-icon.with("\u{f88c}") +#let fa-sort-size-down = fa-icon.with("\u{f88c}") +#let fa-arrow-down-from-arc = fa-icon.with("\u{e614}") +#let fa-arrow-down-from-bracket = fa-icon.with("\u{e667}") +#let fa-arrow-down-from-dotted-line = fa-icon.with("\u{e090}") +#let fa-arrow-down-from-line = fa-icon.with("\u{f345}") +#let fa-arrow-from-top = fa-icon.with("\u{f345}") +#let fa-arrow-down-left = fa-icon.with("\u{e091}") +#let fa-arrow-down-left-and-arrow-up-right-to-center = fa-icon.with("\u{e092}") +#let fa-arrow-down-long = fa-icon.with("\u{f175}") +#let fa-long-arrow-down = fa-icon.with("\u{f175}") +#let fa-arrow-down-right = fa-icon.with("\u{e093}") +#let fa-arrow-down-short-wide = fa-icon.with("\u{f884}") +#let fa-sort-amount-desc = fa-icon.with("\u{f884}") +#let fa-sort-amount-down-alt = fa-icon.with("\u{f884}") +#let fa-arrow-down-small-big = fa-icon.with("\u{f88d}") +#let fa-sort-size-down-alt = fa-icon.with("\u{f88d}") +#let fa-arrow-down-square-triangle = fa-icon.with("\u{f889}") +#let fa-sort-shapes-down-alt = fa-icon.with("\u{f889}") +#let fa-arrow-down-to-arc = fa-icon.with("\u{e4ae}") +#let fa-arrow-down-to-bracket = fa-icon.with("\u{e094}") +#let fa-arrow-down-to-dotted-line = fa-icon.with("\u{e095}") +#let fa-arrow-down-to-line = fa-icon.with("\u{f33d}") +#let fa-arrow-to-bottom = fa-icon.with("\u{f33d}") +#let fa-arrow-down-to-square = fa-icon.with("\u{e096}") +#let fa-arrow-down-triangle-square = fa-icon.with("\u{f888}") +#let fa-sort-shapes-down = fa-icon.with("\u{f888}") +#let fa-arrow-down-up-across-line = fa-icon.with("\u{e4af}") +#let fa-arrow-down-up-lock = fa-icon.with("\u{e4b0}") +#let fa-arrow-down-wide-short = fa-icon.with("\u{f160}") +#let fa-sort-amount-asc = fa-icon.with("\u{f160}") +#let fa-sort-amount-down = fa-icon.with("\u{f160}") +#let fa-arrow-down-z-a = fa-icon.with("\u{f881}") +#let fa-sort-alpha-desc = fa-icon.with("\u{f881}") +#let fa-sort-alpha-down-alt = fa-icon.with("\u{f881}") +#let fa-arrow-left = fa-icon.with("\u{f060}") +#let fa-arrow-left-from-arc = fa-icon.with("\u{e615}") +#let fa-arrow-left-from-bracket = fa-icon.with("\u{e668}") +#let fa-arrow-left-from-line = fa-icon.with("\u{f344}") +#let fa-arrow-from-right = fa-icon.with("\u{f344}") +#let fa-arrow-left-long = fa-icon.with("\u{f177}") +#let fa-long-arrow-left = fa-icon.with("\u{f177}") +#let fa-arrow-left-long-to-line = fa-icon.with("\u{e3d4}") +#let fa-arrow-left-to-arc = fa-icon.with("\u{e616}") +#let fa-arrow-left-to-bracket = fa-icon.with("\u{e669}") +#let fa-arrow-left-to-line = fa-icon.with("\u{f33e}") +#let fa-arrow-to-left = fa-icon.with("\u{f33e}") +#let fa-arrow-pointer = fa-icon.with("\u{f245}") +#let fa-mouse-pointer = fa-icon.with("\u{f245}") +#let fa-arrow-progress = fa-icon.with("\u{e5df}") +#let fa-arrow-right = fa-icon.with("\u{f061}") +#let fa-arrow-right-arrow-left = fa-icon.with("\u{f0ec}") +#let fa-exchange = fa-icon.with("\u{f0ec}") +#let fa-arrow-right-from-arc = fa-icon.with("\u{e4b1}") +#let fa-arrow-right-from-bracket = fa-icon.with("\u{f08b}") +#let fa-sign-out = fa-icon.with("\u{f08b}") +#let fa-arrow-right-from-line = fa-icon.with("\u{f343}") +#let fa-arrow-from-left = fa-icon.with("\u{f343}") +#let fa-arrow-right-long = fa-icon.with("\u{f178}") +#let fa-long-arrow-right = fa-icon.with("\u{f178}") +#let fa-arrow-right-long-to-line = fa-icon.with("\u{e3d5}") +#let fa-arrow-right-to-arc = fa-icon.with("\u{e4b2}") +#let fa-arrow-right-to-bracket = fa-icon.with("\u{f090}") +#let fa-sign-in = fa-icon.with("\u{f090}") +#let fa-arrow-right-to-city = fa-icon.with("\u{e4b3}") +#let fa-arrow-right-to-line = fa-icon.with("\u{f340}") +#let fa-arrow-to-right = fa-icon.with("\u{f340}") +#let fa-arrow-rotate-left = fa-icon.with("\u{f0e2}") +#let fa-arrow-left-rotate = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-back = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-backward = fa-icon.with("\u{f0e2}") +#let fa-undo = fa-icon.with("\u{f0e2}") +#let fa-arrow-rotate-right = fa-icon.with("\u{f01e}") +#let fa-arrow-right-rotate = fa-icon.with("\u{f01e}") +#let fa-arrow-rotate-forward = fa-icon.with("\u{f01e}") +#let fa-redo = fa-icon.with("\u{f01e}") +#let fa-arrows-cross = fa-icon.with("\u{e0a2}") +#let fa-arrows-down-to-line = fa-icon.with("\u{e4b8}") +#let fa-arrows-down-to-people = fa-icon.with("\u{e4b9}") +#let fa-arrows-from-dotted-line = fa-icon.with("\u{e0a3}") +#let fa-arrows-from-line = fa-icon.with("\u{e0a4}") +#let fa-arrows-left-right = fa-icon.with("\u{f07e}") +#let fa-arrows-h = fa-icon.with("\u{f07e}") +#let fa-arrows-left-right-to-line = fa-icon.with("\u{e4ba}") +#let fa-arrows-maximize = fa-icon.with("\u{f31d}") +#let fa-expand-arrows = fa-icon.with("\u{f31d}") +#let fa-arrows-minimize = fa-icon.with("\u{e0a5}") +#let fa-compress-arrows = fa-icon.with("\u{e0a5}") +#let fa-arrows-repeat = fa-icon.with("\u{f364}") +#let fa-repeat-alt = fa-icon.with("\u{f364}") +#let fa-arrows-repeat-1 = fa-icon.with("\u{f366}") +#let fa-repeat-1-alt = fa-icon.with("\u{f366}") +#let fa-arrows-retweet = fa-icon.with("\u{f361}") +#let fa-retweet-alt = fa-icon.with("\u{f361}") +#let fa-arrows-rotate = fa-icon.with("\u{f021}") +#let fa-refresh = fa-icon.with("\u{f021}") +#let fa-sync = fa-icon.with("\u{f021}") +#let fa-arrows-rotate-reverse = fa-icon.with("\u{e630}") +#let fa-arrows-spin = fa-icon.with("\u{e4bb}") +#let fa-arrows-split-up-and-left = fa-icon.with("\u{e4bc}") +#let fa-arrows-to-circle = fa-icon.with("\u{e4bd}") +#let fa-arrows-to-dot = fa-icon.with("\u{e4be}") +#let fa-arrows-to-dotted-line = fa-icon.with("\u{e0a6}") +#let fa-arrows-to-eye = fa-icon.with("\u{e4bf}") +#let fa-arrows-to-line = fa-icon.with("\u{e0a7}") +#let fa-arrows-turn-right = fa-icon.with("\u{e4c0}") +#let fa-arrows-turn-to-dots = fa-icon.with("\u{e4c1}") +#let fa-arrows-up-down = fa-icon.with("\u{f07d}") +#let fa-arrows-v = fa-icon.with("\u{f07d}") +#let fa-arrows-up-down-left-right = fa-icon.with("\u{f047}") +#let fa-arrows = fa-icon.with("\u{f047}") +#let fa-arrows-up-to-line = fa-icon.with("\u{e4c2}") +#let fa-arrow-trend-down = fa-icon.with("\u{e097}") +#let fa-arrow-trend-up = fa-icon.with("\u{e098}") +#let fa-arrow-turn-down = fa-icon.with("\u{f149}") +#let fa-level-down = fa-icon.with("\u{f149}") +#let fa-arrow-turn-down-left = fa-icon.with("\u{e2e1}") +#let fa-arrow-turn-down-right = fa-icon.with("\u{e3d6}") +#let fa-arrow-turn-left = fa-icon.with("\u{e632}") +#let fa-arrow-turn-left-down = fa-icon.with("\u{e633}") +#let fa-arrow-turn-left-up = fa-icon.with("\u{e634}") +#let fa-arrow-turn-right = fa-icon.with("\u{e635}") +#let fa-arrow-turn-up = fa-icon.with("\u{f148}") +#let fa-level-up = fa-icon.with("\u{f148}") +#let fa-arrow-up = fa-icon.with("\u{f062}") +#let fa-arrow-up-1-9 = fa-icon.with("\u{f163}") +#let fa-sort-numeric-up = fa-icon.with("\u{f163}") +#let fa-arrow-up-9-1 = fa-icon.with("\u{f887}") +#let fa-sort-numeric-up-alt = fa-icon.with("\u{f887}") +#let fa-arrow-up-arrow-down = fa-icon.with("\u{e099}") +#let fa-sort-up-down = fa-icon.with("\u{e099}") +#let fa-arrow-up-a-z = fa-icon.with("\u{f15e}") +#let fa-sort-alpha-up = fa-icon.with("\u{f15e}") +#let fa-arrow-up-big-small = fa-icon.with("\u{f88e}") +#let fa-sort-size-up = fa-icon.with("\u{f88e}") +#let fa-arrow-up-from-arc = fa-icon.with("\u{e4b4}") +#let fa-arrow-up-from-bracket = fa-icon.with("\u{e09a}") +#let fa-arrow-up-from-dotted-line = fa-icon.with("\u{e09b}") +#let fa-arrow-up-from-ground-water = fa-icon.with("\u{e4b5}") +#let fa-arrow-up-from-line = fa-icon.with("\u{f342}") +#let fa-arrow-from-bottom = fa-icon.with("\u{f342}") +#let fa-arrow-up-from-square = fa-icon.with("\u{e09c}") +#let fa-arrow-up-from-water-pump = fa-icon.with("\u{e4b6}") +#let fa-arrow-up-left = fa-icon.with("\u{e09d}") +#let fa-arrow-up-left-from-circle = fa-icon.with("\u{e09e}") +#let fa-arrow-up-long = fa-icon.with("\u{f176}") +#let fa-long-arrow-up = fa-icon.with("\u{f176}") +#let fa-arrow-up-right = fa-icon.with("\u{e09f}") +#let fa-arrow-up-right-and-arrow-down-left-from-center = fa-icon.with("\u{e0a0}") +#let fa-arrow-up-right-dots = fa-icon.with("\u{e4b7}") +#let fa-arrow-up-right-from-square = fa-icon.with("\u{f08e}") +#let fa-external-link = fa-icon.with("\u{f08e}") +#let fa-arrow-up-short-wide = fa-icon.with("\u{f885}") +#let fa-sort-amount-up-alt = fa-icon.with("\u{f885}") +#let fa-arrow-up-small-big = fa-icon.with("\u{f88f}") +#let fa-sort-size-up-alt = fa-icon.with("\u{f88f}") +#let fa-arrow-up-square-triangle = fa-icon.with("\u{f88b}") +#let fa-sort-shapes-up-alt = fa-icon.with("\u{f88b}") +#let fa-arrow-up-to-arc = fa-icon.with("\u{e617}") +#let fa-arrow-up-to-bracket = fa-icon.with("\u{e66a}") +#let fa-arrow-up-to-dotted-line = fa-icon.with("\u{e0a1}") +#let fa-arrow-up-to-line = fa-icon.with("\u{f341}") +#let fa-arrow-to-top = fa-icon.with("\u{f341}") +#let fa-arrow-up-triangle-square = fa-icon.with("\u{f88a}") +#let fa-sort-shapes-up = fa-icon.with("\u{f88a}") +#let fa-arrow-up-wide-short = fa-icon.with("\u{f161}") +#let fa-sort-amount-up = fa-icon.with("\u{f161}") +#let fa-arrow-up-z-a = fa-icon.with("\u{f882}") +#let fa-sort-alpha-up-alt = fa-icon.with("\u{f882}") +#let fa-artstation = fa-icon.with("\u{f77a}") +#let fa-asterisk = fa-icon.with("\u{2a}") +#let fa-asymmetrik = fa-icon.with("\u{f372}") +#let fa-at = fa-icon.with("\u{40}") +#let fa-atlassian = fa-icon.with("\u{f77b}") +#let fa-atom = fa-icon.with("\u{f5d2}") +#let fa-atom-simple = fa-icon.with("\u{f5d3}") +#let fa-atom-alt = fa-icon.with("\u{f5d3}") +#let fa-audible = fa-icon.with("\u{f373}") +#let fa-audio-description = fa-icon.with("\u{f29e}") +#let fa-audio-description-slash = fa-icon.with("\u{e0a8}") +#let fa-austral-sign = fa-icon.with("\u{e0a9}") +#let fa-autoprefixer = fa-icon.with("\u{f41c}") +#let fa-avianex = fa-icon.with("\u{f374}") +#let fa-aviato = fa-icon.with("\u{f421}") +#let fa-avocado = fa-icon.with("\u{e0aa}") +#let fa-award = fa-icon.with("\u{f559}") +#let fa-award-simple = fa-icon.with("\u{e0ab}") +#let fa-aws = fa-icon.with("\u{f375}") +#let fa-axe = fa-icon.with("\u{f6b2}") +#let fa-axe-battle = fa-icon.with("\u{f6b3}") +#let fa-b = fa-icon.with("\u{42}") +#let fa-baby = fa-icon.with("\u{f77c}") +#let fa-baby-carriage = fa-icon.with("\u{f77d}") +#let fa-carriage-baby = fa-icon.with("\u{f77d}") +#let fa-backpack = fa-icon.with("\u{f5d4}") +#let fa-backward = fa-icon.with("\u{f04a}") +#let fa-backward-fast = fa-icon.with("\u{f049}") +#let fa-fast-backward = fa-icon.with("\u{f049}") +#let fa-backward-step = fa-icon.with("\u{f048}") +#let fa-step-backward = fa-icon.with("\u{f048}") +#let fa-bacon = fa-icon.with("\u{f7e5}") +#let fa-bacteria = fa-icon.with("\u{e059}") +#let fa-bacterium = fa-icon.with("\u{e05a}") +#let fa-badge = fa-icon.with("\u{f335}") +#let fa-badge-check = fa-icon.with("\u{f336}") +#let fa-badge-dollar = fa-icon.with("\u{f645}") +#let fa-badge-percent = fa-icon.with("\u{f646}") +#let fa-badger-honey = fa-icon.with("\u{f6b4}") +#let fa-badge-sheriff = fa-icon.with("\u{f8a2}") +#let fa-badminton = fa-icon.with("\u{e33a}") +#let fa-bagel = fa-icon.with("\u{e3d7}") +#let fa-bag-seedling = fa-icon.with("\u{e5f2}") +#let fa-bag-shopping = fa-icon.with("\u{f290}") +#let fa-shopping-bag = fa-icon.with("\u{f290}") +#let fa-bag-shopping-minus = fa-icon.with("\u{e650}") +#let fa-bag-shopping-plus = fa-icon.with("\u{e651}") +#let fa-bags-shopping = fa-icon.with("\u{f847}") +#let fa-baguette = fa-icon.with("\u{e3d8}") +#let fa-bahai = fa-icon.with("\u{f666}") +#let fa-haykal = fa-icon.with("\u{f666}") +#let fa-baht-sign = fa-icon.with("\u{e0ac}") +#let fa-balloon = fa-icon.with("\u{e2e3}") +#let fa-balloons = fa-icon.with("\u{e2e4}") +#let fa-ballot = fa-icon.with("\u{f732}") +#let fa-ballot-check = fa-icon.with("\u{f733}") +#let fa-ball-pile = fa-icon.with("\u{f77e}") +#let fa-ban = fa-icon.with("\u{f05e}") +#let fa-cancel = fa-icon.with("\u{f05e}") +#let fa-banana = fa-icon.with("\u{e2e5}") +#let fa-ban-bug = fa-icon.with("\u{f7f9}") +#let fa-debug = fa-icon.with("\u{f7f9}") +#let fa-bandage = fa-icon.with("\u{f462}") +#let fa-band-aid = fa-icon.with("\u{f462}") +#let fa-bandcamp = fa-icon.with("\u{f2d5}") +#let fa-bangladeshi-taka-sign = fa-icon.with("\u{e2e6}") +#let fa-banjo = fa-icon.with("\u{f8a3}") +#let fa-ban-parking = fa-icon.with("\u{f616}") +#let fa-parking-circle-slash = fa-icon.with("\u{f616}") +#let fa-ban-smoking = fa-icon.with("\u{f54d}") +#let fa-smoking-ban = fa-icon.with("\u{f54d}") +#let fa-barcode = fa-icon.with("\u{f02a}") +#let fa-barcode-read = fa-icon.with("\u{f464}") +#let fa-barcode-scan = fa-icon.with("\u{f465}") +#let fa-bars = fa-icon.with("\u{f0c9}") +#let fa-navicon = fa-icon.with("\u{f0c9}") +#let fa-bars-filter = fa-icon.with("\u{e0ad}") +#let fa-bars-progress = fa-icon.with("\u{f828}") +#let fa-tasks-alt = fa-icon.with("\u{f828}") +#let fa-bars-sort = fa-icon.with("\u{e0ae}") +#let fa-bars-staggered = fa-icon.with("\u{f550}") +#let fa-reorder = fa-icon.with("\u{f550}") +#let fa-stream = fa-icon.with("\u{f550}") +#let fa-baseball = fa-icon.with("\u{f433}") +#let fa-baseball-ball = fa-icon.with("\u{f433}") +#let fa-baseball-bat-ball = fa-icon.with("\u{f432}") +#let fa-basketball = fa-icon.with("\u{f434}") +#let fa-basketball-ball = fa-icon.with("\u{f434}") +#let fa-basketball-hoop = fa-icon.with("\u{f435}") +#let fa-basket-shopping = fa-icon.with("\u{f291}") +#let fa-shopping-basket = fa-icon.with("\u{f291}") +#let fa-basket-shopping-minus = fa-icon.with("\u{e652}") +#let fa-basket-shopping-plus = fa-icon.with("\u{e653}") +#let fa-basket-shopping-simple = fa-icon.with("\u{e0af}") +#let fa-shopping-basket-alt = fa-icon.with("\u{e0af}") +#let fa-bat = fa-icon.with("\u{f6b5}") +#let fa-bath = fa-icon.with("\u{f2cd}") +#let fa-bathtub = fa-icon.with("\u{f2cd}") +#let fa-battery-bolt = fa-icon.with("\u{f376}") +#let fa-battery-empty = fa-icon.with("\u{f244}") +#let fa-battery-0 = fa-icon.with("\u{f244}") +#let fa-battery-exclamation = fa-icon.with("\u{e0b0}") +#let fa-battery-full = fa-icon.with("\u{f240}") +#let fa-battery = fa-icon.with("\u{f240}") +#let fa-battery-5 = fa-icon.with("\u{f240}") +#let fa-battery-half = fa-icon.with("\u{f242}") +#let fa-battery-3 = fa-icon.with("\u{f242}") +#let fa-battery-low = fa-icon.with("\u{e0b1}") +#let fa-battery-1 = fa-icon.with("\u{e0b1}") +#let fa-battery-quarter = fa-icon.with("\u{f243}") +#let fa-battery-2 = fa-icon.with("\u{f243}") +#let fa-battery-slash = fa-icon.with("\u{f377}") +#let fa-battery-three-quarters = fa-icon.with("\u{f241}") +#let fa-battery-4 = fa-icon.with("\u{f241}") +#let fa-battle-net = fa-icon.with("\u{f835}") +#let fa-bed = fa-icon.with("\u{f236}") +#let fa-bed-bunk = fa-icon.with("\u{f8f8}") +#let fa-bed-empty = fa-icon.with("\u{f8f9}") +#let fa-bed-front = fa-icon.with("\u{f8f7}") +#let fa-bed-alt = fa-icon.with("\u{f8f7}") +#let fa-bed-pulse = fa-icon.with("\u{f487}") +#let fa-procedures = fa-icon.with("\u{f487}") +#let fa-bee = fa-icon.with("\u{e0b2}") +#let fa-beer-mug = fa-icon.with("\u{e0b3}") +#let fa-beer-foam = fa-icon.with("\u{e0b3}") +#let fa-beer-mug-empty = fa-icon.with("\u{f0fc}") +#let fa-beer = fa-icon.with("\u{f0fc}") +#let fa-behance = fa-icon.with("\u{f1b4}") +#let fa-bell = fa-icon.with("\u{f0f3}") +#let fa-bell-concierge = fa-icon.with("\u{f562}") +#let fa-concierge-bell = fa-icon.with("\u{f562}") +#let fa-bell-exclamation = fa-icon.with("\u{f848}") +#let fa-bell-on = fa-icon.with("\u{f8fa}") +#let fa-bell-plus = fa-icon.with("\u{f849}") +#let fa-bell-ring = fa-icon.with("\u{e62c}") +#let fa-bells = fa-icon.with("\u{f77f}") +#let fa-bell-school = fa-icon.with("\u{f5d5}") +#let fa-bell-school-slash = fa-icon.with("\u{f5d6}") +#let fa-bell-slash = fa-icon.with("\u{f1f6}") +#let fa-bench-tree = fa-icon.with("\u{e2e7}") +#let fa-bezier-curve = fa-icon.with("\u{f55b}") +#let fa-bicycle = fa-icon.with("\u{f206}") +#let fa-bilibili = fa-icon.with("\u{e3d9}") +#let fa-billboard = fa-icon.with("\u{e5cd}") +#let fa-bimobject = fa-icon.with("\u{f378}") +#let fa-binary = fa-icon.with("\u{e33b}") +#let fa-binary-circle-check = fa-icon.with("\u{e33c}") +#let fa-binary-lock = fa-icon.with("\u{e33d}") +#let fa-binary-slash = fa-icon.with("\u{e33e}") +#let fa-bin-bottles = fa-icon.with("\u{e5f5}") +#let fa-bin-bottles-recycle = fa-icon.with("\u{e5f6}") +#let fa-binoculars = fa-icon.with("\u{f1e5}") +#let fa-bin-recycle = fa-icon.with("\u{e5f7}") +#let fa-biohazard = fa-icon.with("\u{f780}") +#let fa-bird = fa-icon.with("\u{e469}") +#let fa-bitbucket = fa-icon.with("\u{f171}") +#let fa-bitcoin = fa-icon.with("\u{f379}") +#let fa-bitcoin-sign = fa-icon.with("\u{e0b4}") +#let fa-bity = fa-icon.with("\u{f37a}") +#let fa-blackberry = fa-icon.with("\u{f37b}") +#let fa-black-tie = fa-icon.with("\u{f27e}") +#let fa-blanket = fa-icon.with("\u{f498}") +#let fa-blanket-fire = fa-icon.with("\u{e3da}") +#let fa-blender = fa-icon.with("\u{f517}") +#let fa-blender-phone = fa-icon.with("\u{f6b6}") +#let fa-blinds = fa-icon.with("\u{f8fb}") +#let fa-blinds-open = fa-icon.with("\u{f8fc}") +#let fa-blinds-raised = fa-icon.with("\u{f8fd}") +#let fa-block = fa-icon.with("\u{e46a}") +#let fa-block-brick = fa-icon.with("\u{e3db}") +#let fa-wall-brick = fa-icon.with("\u{e3db}") +#let fa-block-brick-fire = fa-icon.with("\u{e3dc}") +#let fa-firewall = fa-icon.with("\u{e3dc}") +#let fa-block-question = fa-icon.with("\u{e3dd}") +#let fa-block-quote = fa-icon.with("\u{e0b5}") +#let fa-blog = fa-icon.with("\u{f781}") +#let fa-blogger = fa-icon.with("\u{f37c}") +#let fa-blogger-b = fa-icon.with("\u{f37d}") +#let fa-blueberries = fa-icon.with("\u{e2e8}") +#let fa-bluesky = fa-icon.with("\u{e671}") +#let fa-bluetooth = fa-icon.with("\u{f293}") +#let fa-bluetooth-b = fa-icon.with("\u{f294}") +#let fa-bold = fa-icon.with("\u{f032}") +#let fa-bolt = fa-icon.with("\u{f0e7}") +#let fa-zap = fa-icon.with("\u{f0e7}") +#let fa-bolt-auto = fa-icon.with("\u{e0b6}") +#let fa-bolt-lightning = fa-icon.with("\u{e0b7}") +#let fa-bolt-slash = fa-icon.with("\u{e0b8}") +#let fa-bomb = fa-icon.with("\u{f1e2}") +#let fa-bone = fa-icon.with("\u{f5d7}") +#let fa-bone-break = fa-icon.with("\u{f5d8}") +#let fa-bong = fa-icon.with("\u{f55c}") +#let fa-book = fa-icon.with("\u{f02d}") +#let fa-book-arrow-right = fa-icon.with("\u{e0b9}") +#let fa-book-arrow-up = fa-icon.with("\u{e0ba}") +#let fa-book-atlas = fa-icon.with("\u{f558}") +#let fa-atlas = fa-icon.with("\u{f558}") +#let fa-book-bible = fa-icon.with("\u{f647}") +#let fa-bible = fa-icon.with("\u{f647}") +#let fa-book-blank = fa-icon.with("\u{f5d9}") +#let fa-book-alt = fa-icon.with("\u{f5d9}") +#let fa-book-bookmark = fa-icon.with("\u{e0bb}") +#let fa-book-circle-arrow-right = fa-icon.with("\u{e0bc}") +#let fa-book-circle-arrow-up = fa-icon.with("\u{e0bd}") +#let fa-book-copy = fa-icon.with("\u{e0be}") +#let fa-book-font = fa-icon.with("\u{e0bf}") +#let fa-book-heart = fa-icon.with("\u{f499}") +#let fa-book-journal-whills = fa-icon.with("\u{f66a}") +#let fa-journal-whills = fa-icon.with("\u{f66a}") +#let fa-bookmark = fa-icon.with("\u{f02e}") +#let fa-bookmark-slash = fa-icon.with("\u{e0c2}") +#let fa-book-medical = fa-icon.with("\u{f7e6}") +#let fa-book-open = fa-icon.with("\u{f518}") +#let fa-book-open-cover = fa-icon.with("\u{e0c0}") +#let fa-book-open-alt = fa-icon.with("\u{e0c0}") +#let fa-book-open-reader = fa-icon.with("\u{f5da}") +#let fa-book-reader = fa-icon.with("\u{f5da}") +#let fa-book-quran = fa-icon.with("\u{f687}") +#let fa-quran = fa-icon.with("\u{f687}") +#let fa-books = fa-icon.with("\u{f5db}") +#let fa-book-section = fa-icon.with("\u{e0c1}") +#let fa-book-law = fa-icon.with("\u{e0c1}") +#let fa-book-skull = fa-icon.with("\u{f6b7}") +#let fa-book-dead = fa-icon.with("\u{f6b7}") +#let fa-books-medical = fa-icon.with("\u{f7e8}") +#let fa-book-sparkles = fa-icon.with("\u{f6b8}") +#let fa-book-spells = fa-icon.with("\u{f6b8}") +#let fa-book-tanakh = fa-icon.with("\u{f827}") +#let fa-tanakh = fa-icon.with("\u{f827}") +#let fa-book-user = fa-icon.with("\u{f7e7}") +#let fa-boombox = fa-icon.with("\u{f8a5}") +#let fa-boot = fa-icon.with("\u{f782}") +#let fa-booth-curtain = fa-icon.with("\u{f734}") +#let fa-boot-heeled = fa-icon.with("\u{e33f}") +#let fa-bootstrap = fa-icon.with("\u{f836}") +#let fa-border-all = fa-icon.with("\u{f84c}") +#let fa-border-bottom = fa-icon.with("\u{f84d}") +#let fa-border-bottom-right = fa-icon.with("\u{f854}") +#let fa-border-style-alt = fa-icon.with("\u{f854}") +#let fa-border-center-h = fa-icon.with("\u{f89c}") +#let fa-border-center-v = fa-icon.with("\u{f89d}") +#let fa-border-inner = fa-icon.with("\u{f84e}") +#let fa-border-left = fa-icon.with("\u{f84f}") +#let fa-border-none = fa-icon.with("\u{f850}") +#let fa-border-outer = fa-icon.with("\u{f851}") +#let fa-border-right = fa-icon.with("\u{f852}") +#let fa-border-top = fa-icon.with("\u{f855}") +#let fa-border-top-left = fa-icon.with("\u{f853}") +#let fa-border-style = fa-icon.with("\u{f853}") +#let fa-bore-hole = fa-icon.with("\u{e4c3}") +#let fa-bots = fa-icon.with("\u{e340}") +#let fa-bottle-baby = fa-icon.with("\u{e673}") +#let fa-bottle-droplet = fa-icon.with("\u{e4c4}") +#let fa-bottle-water = fa-icon.with("\u{e4c5}") +#let fa-bow-arrow = fa-icon.with("\u{f6b9}") +#let fa-bowl-chopsticks = fa-icon.with("\u{e2e9}") +#let fa-bowl-chopsticks-noodles = fa-icon.with("\u{e2ea}") +#let fa-bowl-food = fa-icon.with("\u{e4c6}") +#let fa-bowl-hot = fa-icon.with("\u{f823}") +#let fa-soup = fa-icon.with("\u{f823}") +#let fa-bowling-ball = fa-icon.with("\u{f436}") +#let fa-bowling-ball-pin = fa-icon.with("\u{e0c3}") +#let fa-bowling-pins = fa-icon.with("\u{f437}") +#let fa-bowl-rice = fa-icon.with("\u{e2eb}") +#let fa-bowl-scoop = fa-icon.with("\u{e3de}") +#let fa-bowl-shaved-ice = fa-icon.with("\u{e3de}") +#let fa-bowl-scoops = fa-icon.with("\u{e3df}") +#let fa-bowl-soft-serve = fa-icon.with("\u{e46b}") +#let fa-bowl-spoon = fa-icon.with("\u{e3e0}") +#let fa-box = fa-icon.with("\u{f466}") +#let fa-box-archive = fa-icon.with("\u{f187}") +#let fa-archive = fa-icon.with("\u{f187}") +#let fa-box-ballot = fa-icon.with("\u{f735}") +#let fa-box-check = fa-icon.with("\u{f467}") +#let fa-box-circle-check = fa-icon.with("\u{e0c4}") +#let fa-box-dollar = fa-icon.with("\u{f4a0}") +#let fa-box-usd = fa-icon.with("\u{f4a0}") +#let fa-boxes-packing = fa-icon.with("\u{e4c7}") +#let fa-boxes-stacked = fa-icon.with("\u{f468}") +#let fa-boxes = fa-icon.with("\u{f468}") +#let fa-boxes-alt = fa-icon.with("\u{f468}") +#let fa-box-heart = fa-icon.with("\u{f49d}") +#let fa-boxing-glove = fa-icon.with("\u{f438}") +#let fa-glove-boxing = fa-icon.with("\u{f438}") +#let fa-box-open = fa-icon.with("\u{f49e}") +#let fa-box-open-full = fa-icon.with("\u{f49c}") +#let fa-box-full = fa-icon.with("\u{f49c}") +#let fa-box-taped = fa-icon.with("\u{f49a}") +#let fa-box-alt = fa-icon.with("\u{f49a}") +#let fa-box-tissue = fa-icon.with("\u{e05b}") +#let fa-bracket-curly = fa-icon.with("\u{7b}") +#let fa-bracket-curly-left = fa-icon.with("\u{7b}") +#let fa-bracket-curly-right = fa-icon.with("\u{7d}") +#let fa-bracket-round = fa-icon.with("\u{28}") +#let fa-parenthesis = fa-icon.with("\u{28}") +#let fa-bracket-round-right = fa-icon.with("\u{29}") +#let fa-brackets-curly = fa-icon.with("\u{f7ea}") +#let fa-bracket-square = fa-icon.with("\u{5b}") +#let fa-bracket = fa-icon.with("\u{5b}") +#let fa-bracket-left = fa-icon.with("\u{5b}") +#let fa-bracket-square-right = fa-icon.with("\u{5d}") +#let fa-brackets-round = fa-icon.with("\u{e0c5}") +#let fa-parentheses = fa-icon.with("\u{e0c5}") +#let fa-brackets-square = fa-icon.with("\u{f7e9}") +#let fa-brackets = fa-icon.with("\u{f7e9}") +#let fa-braille = fa-icon.with("\u{f2a1}") +#let fa-brain = fa-icon.with("\u{f5dc}") +#let fa-brain-arrow-curved-right = fa-icon.with("\u{f677}") +#let fa-mind-share = fa-icon.with("\u{f677}") +#let fa-brain-circuit = fa-icon.with("\u{e0c6}") +#let fa-brake-warning = fa-icon.with("\u{e0c7}") +#let fa-brave = fa-icon.with("\u{e63c}") +#let fa-brave-reverse = fa-icon.with("\u{e63d}") +#let fa-brazilian-real-sign = fa-icon.with("\u{e46c}") +#let fa-bread-loaf = fa-icon.with("\u{f7eb}") +#let fa-bread-slice = fa-icon.with("\u{f7ec}") +#let fa-bread-slice-butter = fa-icon.with("\u{e3e1}") +#let fa-bridge = fa-icon.with("\u{e4c8}") +#let fa-bridge-circle-check = fa-icon.with("\u{e4c9}") +#let fa-bridge-circle-exclamation = fa-icon.with("\u{e4ca}") +#let fa-bridge-circle-xmark = fa-icon.with("\u{e4cb}") +#let fa-bridge-lock = fa-icon.with("\u{e4cc}") +#let fa-bridge-suspension = fa-icon.with("\u{e4cd}") +#let fa-bridge-water = fa-icon.with("\u{e4ce}") +#let fa-briefcase = fa-icon.with("\u{f0b1}") +#let fa-briefcase-arrow-right = fa-icon.with("\u{e2f2}") +#let fa-briefcase-blank = fa-icon.with("\u{e0c8}") +#let fa-briefcase-medical = fa-icon.with("\u{f469}") +#let fa-brightness = fa-icon.with("\u{e0c9}") +#let fa-brightness-low = fa-icon.with("\u{e0ca}") +#let fa-bring-forward = fa-icon.with("\u{f856}") +#let fa-bring-front = fa-icon.with("\u{f857}") +#let fa-broccoli = fa-icon.with("\u{e3e2}") +#let fa-broom = fa-icon.with("\u{f51a}") +#let fa-broom-ball = fa-icon.with("\u{f458}") +#let fa-quidditch = fa-icon.with("\u{f458}") +#let fa-quidditch-broom-ball = fa-icon.with("\u{f458}") +#let fa-broom-wide = fa-icon.with("\u{e5d1}") +#let fa-browser = fa-icon.with("\u{f37e}") +#let fa-browsers = fa-icon.with("\u{e0cb}") +#let fa-brush = fa-icon.with("\u{f55d}") +#let fa-btc = fa-icon.with("\u{f15a}") +#let fa-bucket = fa-icon.with("\u{e4cf}") +#let fa-buffer = fa-icon.with("\u{f837}") +#let fa-bug = fa-icon.with("\u{f188}") +#let fa-bugs = fa-icon.with("\u{e4d0}") +#let fa-bug-slash = fa-icon.with("\u{e490}") +#let fa-building = fa-icon.with("\u{f1ad}") +#let fa-building-circle-arrow-right = fa-icon.with("\u{e4d1}") +#let fa-building-circle-check = fa-icon.with("\u{e4d2}") +#let fa-building-circle-exclamation = fa-icon.with("\u{e4d3}") +#let fa-building-circle-xmark = fa-icon.with("\u{e4d4}") +#let fa-building-columns = fa-icon.with("\u{f19c}") +#let fa-bank = fa-icon.with("\u{f19c}") +#let fa-institution = fa-icon.with("\u{f19c}") +#let fa-museum = fa-icon.with("\u{f19c}") +#let fa-university = fa-icon.with("\u{f19c}") +#let fa-building-flag = fa-icon.with("\u{e4d5}") +#let fa-building-lock = fa-icon.with("\u{e4d6}") +#let fa-building-magnifying-glass = fa-icon.with("\u{e61c}") +#let fa-building-memo = fa-icon.with("\u{e61e}") +#let fa-building-ngo = fa-icon.with("\u{e4d7}") +#let fa-buildings = fa-icon.with("\u{e0cc}") +#let fa-building-shield = fa-icon.with("\u{e4d8}") +#let fa-building-un = fa-icon.with("\u{e4d9}") +#let fa-building-user = fa-icon.with("\u{e4da}") +#let fa-building-wheat = fa-icon.with("\u{e4db}") +#let fa-bulldozer = fa-icon.with("\u{e655}") +#let fa-bullhorn = fa-icon.with("\u{f0a1}") +#let fa-bullseye = fa-icon.with("\u{f140}") +#let fa-bullseye-arrow = fa-icon.with("\u{f648}") +#let fa-bullseye-pointer = fa-icon.with("\u{f649}") +#let fa-buoy = fa-icon.with("\u{e5b5}") +#let fa-buoy-mooring = fa-icon.with("\u{e5b6}") +#let fa-burger = fa-icon.with("\u{f805}") +#let fa-hamburger = fa-icon.with("\u{f805}") +#let fa-burger-cheese = fa-icon.with("\u{f7f1}") +#let fa-cheeseburger = fa-icon.with("\u{f7f1}") +#let fa-burger-fries = fa-icon.with("\u{e0cd}") +#let fa-burger-glass = fa-icon.with("\u{e0ce}") +#let fa-burger-lettuce = fa-icon.with("\u{e3e3}") +#let fa-burger-soda = fa-icon.with("\u{f858}") +#let fa-buromobelexperte = fa-icon.with("\u{f37f}") +#let fa-burrito = fa-icon.with("\u{f7ed}") +#let fa-burst = fa-icon.with("\u{e4dc}") +#let fa-bus = fa-icon.with("\u{f207}") +#let fa-business-time = fa-icon.with("\u{f64a}") +#let fa-briefcase-clock = fa-icon.with("\u{f64a}") +#let fa-bus-school = fa-icon.with("\u{f5dd}") +#let fa-bus-simple = fa-icon.with("\u{f55e}") +#let fa-bus-alt = fa-icon.with("\u{f55e}") +#let fa-butter = fa-icon.with("\u{e3e4}") +#let fa-buy-n-large = fa-icon.with("\u{f8a6}") +#let fa-buysellads = fa-icon.with("\u{f20d}") +#let fa-c = fa-icon.with("\u{43}") +#let fa-cabin = fa-icon.with("\u{e46d}") +#let fa-cabinet-filing = fa-icon.with("\u{f64b}") +#let fa-cable-car = fa-icon.with("\u{f7da}") +#let fa-tram = fa-icon.with("\u{f7da}") +#let fa-cactus = fa-icon.with("\u{f8a7}") +#let fa-caduceus = fa-icon.with("\u{e681}") +#let fa-cake-candles = fa-icon.with("\u{f1fd}") +#let fa-birthday-cake = fa-icon.with("\u{f1fd}") +#let fa-cake = fa-icon.with("\u{f1fd}") +#let fa-cake-slice = fa-icon.with("\u{e3e5}") +#let fa-shortcake = fa-icon.with("\u{e3e5}") +#let fa-calculator = fa-icon.with("\u{f1ec}") +#let fa-calculator-simple = fa-icon.with("\u{f64c}") +#let fa-calculator-alt = fa-icon.with("\u{f64c}") +#let fa-calendar = fa-icon.with("\u{f133}") +#let fa-calendar-arrow-down = fa-icon.with("\u{e0d0}") +#let fa-calendar-download = fa-icon.with("\u{e0d0}") +#let fa-calendar-arrow-up = fa-icon.with("\u{e0d1}") +#let fa-calendar-upload = fa-icon.with("\u{e0d1}") +#let fa-calendar-check = fa-icon.with("\u{f274}") +#let fa-calendar-circle-exclamation = fa-icon.with("\u{e46e}") +#let fa-calendar-circle-minus = fa-icon.with("\u{e46f}") +#let fa-calendar-circle-plus = fa-icon.with("\u{e470}") +#let fa-calendar-circle-user = fa-icon.with("\u{e471}") +#let fa-calendar-clock = fa-icon.with("\u{e0d2}") +#let fa-calendar-time = fa-icon.with("\u{e0d2}") +#let fa-calendar-day = fa-icon.with("\u{f783}") +#let fa-calendar-days = fa-icon.with("\u{f073}") +#let fa-calendar-alt = fa-icon.with("\u{f073}") +#let fa-calendar-exclamation = fa-icon.with("\u{f334}") +#let fa-calendar-heart = fa-icon.with("\u{e0d3}") +#let fa-calendar-image = fa-icon.with("\u{e0d4}") +#let fa-calendar-lines = fa-icon.with("\u{e0d5}") +#let fa-calendar-note = fa-icon.with("\u{e0d5}") +#let fa-calendar-lines-pen = fa-icon.with("\u{e472}") +#let fa-calendar-minus = fa-icon.with("\u{f272}") +#let fa-calendar-pen = fa-icon.with("\u{f333}") +#let fa-calendar-edit = fa-icon.with("\u{f333}") +#let fa-calendar-plus = fa-icon.with("\u{f271}") +#let fa-calendar-range = fa-icon.with("\u{e0d6}") +#let fa-calendars = fa-icon.with("\u{e0d7}") +#let fa-calendar-star = fa-icon.with("\u{f736}") +#let fa-calendar-users = fa-icon.with("\u{e5e2}") +#let fa-calendar-week = fa-icon.with("\u{f784}") +#let fa-calendar-xmark = fa-icon.with("\u{f273}") +#let fa-calendar-times = fa-icon.with("\u{f273}") +#let fa-camcorder = fa-icon.with("\u{f8a8}") +#let fa-video-handheld = fa-icon.with("\u{f8a8}") +#let fa-camera = fa-icon.with("\u{f030}") +#let fa-camera-alt = fa-icon.with("\u{f030}") +#let fa-camera-cctv = fa-icon.with("\u{f8ac}") +#let fa-cctv = fa-icon.with("\u{f8ac}") +#let fa-camera-movie = fa-icon.with("\u{f8a9}") +#let fa-camera-polaroid = fa-icon.with("\u{f8aa}") +#let fa-camera-retro = fa-icon.with("\u{f083}") +#let fa-camera-rotate = fa-icon.with("\u{e0d8}") +#let fa-camera-security = fa-icon.with("\u{f8fe}") +#let fa-camera-home = fa-icon.with("\u{f8fe}") +#let fa-camera-slash = fa-icon.with("\u{e0d9}") +#let fa-camera-viewfinder = fa-icon.with("\u{e0da}") +#let fa-screenshot = fa-icon.with("\u{e0da}") +#let fa-camera-web = fa-icon.with("\u{f832}") +#let fa-webcam = fa-icon.with("\u{f832}") +#let fa-camera-web-slash = fa-icon.with("\u{f833}") +#let fa-webcam-slash = fa-icon.with("\u{f833}") +#let fa-campfire = fa-icon.with("\u{f6ba}") +#let fa-campground = fa-icon.with("\u{f6bb}") +#let fa-canadian-maple-leaf = fa-icon.with("\u{f785}") +#let fa-candle-holder = fa-icon.with("\u{f6bc}") +#let fa-candy = fa-icon.with("\u{e3e7}") +#let fa-candy-bar = fa-icon.with("\u{e3e8}") +#let fa-chocolate-bar = fa-icon.with("\u{e3e8}") +#let fa-candy-cane = fa-icon.with("\u{f786}") +#let fa-candy-corn = fa-icon.with("\u{f6bd}") +#let fa-can-food = fa-icon.with("\u{e3e6}") +#let fa-cannabis = fa-icon.with("\u{f55f}") +#let fa-cannon = fa-icon.with("\u{e642}") +#let fa-capsules = fa-icon.with("\u{f46b}") +#let fa-car = fa-icon.with("\u{f1b9}") +#let fa-automobile = fa-icon.with("\u{f1b9}") +#let fa-caravan = fa-icon.with("\u{f8ff}") +#let fa-caravan-simple = fa-icon.with("\u{e000}") +#let fa-caravan-alt = fa-icon.with("\u{e000}") +#let fa-car-battery = fa-icon.with("\u{f5df}") +#let fa-battery-car = fa-icon.with("\u{f5df}") +#let fa-car-bolt = fa-icon.with("\u{e341}") +#let fa-car-building = fa-icon.with("\u{f859}") +#let fa-car-bump = fa-icon.with("\u{f5e0}") +#let fa-car-burst = fa-icon.with("\u{f5e1}") +#let fa-car-crash = fa-icon.with("\u{f5e1}") +#let fa-car-bus = fa-icon.with("\u{f85a}") +#let fa-car-circle-bolt = fa-icon.with("\u{e342}") +#let fa-card-club = fa-icon.with("\u{e3e9}") +#let fa-card-diamond = fa-icon.with("\u{e3ea}") +#let fa-card-heart = fa-icon.with("\u{e3eb}") +#let fa-cards = fa-icon.with("\u{e3ed}") +#let fa-cards-blank = fa-icon.with("\u{e4df}") +#let fa-card-spade = fa-icon.with("\u{e3ec}") +#let fa-caret-down = fa-icon.with("\u{f0d7}") +#let fa-caret-left = fa-icon.with("\u{f0d9}") +#let fa-caret-right = fa-icon.with("\u{f0da}") +#let fa-caret-up = fa-icon.with("\u{f0d8}") +#let fa-car-garage = fa-icon.with("\u{f5e2}") +#let fa-car-mirrors = fa-icon.with("\u{e343}") +#let fa-car-on = fa-icon.with("\u{e4dd}") +#let fa-car-rear = fa-icon.with("\u{f5de}") +#let fa-car-alt = fa-icon.with("\u{f5de}") +#let fa-carrot = fa-icon.with("\u{f787}") +#let fa-cars = fa-icon.with("\u{f85b}") +#let fa-car-side = fa-icon.with("\u{f5e4}") +#let fa-car-side-bolt = fa-icon.with("\u{e344}") +#let fa-cart-arrow-down = fa-icon.with("\u{f218}") +#let fa-cart-arrow-up = fa-icon.with("\u{e3ee}") +#let fa-cart-circle-arrow-down = fa-icon.with("\u{e3ef}") +#let fa-cart-circle-arrow-up = fa-icon.with("\u{e3f0}") +#let fa-cart-circle-check = fa-icon.with("\u{e3f1}") +#let fa-cart-circle-exclamation = fa-icon.with("\u{e3f2}") +#let fa-cart-circle-plus = fa-icon.with("\u{e3f3}") +#let fa-cart-circle-xmark = fa-icon.with("\u{e3f4}") +#let fa-cart-flatbed = fa-icon.with("\u{f474}") +#let fa-dolly-flatbed = fa-icon.with("\u{f474}") +#let fa-cart-flatbed-boxes = fa-icon.with("\u{f475}") +#let fa-dolly-flatbed-alt = fa-icon.with("\u{f475}") +#let fa-cart-flatbed-empty = fa-icon.with("\u{f476}") +#let fa-dolly-flatbed-empty = fa-icon.with("\u{f476}") +#let fa-cart-flatbed-suitcase = fa-icon.with("\u{f59d}") +#let fa-luggage-cart = fa-icon.with("\u{f59d}") +#let fa-car-tilt = fa-icon.with("\u{f5e5}") +#let fa-cart-minus = fa-icon.with("\u{e0db}") +#let fa-cart-plus = fa-icon.with("\u{f217}") +#let fa-cart-shopping = fa-icon.with("\u{f07a}") +#let fa-shopping-cart = fa-icon.with("\u{f07a}") +#let fa-cart-shopping-fast = fa-icon.with("\u{e0dc}") +#let fa-car-tunnel = fa-icon.with("\u{e4de}") +#let fa-cart-xmark = fa-icon.with("\u{e0dd}") +#let fa-car-wash = fa-icon.with("\u{f5e6}") +#let fa-car-wrench = fa-icon.with("\u{f5e3}") +#let fa-car-mechanic = fa-icon.with("\u{f5e3}") +#let fa-cash-register = fa-icon.with("\u{f788}") +#let fa-cassette-betamax = fa-icon.with("\u{f8a4}") +#let fa-betamax = fa-icon.with("\u{f8a4}") +#let fa-cassette-tape = fa-icon.with("\u{f8ab}") +#let fa-cassette-vhs = fa-icon.with("\u{f8ec}") +#let fa-vhs = fa-icon.with("\u{f8ec}") +#let fa-castle = fa-icon.with("\u{e0de}") +#let fa-cat = fa-icon.with("\u{f6be}") +#let fa-cat-space = fa-icon.with("\u{e001}") +#let fa-cauldron = fa-icon.with("\u{f6bf}") +#let fa-cc-amazon-pay = fa-icon.with("\u{f42d}") +#let fa-cc-amex = fa-icon.with("\u{f1f3}") +#let fa-cc-apple-pay = fa-icon.with("\u{f416}") +#let fa-cc-diners-club = fa-icon.with("\u{f24c}") +#let fa-cc-discover = fa-icon.with("\u{f1f2}") +#let fa-cc-jcb = fa-icon.with("\u{f24b}") +#let fa-cc-mastercard = fa-icon.with("\u{f1f1}") +#let fa-cc-paypal = fa-icon.with("\u{f1f4}") +#let fa-cc-stripe = fa-icon.with("\u{f1f5}") +#let fa-cc-visa = fa-icon.with("\u{f1f0}") +#let fa-cedi-sign = fa-icon.with("\u{e0df}") +#let fa-centercode = fa-icon.with("\u{f380}") +#let fa-centos = fa-icon.with("\u{f789}") +#let fa-cent-sign = fa-icon.with("\u{e3f5}") +#let fa-certificate = fa-icon.with("\u{f0a3}") +#let fa-chair = fa-icon.with("\u{f6c0}") +#let fa-chair-office = fa-icon.with("\u{f6c1}") +#let fa-chalkboard = fa-icon.with("\u{f51b}") +#let fa-blackboard = fa-icon.with("\u{f51b}") +#let fa-chalkboard-user = fa-icon.with("\u{f51c}") +#let fa-chalkboard-teacher = fa-icon.with("\u{f51c}") +#let fa-champagne-glass = fa-icon.with("\u{f79e}") +#let fa-glass-champagne = fa-icon.with("\u{f79e}") +#let fa-champagne-glasses = fa-icon.with("\u{f79f}") +#let fa-glass-cheers = fa-icon.with("\u{f79f}") +#let fa-charging-station = fa-icon.with("\u{f5e7}") +#let fa-chart-area = fa-icon.with("\u{f1fe}") +#let fa-area-chart = fa-icon.with("\u{f1fe}") +#let fa-chart-bar = fa-icon.with("\u{f080}") +#let fa-bar-chart = fa-icon.with("\u{f080}") +#let fa-chart-bullet = fa-icon.with("\u{e0e1}") +#let fa-chart-candlestick = fa-icon.with("\u{e0e2}") +#let fa-chart-column = fa-icon.with("\u{e0e3}") +#let fa-chart-gantt = fa-icon.with("\u{e0e4}") +#let fa-chart-kanban = fa-icon.with("\u{e64f}") +#let fa-chart-line = fa-icon.with("\u{f201}") +#let fa-line-chart = fa-icon.with("\u{f201}") +#let fa-chart-line-down = fa-icon.with("\u{f64d}") +#let fa-chart-line-up = fa-icon.with("\u{e0e5}") +#let fa-chart-line-up-down = fa-icon.with("\u{e5d7}") +#let fa-chart-mixed = fa-icon.with("\u{f643}") +#let fa-analytics = fa-icon.with("\u{f643}") +#let fa-chart-mixed-up-circle-currency = fa-icon.with("\u{e5d8}") +#let fa-chart-mixed-up-circle-dollar = fa-icon.with("\u{e5d9}") +#let fa-chart-network = fa-icon.with("\u{f78a}") +#let fa-chart-pie = fa-icon.with("\u{f200}") +#let fa-pie-chart = fa-icon.with("\u{f200}") +#let fa-chart-pie-simple = fa-icon.with("\u{f64e}") +#let fa-chart-pie-alt = fa-icon.with("\u{f64e}") +#let fa-chart-pie-simple-circle-currency = fa-icon.with("\u{e604}") +#let fa-chart-pie-simple-circle-dollar = fa-icon.with("\u{e605}") +#let fa-chart-pyramid = fa-icon.with("\u{e0e6}") +#let fa-chart-radar = fa-icon.with("\u{e0e7}") +#let fa-chart-scatter = fa-icon.with("\u{f7ee}") +#let fa-chart-scatter-3d = fa-icon.with("\u{e0e8}") +#let fa-chart-scatter-bubble = fa-icon.with("\u{e0e9}") +#let fa-chart-simple = fa-icon.with("\u{e473}") +#let fa-chart-simple-horizontal = fa-icon.with("\u{e474}") +#let fa-chart-tree-map = fa-icon.with("\u{e0ea}") +#let fa-chart-user = fa-icon.with("\u{f6a3}") +#let fa-user-chart = fa-icon.with("\u{f6a3}") +#let fa-chart-waterfall = fa-icon.with("\u{e0eb}") +#let fa-check = fa-icon.with("\u{f00c}") +#let fa-check-double = fa-icon.with("\u{f560}") +#let fa-check-to-slot = fa-icon.with("\u{f772}") +#let fa-vote-yea = fa-icon.with("\u{f772}") +#let fa-cheese = fa-icon.with("\u{f7ef}") +#let fa-cheese-swiss = fa-icon.with("\u{f7f0}") +#let fa-cherries = fa-icon.with("\u{e0ec}") +#let fa-chess = fa-icon.with("\u{f439}") +#let fa-chess-bishop = fa-icon.with("\u{f43a}") +#let fa-chess-bishop-piece = fa-icon.with("\u{f43b}") +#let fa-chess-bishop-alt = fa-icon.with("\u{f43b}") +#let fa-chess-board = fa-icon.with("\u{f43c}") +#let fa-chess-clock = fa-icon.with("\u{f43d}") +#let fa-chess-clock-flip = fa-icon.with("\u{f43e}") +#let fa-chess-clock-alt = fa-icon.with("\u{f43e}") +#let fa-chess-king = fa-icon.with("\u{f43f}") +#let fa-chess-king-piece = fa-icon.with("\u{f440}") +#let fa-chess-king-alt = fa-icon.with("\u{f440}") +#let fa-chess-knight = fa-icon.with("\u{f441}") +#let fa-chess-knight-piece = fa-icon.with("\u{f442}") +#let fa-chess-knight-alt = fa-icon.with("\u{f442}") +#let fa-chess-pawn = fa-icon.with("\u{f443}") +#let fa-chess-pawn-piece = fa-icon.with("\u{f444}") +#let fa-chess-pawn-alt = fa-icon.with("\u{f444}") +#let fa-chess-queen = fa-icon.with("\u{f445}") +#let fa-chess-queen-piece = fa-icon.with("\u{f446}") +#let fa-chess-queen-alt = fa-icon.with("\u{f446}") +#let fa-chess-rook = fa-icon.with("\u{f447}") +#let fa-chess-rook-piece = fa-icon.with("\u{f448}") +#let fa-chess-rook-alt = fa-icon.with("\u{f448}") +#let fa-chestnut = fa-icon.with("\u{e3f6}") +#let fa-chevron-down = fa-icon.with("\u{f078}") +#let fa-chevron-left = fa-icon.with("\u{f053}") +#let fa-chevron-right = fa-icon.with("\u{f054}") +#let fa-chevrons-down = fa-icon.with("\u{f322}") +#let fa-chevron-double-down = fa-icon.with("\u{f322}") +#let fa-chevrons-left = fa-icon.with("\u{f323}") +#let fa-chevron-double-left = fa-icon.with("\u{f323}") +#let fa-chevrons-right = fa-icon.with("\u{f324}") +#let fa-chevron-double-right = fa-icon.with("\u{f324}") +#let fa-chevrons-up = fa-icon.with("\u{f325}") +#let fa-chevron-double-up = fa-icon.with("\u{f325}") +#let fa-chevron-up = fa-icon.with("\u{f077}") +#let fa-chf-sign = fa-icon.with("\u{e602}") +#let fa-child = fa-icon.with("\u{f1ae}") +#let fa-child-combatant = fa-icon.with("\u{e4e0}") +#let fa-child-rifle = fa-icon.with("\u{e4e0}") +#let fa-child-dress = fa-icon.with("\u{e59c}") +#let fa-child-reaching = fa-icon.with("\u{e59d}") +#let fa-children = fa-icon.with("\u{e4e1}") +#let fa-chimney = fa-icon.with("\u{f78b}") +#let fa-chopsticks = fa-icon.with("\u{e3f7}") +#let fa-chrome = fa-icon.with("\u{f268}") +#let fa-chromecast = fa-icon.with("\u{f838}") +#let fa-church = fa-icon.with("\u{f51d}") +#let fa-circle = fa-icon.with("\u{f111}") +#let fa-circle-0 = fa-icon.with("\u{e0ed}") +#let fa-circle-1 = fa-icon.with("\u{e0ee}") +#let fa-circle-2 = fa-icon.with("\u{e0ef}") +#let fa-circle-3 = fa-icon.with("\u{e0f0}") +#let fa-circle-4 = fa-icon.with("\u{e0f1}") +#let fa-circle-5 = fa-icon.with("\u{e0f2}") +#let fa-circle-6 = fa-icon.with("\u{e0f3}") +#let fa-circle-7 = fa-icon.with("\u{e0f4}") +#let fa-circle-8 = fa-icon.with("\u{e0f5}") +#let fa-circle-9 = fa-icon.with("\u{e0f6}") +#let fa-circle-a = fa-icon.with("\u{e0f7}") +#let fa-circle-ampersand = fa-icon.with("\u{e0f8}") +#let fa-circle-arrow-down = fa-icon.with("\u{f0ab}") +#let fa-arrow-circle-down = fa-icon.with("\u{f0ab}") +#let fa-circle-arrow-down-left = fa-icon.with("\u{e0f9}") +#let fa-circle-arrow-down-right = fa-icon.with("\u{e0fa}") +#let fa-circle-arrow-left = fa-icon.with("\u{f0a8}") +#let fa-arrow-circle-left = fa-icon.with("\u{f0a8}") +#let fa-circle-arrow-right = fa-icon.with("\u{f0a9}") +#let fa-arrow-circle-right = fa-icon.with("\u{f0a9}") +#let fa-circle-arrow-up = fa-icon.with("\u{f0aa}") +#let fa-arrow-circle-up = fa-icon.with("\u{f0aa}") +#let fa-circle-arrow-up-left = fa-icon.with("\u{e0fb}") +#let fa-circle-arrow-up-right = fa-icon.with("\u{e0fc}") +#let fa-circle-b = fa-icon.with("\u{e0fd}") +#let fa-circle-bolt = fa-icon.with("\u{e0fe}") +#let fa-circle-bookmark = fa-icon.with("\u{e100}") +#let fa-bookmark-circle = fa-icon.with("\u{e100}") +#let fa-circle-book-open = fa-icon.with("\u{e0ff}") +#let fa-book-circle = fa-icon.with("\u{e0ff}") +#let fa-circle-c = fa-icon.with("\u{e101}") +#let fa-circle-calendar = fa-icon.with("\u{e102}") +#let fa-calendar-circle = fa-icon.with("\u{e102}") +#let fa-circle-camera = fa-icon.with("\u{e103}") +#let fa-camera-circle = fa-icon.with("\u{e103}") +#let fa-circle-caret-down = fa-icon.with("\u{f32d}") +#let fa-caret-circle-down = fa-icon.with("\u{f32d}") +#let fa-circle-caret-left = fa-icon.with("\u{f32e}") +#let fa-caret-circle-left = fa-icon.with("\u{f32e}") +#let fa-circle-caret-right = fa-icon.with("\u{f330}") +#let fa-caret-circle-right = fa-icon.with("\u{f330}") +#let fa-circle-caret-up = fa-icon.with("\u{f331}") +#let fa-caret-circle-up = fa-icon.with("\u{f331}") +#let fa-circle-check = fa-icon.with("\u{f058}") +#let fa-check-circle = fa-icon.with("\u{f058}") +#let fa-circle-chevron-down = fa-icon.with("\u{f13a}") +#let fa-chevron-circle-down = fa-icon.with("\u{f13a}") +#let fa-circle-chevron-left = fa-icon.with("\u{f137}") +#let fa-chevron-circle-left = fa-icon.with("\u{f137}") +#let fa-circle-chevron-right = fa-icon.with("\u{f138}") +#let fa-chevron-circle-right = fa-icon.with("\u{f138}") +#let fa-circle-chevron-up = fa-icon.with("\u{f139}") +#let fa-chevron-circle-up = fa-icon.with("\u{f139}") +#let fa-circle-d = fa-icon.with("\u{e104}") +#let fa-circle-dashed = fa-icon.with("\u{e105}") +#let fa-circle-divide = fa-icon.with("\u{e106}") +#let fa-circle-dollar = fa-icon.with("\u{f2e8}") +#let fa-dollar-circle = fa-icon.with("\u{f2e8}") +#let fa-usd-circle = fa-icon.with("\u{f2e8}") +#let fa-circle-dollar-to-slot = fa-icon.with("\u{f4b9}") +#let fa-donate = fa-icon.with("\u{f4b9}") +#let fa-circle-dot = fa-icon.with("\u{f192}") +#let fa-dot-circle = fa-icon.with("\u{f192}") +#let fa-circle-down = fa-icon.with("\u{f358}") +#let fa-arrow-alt-circle-down = fa-icon.with("\u{f358}") +#let fa-circle-down-left = fa-icon.with("\u{e107}") +#let fa-circle-down-right = fa-icon.with("\u{e108}") +#let fa-circle-e = fa-icon.with("\u{e109}") +#let fa-circle-ellipsis = fa-icon.with("\u{e10a}") +#let fa-circle-ellipsis-vertical = fa-icon.with("\u{e10b}") +#let fa-circle-envelope = fa-icon.with("\u{e10c}") +#let fa-envelope-circle = fa-icon.with("\u{e10c}") +#let fa-circle-euro = fa-icon.with("\u{e5ce}") +#let fa-circle-exclamation = fa-icon.with("\u{f06a}") +#let fa-exclamation-circle = fa-icon.with("\u{f06a}") +#let fa-circle-exclamation-check = fa-icon.with("\u{e10d}") +#let fa-circle-f = fa-icon.with("\u{e10e}") +#let fa-circle-g = fa-icon.with("\u{e10f}") +#let fa-circle-gf = fa-icon.with("\u{e67f}") +#let fa-circle-h = fa-icon.with("\u{f47e}") +#let fa-hospital-symbol = fa-icon.with("\u{f47e}") +#let fa-circle-half = fa-icon.with("\u{e110}") +#let fa-circle-half-stroke = fa-icon.with("\u{f042}") +#let fa-adjust = fa-icon.with("\u{f042}") +#let fa-circle-heart = fa-icon.with("\u{f4c7}") +#let fa-heart-circle = fa-icon.with("\u{f4c7}") +#let fa-circle-i = fa-icon.with("\u{e111}") +#let fa-circle-info = fa-icon.with("\u{f05a}") +#let fa-info-circle = fa-icon.with("\u{f05a}") +#let fa-circle-j = fa-icon.with("\u{e112}") +#let fa-circle-k = fa-icon.with("\u{e113}") +#let fa-circle-l = fa-icon.with("\u{e114}") +#let fa-circle-left = fa-icon.with("\u{f359}") +#let fa-arrow-alt-circle-left = fa-icon.with("\u{f359}") +#let fa-circle-location-arrow = fa-icon.with("\u{f602}") +#let fa-location-circle = fa-icon.with("\u{f602}") +#let fa-circle-m = fa-icon.with("\u{e115}") +#let fa-circle-microphone = fa-icon.with("\u{e116}") +#let fa-microphone-circle = fa-icon.with("\u{e116}") +#let fa-circle-microphone-lines = fa-icon.with("\u{e117}") +#let fa-microphone-circle-alt = fa-icon.with("\u{e117}") +#let fa-circle-minus = fa-icon.with("\u{f056}") +#let fa-minus-circle = fa-icon.with("\u{f056}") +#let fa-circle-n = fa-icon.with("\u{e118}") +#let fa-circle-nodes = fa-icon.with("\u{e4e2}") +#let fa-circle-notch = fa-icon.with("\u{f1ce}") +#let fa-circle-o = fa-icon.with("\u{e119}") +#let fa-circle-p = fa-icon.with("\u{e11a}") +#let fa-circle-parking = fa-icon.with("\u{f615}") +#let fa-parking-circle = fa-icon.with("\u{f615}") +#let fa-circle-pause = fa-icon.with("\u{f28b}") +#let fa-pause-circle = fa-icon.with("\u{f28b}") +#let fa-circle-phone = fa-icon.with("\u{e11b}") +#let fa-phone-circle = fa-icon.with("\u{e11b}") +#let fa-circle-phone-flip = fa-icon.with("\u{e11c}") +#let fa-phone-circle-alt = fa-icon.with("\u{e11c}") +#let fa-circle-phone-hangup = fa-icon.with("\u{e11d}") +#let fa-phone-circle-down = fa-icon.with("\u{e11d}") +#let fa-circle-play = fa-icon.with("\u{f144}") +#let fa-play-circle = fa-icon.with("\u{f144}") +#let fa-circle-plus = fa-icon.with("\u{f055}") +#let fa-plus-circle = fa-icon.with("\u{f055}") +#let fa-circle-q = fa-icon.with("\u{e11e}") +#let fa-circle-quarter = fa-icon.with("\u{e11f}") +#let fa-circle-quarters = fa-icon.with("\u{e3f8}") +#let fa-circle-quarter-stroke = fa-icon.with("\u{e5d3}") +#let fa-circle-question = fa-icon.with("\u{f059}") +#let fa-question-circle = fa-icon.with("\u{f059}") +#let fa-circle-r = fa-icon.with("\u{e120}") +#let fa-circle-radiation = fa-icon.with("\u{f7ba}") +#let fa-radiation-alt = fa-icon.with("\u{f7ba}") +#let fa-circle-right = fa-icon.with("\u{f35a}") +#let fa-arrow-alt-circle-right = fa-icon.with("\u{f35a}") +#let fa-circle-s = fa-icon.with("\u{e121}") +#let fa-circle-small = fa-icon.with("\u{e122}") +#let fa-circle-sort = fa-icon.with("\u{e030}") +#let fa-sort-circle = fa-icon.with("\u{e030}") +#let fa-circle-sort-down = fa-icon.with("\u{e031}") +#let fa-sort-circle-down = fa-icon.with("\u{e031}") +#let fa-circle-sort-up = fa-icon.with("\u{e032}") +#let fa-sort-circle-up = fa-icon.with("\u{e032}") +#let fa-circles-overlap = fa-icon.with("\u{e600}") +#let fa-circle-star = fa-icon.with("\u{e123}") +#let fa-star-circle = fa-icon.with("\u{e123}") +#let fa-circle-sterling = fa-icon.with("\u{e5cf}") +#let fa-circle-stop = fa-icon.with("\u{f28d}") +#let fa-stop-circle = fa-icon.with("\u{f28d}") +#let fa-circle-t = fa-icon.with("\u{e124}") +#let fa-circle-three-quarters = fa-icon.with("\u{e125}") +#let fa-circle-three-quarters-stroke = fa-icon.with("\u{e5d4}") +#let fa-circle-trash = fa-icon.with("\u{e126}") +#let fa-trash-circle = fa-icon.with("\u{e126}") +#let fa-circle-u = fa-icon.with("\u{e127}") +#let fa-circle-up = fa-icon.with("\u{f35b}") +#let fa-arrow-alt-circle-up = fa-icon.with("\u{f35b}") +#let fa-circle-up-left = fa-icon.with("\u{e128}") +#let fa-circle-up-right = fa-icon.with("\u{e129}") +#let fa-circle-user = fa-icon.with("\u{f2bd}") +#let fa-user-circle = fa-icon.with("\u{f2bd}") +#let fa-circle-v = fa-icon.with("\u{e12a}") +#let fa-circle-video = fa-icon.with("\u{e12b}") +#let fa-video-circle = fa-icon.with("\u{e12b}") +#let fa-circle-w = fa-icon.with("\u{e12c}") +#let fa-circle-waveform-lines = fa-icon.with("\u{e12d}") +#let fa-waveform-circle = fa-icon.with("\u{e12d}") +#let fa-circle-wifi = fa-icon.with("\u{e67d}") +#let fa-circle-wifi-circle-wifi = fa-icon.with("\u{e67e}") +#let fa-circle-wifi-group = fa-icon.with("\u{e67e}") +#let fa-circle-x = fa-icon.with("\u{e12e}") +#let fa-circle-xmark = fa-icon.with("\u{f057}") +#let fa-times-circle = fa-icon.with("\u{f057}") +#let fa-xmark-circle = fa-icon.with("\u{f057}") +#let fa-circle-y = fa-icon.with("\u{e12f}") +#let fa-circle-yen = fa-icon.with("\u{e5d0}") +#let fa-circle-z = fa-icon.with("\u{e130}") +#let fa-citrus = fa-icon.with("\u{e2f4}") +#let fa-citrus-slice = fa-icon.with("\u{e2f5}") +#let fa-city = fa-icon.with("\u{f64f}") +#let fa-clapperboard = fa-icon.with("\u{e131}") +#let fa-clapperboard-play = fa-icon.with("\u{e132}") +#let fa-clarinet = fa-icon.with("\u{f8ad}") +#let fa-claw-marks = fa-icon.with("\u{f6c2}") +#let fa-clipboard = fa-icon.with("\u{f328}") +#let fa-clipboard-check = fa-icon.with("\u{f46c}") +#let fa-clipboard-list = fa-icon.with("\u{f46d}") +#let fa-clipboard-list-check = fa-icon.with("\u{f737}") +#let fa-clipboard-medical = fa-icon.with("\u{e133}") +#let fa-clipboard-prescription = fa-icon.with("\u{f5e8}") +#let fa-clipboard-question = fa-icon.with("\u{e4e3}") +#let fa-clipboard-user = fa-icon.with("\u{f7f3}") +#let fa-clock = fa-icon.with("\u{f017}") +#let fa-clock-four = fa-icon.with("\u{f017}") +#let fa-clock-desk = fa-icon.with("\u{e134}") +#let fa-clock-eight = fa-icon.with("\u{e345}") +#let fa-clock-eight-thirty = fa-icon.with("\u{e346}") +#let fa-clock-eleven = fa-icon.with("\u{e347}") +#let fa-clock-eleven-thirty = fa-icon.with("\u{e348}") +#let fa-clock-five = fa-icon.with("\u{e349}") +#let fa-clock-five-thirty = fa-icon.with("\u{e34a}") +#let fa-clock-four-thirty = fa-icon.with("\u{e34b}") +#let fa-clock-nine = fa-icon.with("\u{e34c}") +#let fa-clock-nine-thirty = fa-icon.with("\u{e34d}") +#let fa-clock-one = fa-icon.with("\u{e34e}") +#let fa-clock-one-thirty = fa-icon.with("\u{e34f}") +#let fa-clock-rotate-left = fa-icon.with("\u{f1da}") +#let fa-history = fa-icon.with("\u{f1da}") +#let fa-clock-seven = fa-icon.with("\u{e350}") +#let fa-clock-seven-thirty = fa-icon.with("\u{e351}") +#let fa-clock-six = fa-icon.with("\u{e352}") +#let fa-clock-six-thirty = fa-icon.with("\u{e353}") +#let fa-clock-ten = fa-icon.with("\u{e354}") +#let fa-clock-ten-thirty = fa-icon.with("\u{e355}") +#let fa-clock-three = fa-icon.with("\u{e356}") +#let fa-clock-three-thirty = fa-icon.with("\u{e357}") +#let fa-clock-twelve = fa-icon.with("\u{e358}") +#let fa-clock-twelve-thirty = fa-icon.with("\u{e359}") +#let fa-clock-two = fa-icon.with("\u{e35a}") +#let fa-clock-two-thirty = fa-icon.with("\u{e35b}") +#let fa-clone = fa-icon.with("\u{f24d}") +#let fa-closed-captioning = fa-icon.with("\u{f20a}") +#let fa-closed-captioning-slash = fa-icon.with("\u{e135}") +#let fa-clothes-hanger = fa-icon.with("\u{e136}") +#let fa-cloud = fa-icon.with("\u{f0c2}") +#let fa-cloud-arrow-down = fa-icon.with("\u{f0ed}") +#let fa-cloud-download = fa-icon.with("\u{f0ed}") +#let fa-cloud-download-alt = fa-icon.with("\u{f0ed}") +#let fa-cloud-arrow-up = fa-icon.with("\u{f0ee}") +#let fa-cloud-upload = fa-icon.with("\u{f0ee}") +#let fa-cloud-upload-alt = fa-icon.with("\u{f0ee}") +#let fa-cloud-binary = fa-icon.with("\u{e601}") +#let fa-cloud-bolt = fa-icon.with("\u{f76c}") +#let fa-thunderstorm = fa-icon.with("\u{f76c}") +#let fa-cloud-bolt-moon = fa-icon.with("\u{f76d}") +#let fa-thunderstorm-moon = fa-icon.with("\u{f76d}") +#let fa-cloud-bolt-sun = fa-icon.with("\u{f76e}") +#let fa-thunderstorm-sun = fa-icon.with("\u{f76e}") +#let fa-cloud-check = fa-icon.with("\u{e35c}") +#let fa-cloud-drizzle = fa-icon.with("\u{f738}") +#let fa-cloud-exclamation = fa-icon.with("\u{e491}") +#let fa-cloudflare = fa-icon.with("\u{e07d}") +#let fa-cloud-fog = fa-icon.with("\u{f74e}") +#let fa-fog = fa-icon.with("\u{f74e}") +#let fa-cloud-hail = fa-icon.with("\u{f739}") +#let fa-cloud-hail-mixed = fa-icon.with("\u{f73a}") +#let fa-cloud-meatball = fa-icon.with("\u{f73b}") +#let fa-cloud-minus = fa-icon.with("\u{e35d}") +#let fa-cloud-moon = fa-icon.with("\u{f6c3}") +#let fa-cloud-moon-rain = fa-icon.with("\u{f73c}") +#let fa-cloud-music = fa-icon.with("\u{f8ae}") +#let fa-cloud-plus = fa-icon.with("\u{e35e}") +#let fa-cloud-question = fa-icon.with("\u{e492}") +#let fa-cloud-rain = fa-icon.with("\u{f73d}") +#let fa-cloud-rainbow = fa-icon.with("\u{f73e}") +#let fa-clouds = fa-icon.with("\u{f744}") +#let fa-cloudscale = fa-icon.with("\u{f383}") +#let fa-cloud-showers = fa-icon.with("\u{f73f}") +#let fa-cloud-showers-heavy = fa-icon.with("\u{f740}") +#let fa-cloud-showers-water = fa-icon.with("\u{e4e4}") +#let fa-cloud-slash = fa-icon.with("\u{e137}") +#let fa-cloud-sleet = fa-icon.with("\u{f741}") +#let fa-cloudsmith = fa-icon.with("\u{f384}") +#let fa-clouds-moon = fa-icon.with("\u{f745}") +#let fa-cloud-snow = fa-icon.with("\u{f742}") +#let fa-clouds-sun = fa-icon.with("\u{f746}") +#let fa-cloud-sun = fa-icon.with("\u{f6c4}") +#let fa-cloud-sun-rain = fa-icon.with("\u{f743}") +#let fa-cloudversify = fa-icon.with("\u{f385}") +#let fa-cloud-word = fa-icon.with("\u{e138}") +#let fa-cloud-xmark = fa-icon.with("\u{e35f}") +#let fa-clover = fa-icon.with("\u{e139}") +#let fa-club = fa-icon.with("\u{f327}") +#let fa-cmplid = fa-icon.with("\u{e360}") +#let fa-coconut = fa-icon.with("\u{e2f6}") +#let fa-code = fa-icon.with("\u{f121}") +#let fa-code-branch = fa-icon.with("\u{f126}") +#let fa-code-commit = fa-icon.with("\u{f386}") +#let fa-code-compare = fa-icon.with("\u{e13a}") +#let fa-code-fork = fa-icon.with("\u{e13b}") +#let fa-code-merge = fa-icon.with("\u{f387}") +#let fa-codepen = fa-icon.with("\u{f1cb}") +#let fa-code-pull-request = fa-icon.with("\u{e13c}") +#let fa-code-pull-request-closed = fa-icon.with("\u{e3f9}") +#let fa-code-pull-request-draft = fa-icon.with("\u{e3fa}") +#let fa-code-simple = fa-icon.with("\u{e13d}") +#let fa-codiepie = fa-icon.with("\u{f284}") +#let fa-coffee-bean = fa-icon.with("\u{e13e}") +#let fa-coffee-beans = fa-icon.with("\u{e13f}") +#let fa-coffee-pot = fa-icon.with("\u{e002}") +#let fa-coffin = fa-icon.with("\u{f6c6}") +#let fa-coffin-cross = fa-icon.with("\u{e051}") +#let fa-coin = fa-icon.with("\u{f85c}") +#let fa-coin-blank = fa-icon.with("\u{e3fb}") +#let fa-coin-front = fa-icon.with("\u{e3fc}") +#let fa-coins = fa-icon.with("\u{f51e}") +#let fa-coin-vertical = fa-icon.with("\u{e3fd}") +#let fa-colon = fa-icon.with("\u{3a}") +#let fa-colon-sign = fa-icon.with("\u{e140}") +#let fa-columns-3 = fa-icon.with("\u{e361}") +#let fa-comet = fa-icon.with("\u{e003}") +#let fa-comma = fa-icon.with("\u{2c}") +#let fa-command = fa-icon.with("\u{e142}") +#let fa-comment = fa-icon.with("\u{f075}") +#let fa-comment-arrow-down = fa-icon.with("\u{e143}") +#let fa-comment-arrow-up = fa-icon.with("\u{e144}") +#let fa-comment-arrow-up-right = fa-icon.with("\u{e145}") +#let fa-comment-captions = fa-icon.with("\u{e146}") +#let fa-comment-check = fa-icon.with("\u{f4ac}") +#let fa-comment-code = fa-icon.with("\u{e147}") +#let fa-comment-dollar = fa-icon.with("\u{f651}") +#let fa-comment-dots = fa-icon.with("\u{f4ad}") +#let fa-commenting = fa-icon.with("\u{f4ad}") +#let fa-comment-exclamation = fa-icon.with("\u{f4af}") +#let fa-comment-heart = fa-icon.with("\u{e5c8}") +#let fa-comment-image = fa-icon.with("\u{e148}") +#let fa-comment-lines = fa-icon.with("\u{f4b0}") +#let fa-comment-medical = fa-icon.with("\u{f7f5}") +#let fa-comment-middle = fa-icon.with("\u{e149}") +#let fa-comment-middle-top = fa-icon.with("\u{e14a}") +#let fa-comment-minus = fa-icon.with("\u{f4b1}") +#let fa-comment-music = fa-icon.with("\u{f8b0}") +#let fa-comment-pen = fa-icon.with("\u{f4ae}") +#let fa-comment-edit = fa-icon.with("\u{f4ae}") +#let fa-comment-plus = fa-icon.with("\u{f4b2}") +#let fa-comment-question = fa-icon.with("\u{e14b}") +#let fa-comment-quote = fa-icon.with("\u{e14c}") +#let fa-comments = fa-icon.with("\u{f086}") +#let fa-comments-dollar = fa-icon.with("\u{f653}") +#let fa-comment-slash = fa-icon.with("\u{f4b3}") +#let fa-comment-smile = fa-icon.with("\u{f4b4}") +#let fa-comment-sms = fa-icon.with("\u{f7cd}") +#let fa-sms = fa-icon.with("\u{f7cd}") +#let fa-comments-question = fa-icon.with("\u{e14e}") +#let fa-comments-question-check = fa-icon.with("\u{e14f}") +#let fa-comment-text = fa-icon.with("\u{e14d}") +#let fa-comment-xmark = fa-icon.with("\u{f4b5}") +#let fa-comment-times = fa-icon.with("\u{f4b5}") +#let fa-compact-disc = fa-icon.with("\u{f51f}") +#let fa-compass = fa-icon.with("\u{f14e}") +#let fa-compass-drafting = fa-icon.with("\u{f568}") +#let fa-drafting-compass = fa-icon.with("\u{f568}") +#let fa-compass-slash = fa-icon.with("\u{f5e9}") +#let fa-compress = fa-icon.with("\u{f066}") +#let fa-compress-wide = fa-icon.with("\u{f326}") +#let fa-computer = fa-icon.with("\u{e4e5}") +#let fa-computer-classic = fa-icon.with("\u{f8b1}") +#let fa-computer-mouse = fa-icon.with("\u{f8cc}") +#let fa-mouse = fa-icon.with("\u{f8cc}") +#let fa-computer-mouse-scrollwheel = fa-icon.with("\u{f8cd}") +#let fa-mouse-alt = fa-icon.with("\u{f8cd}") +#let fa-computer-speaker = fa-icon.with("\u{f8b2}") +#let fa-confluence = fa-icon.with("\u{f78d}") +#let fa-connectdevelop = fa-icon.with("\u{f20e}") +#let fa-container-storage = fa-icon.with("\u{f4b7}") +#let fa-contao = fa-icon.with("\u{f26d}") +#let fa-conveyor-belt = fa-icon.with("\u{f46e}") +#let fa-conveyor-belt-arm = fa-icon.with("\u{e5f8}") +#let fa-conveyor-belt-boxes = fa-icon.with("\u{f46f}") +#let fa-conveyor-belt-alt = fa-icon.with("\u{f46f}") +#let fa-conveyor-belt-empty = fa-icon.with("\u{e150}") +#let fa-cookie = fa-icon.with("\u{f563}") +#let fa-cookie-bite = fa-icon.with("\u{f564}") +#let fa-copy = fa-icon.with("\u{f0c5}") +#let fa-copyright = fa-icon.with("\u{f1f9}") +#let fa-corn = fa-icon.with("\u{f6c7}") +#let fa-corner = fa-icon.with("\u{e3fe}") +#let fa-cotton-bureau = fa-icon.with("\u{f89e}") +#let fa-couch = fa-icon.with("\u{f4b8}") +#let fa-court-sport = fa-icon.with("\u{e643}") +#let fa-cow = fa-icon.with("\u{f6c8}") +#let fa-cowbell = fa-icon.with("\u{f8b3}") +#let fa-cowbell-circle-plus = fa-icon.with("\u{f8b4}") +#let fa-cowbell-more = fa-icon.with("\u{f8b4}") +#let fa-cpanel = fa-icon.with("\u{f388}") +#let fa-crab = fa-icon.with("\u{e3ff}") +#let fa-crate-apple = fa-icon.with("\u{f6b1}") +#let fa-apple-crate = fa-icon.with("\u{f6b1}") +#let fa-crate-empty = fa-icon.with("\u{e151}") +#let fa-creative-commons = fa-icon.with("\u{f25e}") +#let fa-creative-commons-by = fa-icon.with("\u{f4e7}") +#let fa-creative-commons-nc = fa-icon.with("\u{f4e8}") +#let fa-creative-commons-nc-eu = fa-icon.with("\u{f4e9}") +#let fa-creative-commons-nc-jp = fa-icon.with("\u{f4ea}") +#let fa-creative-commons-nd = fa-icon.with("\u{f4eb}") +#let fa-creative-commons-pd = fa-icon.with("\u{f4ec}") +#let fa-creative-commons-pd-alt = fa-icon.with("\u{f4ed}") +#let fa-creative-commons-remix = fa-icon.with("\u{f4ee}") +#let fa-creative-commons-sa = fa-icon.with("\u{f4ef}") +#let fa-creative-commons-sampling = fa-icon.with("\u{f4f0}") +#let fa-creative-commons-sampling-plus = fa-icon.with("\u{f4f1}") +#let fa-creative-commons-share = fa-icon.with("\u{f4f2}") +#let fa-creative-commons-zero = fa-icon.with("\u{f4f3}") +#let fa-credit-card = fa-icon.with("\u{f09d}") +#let fa-credit-card-alt = fa-icon.with("\u{f09d}") +#let fa-credit-card-blank = fa-icon.with("\u{f389}") +#let fa-credit-card-front = fa-icon.with("\u{f38a}") +#let fa-cricket-bat-ball = fa-icon.with("\u{f449}") +#let fa-cricket = fa-icon.with("\u{f449}") +#let fa-critical-role = fa-icon.with("\u{f6c9}") +#let fa-croissant = fa-icon.with("\u{f7f6}") +#let fa-crop = fa-icon.with("\u{f125}") +#let fa-crop-simple = fa-icon.with("\u{f565}") +#let fa-crop-alt = fa-icon.with("\u{f565}") +#let fa-cross = fa-icon.with("\u{f654}") +#let fa-crosshairs = fa-icon.with("\u{f05b}") +#let fa-crosshairs-simple = fa-icon.with("\u{e59f}") +#let fa-crow = fa-icon.with("\u{f520}") +#let fa-crown = fa-icon.with("\u{f521}") +#let fa-crutch = fa-icon.with("\u{f7f7}") +#let fa-crutches = fa-icon.with("\u{f7f8}") +#let fa-cruzeiro-sign = fa-icon.with("\u{e152}") +#let fa-crystal-ball = fa-icon.with("\u{e362}") +#let fa-css3 = fa-icon.with("\u{f13c}") +#let fa-css3-alt = fa-icon.with("\u{f38b}") +#let fa-cube = fa-icon.with("\u{f1b2}") +#let fa-cubes = fa-icon.with("\u{f1b3}") +#let fa-cubes-stacked = fa-icon.with("\u{e4e6}") +#let fa-cucumber = fa-icon.with("\u{e401}") +#let fa-cupcake = fa-icon.with("\u{e402}") +#let fa-cup-straw = fa-icon.with("\u{e363}") +#let fa-cup-straw-swoosh = fa-icon.with("\u{e364}") +#let fa-cup-togo = fa-icon.with("\u{f6c5}") +#let fa-coffee-togo = fa-icon.with("\u{f6c5}") +#let fa-curling-stone = fa-icon.with("\u{f44a}") +#let fa-curling = fa-icon.with("\u{f44a}") +#let fa-custard = fa-icon.with("\u{e403}") +#let fa-cuttlefish = fa-icon.with("\u{f38c}") +#let fa-d = fa-icon.with("\u{44}") +#let fa-dagger = fa-icon.with("\u{f6cb}") +#let fa-dailymotion = fa-icon.with("\u{e052}") +#let fa-d-and-d = fa-icon.with("\u{f38d}") +#let fa-d-and-d-beyond = fa-icon.with("\u{f6ca}") +#let fa-dart-lang = fa-icon.with("\u{e693}") +#let fa-dash = fa-icon.with("\u{e404}") +#let fa-minus-large = fa-icon.with("\u{e404}") +#let fa-dashcube = fa-icon.with("\u{f210}") +#let fa-database = fa-icon.with("\u{f1c0}") +#let fa-debian = fa-icon.with("\u{e60b}") +#let fa-deer = fa-icon.with("\u{f78e}") +#let fa-deer-rudolph = fa-icon.with("\u{f78f}") +#let fa-deezer = fa-icon.with("\u{e077}") +#let fa-delete-left = fa-icon.with("\u{f55a}") +#let fa-backspace = fa-icon.with("\u{f55a}") +#let fa-delete-right = fa-icon.with("\u{e154}") +#let fa-delicious = fa-icon.with("\u{f1a5}") +#let fa-democrat = fa-icon.with("\u{f747}") +#let fa-deploydog = fa-icon.with("\u{f38e}") +#let fa-deskpro = fa-icon.with("\u{f38f}") +#let fa-desktop = fa-icon.with("\u{f390}") +#let fa-desktop-alt = fa-icon.with("\u{f390}") +#let fa-desktop-arrow-down = fa-icon.with("\u{e155}") +#let fa-dev = fa-icon.with("\u{f6cc}") +#let fa-deviantart = fa-icon.with("\u{f1bd}") +#let fa-dharmachakra = fa-icon.with("\u{f655}") +#let fa-dhl = fa-icon.with("\u{f790}") +#let fa-diagram-cells = fa-icon.with("\u{e475}") +#let fa-diagram-lean-canvas = fa-icon.with("\u{e156}") +#let fa-diagram-nested = fa-icon.with("\u{e157}") +#let fa-diagram-next = fa-icon.with("\u{e476}") +#let fa-diagram-predecessor = fa-icon.with("\u{e477}") +#let fa-diagram-previous = fa-icon.with("\u{e478}") +#let fa-diagram-project = fa-icon.with("\u{f542}") +#let fa-project-diagram = fa-icon.with("\u{f542}") +#let fa-diagram-sankey = fa-icon.with("\u{e158}") +#let fa-diagram-subtask = fa-icon.with("\u{e479}") +#let fa-diagram-successor = fa-icon.with("\u{e47a}") +#let fa-diagram-venn = fa-icon.with("\u{e15a}") +#let fa-dial = fa-icon.with("\u{e15b}") +#let fa-dial-med-high = fa-icon.with("\u{e15b}") +#let fa-dial-high = fa-icon.with("\u{e15c}") +#let fa-dial-low = fa-icon.with("\u{e15d}") +#let fa-dial-max = fa-icon.with("\u{e15e}") +#let fa-dial-med = fa-icon.with("\u{e15f}") +#let fa-dial-med-low = fa-icon.with("\u{e160}") +#let fa-dial-min = fa-icon.with("\u{e161}") +#let fa-dial-off = fa-icon.with("\u{e162}") +#let fa-diamond = fa-icon.with("\u{f219}") +#let fa-diamond-exclamation = fa-icon.with("\u{e405}") +#let fa-diamond-half = fa-icon.with("\u{e5b7}") +#let fa-diamond-half-stroke = fa-icon.with("\u{e5b8}") +#let fa-diamonds-4 = fa-icon.with("\u{e68b}") +#let fa-diamond-turn-right = fa-icon.with("\u{f5eb}") +#let fa-directions = fa-icon.with("\u{f5eb}") +#let fa-diaspora = fa-icon.with("\u{f791}") +#let fa-dice = fa-icon.with("\u{f522}") +#let fa-dice-d10 = fa-icon.with("\u{f6cd}") +#let fa-dice-d12 = fa-icon.with("\u{f6ce}") +#let fa-dice-d20 = fa-icon.with("\u{f6cf}") +#let fa-dice-d4 = fa-icon.with("\u{f6d0}") +#let fa-dice-d6 = fa-icon.with("\u{f6d1}") +#let fa-dice-d8 = fa-icon.with("\u{f6d2}") +#let fa-dice-five = fa-icon.with("\u{f523}") +#let fa-dice-four = fa-icon.with("\u{f524}") +#let fa-dice-one = fa-icon.with("\u{f525}") +#let fa-dice-six = fa-icon.with("\u{f526}") +#let fa-dice-three = fa-icon.with("\u{f527}") +#let fa-dice-two = fa-icon.with("\u{f528}") +#let fa-digg = fa-icon.with("\u{f1a6}") +#let fa-digital-ocean = fa-icon.with("\u{f391}") +#let fa-dinosaur = fa-icon.with("\u{e5fe}") +#let fa-diploma = fa-icon.with("\u{f5ea}") +#let fa-scroll-ribbon = fa-icon.with("\u{f5ea}") +#let fa-disc-drive = fa-icon.with("\u{f8b5}") +#let fa-discord = fa-icon.with("\u{f392}") +#let fa-discourse = fa-icon.with("\u{f393}") +#let fa-disease = fa-icon.with("\u{f7fa}") +#let fa-display = fa-icon.with("\u{e163}") +#let fa-display-arrow-down = fa-icon.with("\u{e164}") +#let fa-display-chart-up = fa-icon.with("\u{e5e3}") +#let fa-display-chart-up-circle-currency = fa-icon.with("\u{e5e5}") +#let fa-display-chart-up-circle-dollar = fa-icon.with("\u{e5e6}") +#let fa-display-code = fa-icon.with("\u{e165}") +#let fa-desktop-code = fa-icon.with("\u{e165}") +#let fa-display-medical = fa-icon.with("\u{e166}") +#let fa-desktop-medical = fa-icon.with("\u{e166}") +#let fa-display-slash = fa-icon.with("\u{e2fa}") +#let fa-desktop-slash = fa-icon.with("\u{e2fa}") +#let fa-distribute-spacing-horizontal = fa-icon.with("\u{e365}") +#let fa-distribute-spacing-vertical = fa-icon.with("\u{e366}") +#let fa-ditto = fa-icon.with("\u{22}") +#let fa-divide = fa-icon.with("\u{f529}") +#let fa-dna = fa-icon.with("\u{f471}") +#let fa-dochub = fa-icon.with("\u{f394}") +#let fa-docker = fa-icon.with("\u{f395}") +#let fa-dog = fa-icon.with("\u{f6d3}") +#let fa-dog-leashed = fa-icon.with("\u{f6d4}") +#let fa-dollar-sign = fa-icon.with("\u{24}") +#let fa-dollar = fa-icon.with("\u{24}") +#let fa-usd = fa-icon.with("\u{24}") +#let fa-dolly = fa-icon.with("\u{f472}") +#let fa-dolly-box = fa-icon.with("\u{f472}") +#let fa-dolly-empty = fa-icon.with("\u{f473}") +#let fa-dolphin = fa-icon.with("\u{e168}") +#let fa-dong-sign = fa-icon.with("\u{e169}") +#let fa-do-not-enter = fa-icon.with("\u{f5ec}") +#let fa-donut = fa-icon.with("\u{e406}") +#let fa-doughnut = fa-icon.with("\u{e406}") +#let fa-door-closed = fa-icon.with("\u{f52a}") +#let fa-door-open = fa-icon.with("\u{f52b}") +#let fa-dove = fa-icon.with("\u{f4ba}") +#let fa-down = fa-icon.with("\u{f354}") +#let fa-arrow-alt-down = fa-icon.with("\u{f354}") +#let fa-down-from-bracket = fa-icon.with("\u{e66b}") +#let fa-down-from-dotted-line = fa-icon.with("\u{e407}") +#let fa-down-from-line = fa-icon.with("\u{f349}") +#let fa-arrow-alt-from-top = fa-icon.with("\u{f349}") +#let fa-down-left = fa-icon.with("\u{e16a}") +#let fa-down-left-and-up-right-to-center = fa-icon.with("\u{f422}") +#let fa-compress-alt = fa-icon.with("\u{f422}") +#let fa-download = fa-icon.with("\u{f019}") +#let fa-down-long = fa-icon.with("\u{f309}") +#let fa-long-arrow-alt-down = fa-icon.with("\u{f309}") +#let fa-down-right = fa-icon.with("\u{e16b}") +#let fa-down-to-bracket = fa-icon.with("\u{e4e7}") +#let fa-down-to-dotted-line = fa-icon.with("\u{e408}") +#let fa-down-to-line = fa-icon.with("\u{f34a}") +#let fa-arrow-alt-to-bottom = fa-icon.with("\u{f34a}") +#let fa-draft2digital = fa-icon.with("\u{f396}") +#let fa-dragon = fa-icon.with("\u{f6d5}") +#let fa-draw-circle = fa-icon.with("\u{f5ed}") +#let fa-draw-polygon = fa-icon.with("\u{f5ee}") +#let fa-draw-square = fa-icon.with("\u{f5ef}") +#let fa-dreidel = fa-icon.with("\u{f792}") +#let fa-dribbble = fa-icon.with("\u{f17d}") +#let fa-drone = fa-icon.with("\u{f85f}") +#let fa-drone-front = fa-icon.with("\u{f860}") +#let fa-drone-alt = fa-icon.with("\u{f860}") +#let fa-dropbox = fa-icon.with("\u{f16b}") +#let fa-droplet = fa-icon.with("\u{f043}") +#let fa-tint = fa-icon.with("\u{f043}") +#let fa-droplet-degree = fa-icon.with("\u{f748}") +#let fa-dewpoint = fa-icon.with("\u{f748}") +#let fa-droplet-percent = fa-icon.with("\u{f750}") +#let fa-humidity = fa-icon.with("\u{f750}") +#let fa-droplet-slash = fa-icon.with("\u{f5c7}") +#let fa-tint-slash = fa-icon.with("\u{f5c7}") +#let fa-drum = fa-icon.with("\u{f569}") +#let fa-drum-steelpan = fa-icon.with("\u{f56a}") +#let fa-drumstick = fa-icon.with("\u{f6d6}") +#let fa-drumstick-bite = fa-icon.with("\u{f6d7}") +#let fa-drupal = fa-icon.with("\u{f1a9}") +#let fa-dryer = fa-icon.with("\u{f861}") +#let fa-dryer-heat = fa-icon.with("\u{f862}") +#let fa-dryer-alt = fa-icon.with("\u{f862}") +#let fa-duck = fa-icon.with("\u{f6d8}") +#let fa-dumbbell = fa-icon.with("\u{f44b}") +#let fa-dumpster = fa-icon.with("\u{f793}") +#let fa-dumpster-fire = fa-icon.with("\u{f794}") +#let fa-dungeon = fa-icon.with("\u{f6d9}") +#let fa-dyalog = fa-icon.with("\u{f399}") +#let fa-e = fa-icon.with("\u{45}") +#let fa-ear = fa-icon.with("\u{f5f0}") +#let fa-ear-deaf = fa-icon.with("\u{f2a4}") +#let fa-deaf = fa-icon.with("\u{f2a4}") +#let fa-deafness = fa-icon.with("\u{f2a4}") +#let fa-hard-of-hearing = fa-icon.with("\u{f2a4}") +#let fa-ear-listen = fa-icon.with("\u{f2a2}") +#let fa-assistive-listening-systems = fa-icon.with("\u{f2a2}") +#let fa-earlybirds = fa-icon.with("\u{f39a}") +#let fa-ear-muffs = fa-icon.with("\u{f795}") +#let fa-earth-africa = fa-icon.with("\u{f57c}") +#let fa-globe-africa = fa-icon.with("\u{f57c}") +#let fa-earth-americas = fa-icon.with("\u{f57d}") +#let fa-earth = fa-icon.with("\u{f57d}") +#let fa-earth-america = fa-icon.with("\u{f57d}") +#let fa-globe-americas = fa-icon.with("\u{f57d}") +#let fa-earth-asia = fa-icon.with("\u{f57e}") +#let fa-globe-asia = fa-icon.with("\u{f57e}") +#let fa-earth-europe = fa-icon.with("\u{f7a2}") +#let fa-globe-europe = fa-icon.with("\u{f7a2}") +#let fa-earth-oceania = fa-icon.with("\u{e47b}") +#let fa-globe-oceania = fa-icon.with("\u{e47b}") +#let fa-ebay = fa-icon.with("\u{f4f4}") +#let fa-eclipse = fa-icon.with("\u{f749}") +#let fa-edge = fa-icon.with("\u{f282}") +#let fa-edge-legacy = fa-icon.with("\u{e078}") +#let fa-egg = fa-icon.with("\u{f7fb}") +#let fa-egg-fried = fa-icon.with("\u{f7fc}") +#let fa-eggplant = fa-icon.with("\u{e16c}") +#let fa-eject = fa-icon.with("\u{f052}") +#let fa-elementor = fa-icon.with("\u{f430}") +#let fa-elephant = fa-icon.with("\u{f6da}") +#let fa-elevator = fa-icon.with("\u{e16d}") +#let fa-ellipsis = fa-icon.with("\u{f141}") +#let fa-ellipsis-h = fa-icon.with("\u{f141}") +#let fa-ellipsis-stroke = fa-icon.with("\u{f39b}") +#let fa-ellipsis-h-alt = fa-icon.with("\u{f39b}") +#let fa-ellipsis-stroke-vertical = fa-icon.with("\u{f39c}") +#let fa-ellipsis-v-alt = fa-icon.with("\u{f39c}") +#let fa-ellipsis-vertical = fa-icon.with("\u{f142}") +#let fa-ellipsis-v = fa-icon.with("\u{f142}") +#let fa-ello = fa-icon.with("\u{f5f1}") +#let fa-ember = fa-icon.with("\u{f423}") +#let fa-empire = fa-icon.with("\u{f1d1}") +#let fa-empty-set = fa-icon.with("\u{f656}") +#let fa-engine = fa-icon.with("\u{e16e}") +#let fa-engine-warning = fa-icon.with("\u{f5f2}") +#let fa-engine-exclamation = fa-icon.with("\u{f5f2}") +#let fa-envelope = fa-icon.with("\u{f0e0}") +#let fa-envelope-circle-check = fa-icon.with("\u{e4e8}") +#let fa-envelope-dot = fa-icon.with("\u{e16f}") +#let fa-envelope-badge = fa-icon.with("\u{e16f}") +#let fa-envelope-open = fa-icon.with("\u{f2b6}") +#let fa-envelope-open-dollar = fa-icon.with("\u{f657}") +#let fa-envelope-open-text = fa-icon.with("\u{f658}") +#let fa-envelopes = fa-icon.with("\u{e170}") +#let fa-envelopes-bulk = fa-icon.with("\u{f674}") +#let fa-mail-bulk = fa-icon.with("\u{f674}") +#let fa-envira = fa-icon.with("\u{f299}") +#let fa-equals = fa-icon.with("\u{3d}") +#let fa-eraser = fa-icon.with("\u{f12d}") +#let fa-erlang = fa-icon.with("\u{f39d}") +#let fa-escalator = fa-icon.with("\u{e171}") +#let fa-ethereum = fa-icon.with("\u{f42e}") +#let fa-ethernet = fa-icon.with("\u{f796}") +#let fa-etsy = fa-icon.with("\u{f2d7}") +#let fa-euro-sign = fa-icon.with("\u{f153}") +#let fa-eur = fa-icon.with("\u{f153}") +#let fa-euro = fa-icon.with("\u{f153}") +#let fa-evernote = fa-icon.with("\u{f839}") +#let fa-excavator = fa-icon.with("\u{e656}") +#let fa-exclamation = fa-icon.with("\u{21}") +#let fa-expand = fa-icon.with("\u{f065}") +#let fa-expand-wide = fa-icon.with("\u{f320}") +#let fa-expeditedssl = fa-icon.with("\u{f23e}") +#let fa-explosion = fa-icon.with("\u{e4e9}") +#let fa-eye = fa-icon.with("\u{f06e}") +#let fa-eye-dropper = fa-icon.with("\u{f1fb}") +#let fa-eye-dropper-empty = fa-icon.with("\u{f1fb}") +#let fa-eyedropper = fa-icon.with("\u{f1fb}") +#let fa-eye-dropper-full = fa-icon.with("\u{e172}") +#let fa-eye-dropper-half = fa-icon.with("\u{e173}") +#let fa-eye-evil = fa-icon.with("\u{f6db}") +#let fa-eye-low-vision = fa-icon.with("\u{f2a8}") +#let fa-low-vision = fa-icon.with("\u{f2a8}") +#let fa-eyes = fa-icon.with("\u{e367}") +#let fa-eye-slash = fa-icon.with("\u{f070}") +#let fa-f = fa-icon.with("\u{46}") +#let fa-face-angry = fa-icon.with("\u{f556}") +#let fa-angry = fa-icon.with("\u{f556}") +#let fa-face-angry-horns = fa-icon.with("\u{e368}") +#let fa-face-anguished = fa-icon.with("\u{e369}") +#let fa-face-anxious-sweat = fa-icon.with("\u{e36a}") +#let fa-face-astonished = fa-icon.with("\u{e36b}") +#let fa-face-awesome = fa-icon.with("\u{e409}") +#let fa-gave-dandy = fa-icon.with("\u{e409}") +#let fa-face-beam-hand-over-mouth = fa-icon.with("\u{e47c}") +#let fa-facebook = fa-icon.with("\u{f09a}") +#let fa-facebook-f = fa-icon.with("\u{f39e}") +#let fa-facebook-messenger = fa-icon.with("\u{f39f}") +#let fa-face-clouds = fa-icon.with("\u{e47d}") +#let fa-face-confounded = fa-icon.with("\u{e36c}") +#let fa-face-confused = fa-icon.with("\u{e36d}") +#let fa-face-cowboy-hat = fa-icon.with("\u{e36e}") +#let fa-face-diagonal-mouth = fa-icon.with("\u{e47e}") +#let fa-face-disappointed = fa-icon.with("\u{e36f}") +#let fa-face-disguise = fa-icon.with("\u{e370}") +#let fa-face-dizzy = fa-icon.with("\u{f567}") +#let fa-dizzy = fa-icon.with("\u{f567}") +#let fa-face-dotted = fa-icon.with("\u{e47f}") +#let fa-face-downcast-sweat = fa-icon.with("\u{e371}") +#let fa-face-drooling = fa-icon.with("\u{e372}") +#let fa-face-exhaling = fa-icon.with("\u{e480}") +#let fa-face-explode = fa-icon.with("\u{e2fe}") +#let fa-exploding-head = fa-icon.with("\u{e2fe}") +#let fa-face-expressionless = fa-icon.with("\u{e373}") +#let fa-face-eyes-xmarks = fa-icon.with("\u{e374}") +#let fa-face-fearful = fa-icon.with("\u{e375}") +#let fa-face-flushed = fa-icon.with("\u{f579}") +#let fa-flushed = fa-icon.with("\u{f579}") +#let fa-face-frown = fa-icon.with("\u{f119}") +#let fa-frown = fa-icon.with("\u{f119}") +#let fa-face-frown-open = fa-icon.with("\u{f57a}") +#let fa-frown-open = fa-icon.with("\u{f57a}") +#let fa-face-frown-slight = fa-icon.with("\u{e376}") +#let fa-face-glasses = fa-icon.with("\u{e377}") +#let fa-face-grimace = fa-icon.with("\u{f57f}") +#let fa-grimace = fa-icon.with("\u{f57f}") +#let fa-face-grin = fa-icon.with("\u{f580}") +#let fa-grin = fa-icon.with("\u{f580}") +#let fa-face-grin-beam = fa-icon.with("\u{f582}") +#let fa-grin-beam = fa-icon.with("\u{f582}") +#let fa-face-grin-beam-sweat = fa-icon.with("\u{f583}") +#let fa-grin-beam-sweat = fa-icon.with("\u{f583}") +#let fa-face-grin-hearts = fa-icon.with("\u{f584}") +#let fa-grin-hearts = fa-icon.with("\u{f584}") +#let fa-face-grin-squint = fa-icon.with("\u{f585}") +#let fa-grin-squint = fa-icon.with("\u{f585}") +#let fa-face-grin-squint-tears = fa-icon.with("\u{f586}") +#let fa-grin-squint-tears = fa-icon.with("\u{f586}") +#let fa-face-grin-stars = fa-icon.with("\u{f587}") +#let fa-grin-stars = fa-icon.with("\u{f587}") +#let fa-face-grin-tears = fa-icon.with("\u{f588}") +#let fa-grin-tears = fa-icon.with("\u{f588}") +#let fa-face-grin-tongue = fa-icon.with("\u{f589}") +#let fa-grin-tongue = fa-icon.with("\u{f589}") +#let fa-face-grin-tongue-squint = fa-icon.with("\u{f58a}") +#let fa-grin-tongue-squint = fa-icon.with("\u{f58a}") +#let fa-face-grin-tongue-wink = fa-icon.with("\u{f58b}") +#let fa-grin-tongue-wink = fa-icon.with("\u{f58b}") +#let fa-face-grin-wide = fa-icon.with("\u{f581}") +#let fa-grin-alt = fa-icon.with("\u{f581}") +#let fa-face-grin-wink = fa-icon.with("\u{f58c}") +#let fa-grin-wink = fa-icon.with("\u{f58c}") +#let fa-face-hand-over-mouth = fa-icon.with("\u{e378}") +#let fa-face-hand-peeking = fa-icon.with("\u{e481}") +#let fa-face-hand-yawn = fa-icon.with("\u{e379}") +#let fa-face-head-bandage = fa-icon.with("\u{e37a}") +#let fa-face-holding-back-tears = fa-icon.with("\u{e482}") +#let fa-face-hushed = fa-icon.with("\u{e37b}") +#let fa-face-icicles = fa-icon.with("\u{e37c}") +#let fa-face-kiss = fa-icon.with("\u{f596}") +#let fa-kiss = fa-icon.with("\u{f596}") +#let fa-face-kiss-beam = fa-icon.with("\u{f597}") +#let fa-kiss-beam = fa-icon.with("\u{f597}") +#let fa-face-kiss-closed-eyes = fa-icon.with("\u{e37d}") +#let fa-face-kiss-wink-heart = fa-icon.with("\u{f598}") +#let fa-kiss-wink-heart = fa-icon.with("\u{f598}") +#let fa-face-laugh = fa-icon.with("\u{f599}") +#let fa-laugh = fa-icon.with("\u{f599}") +#let fa-face-laugh-beam = fa-icon.with("\u{f59a}") +#let fa-laugh-beam = fa-icon.with("\u{f59a}") +#let fa-face-laugh-squint = fa-icon.with("\u{f59b}") +#let fa-laugh-squint = fa-icon.with("\u{f59b}") +#let fa-face-laugh-wink = fa-icon.with("\u{f59c}") +#let fa-laugh-wink = fa-icon.with("\u{f59c}") +#let fa-face-lying = fa-icon.with("\u{e37e}") +#let fa-face-mask = fa-icon.with("\u{e37f}") +#let fa-face-meh = fa-icon.with("\u{f11a}") +#let fa-meh = fa-icon.with("\u{f11a}") +#let fa-face-meh-blank = fa-icon.with("\u{f5a4}") +#let fa-meh-blank = fa-icon.with("\u{f5a4}") +#let fa-face-melting = fa-icon.with("\u{e483}") +#let fa-face-monocle = fa-icon.with("\u{e380}") +#let fa-face-nauseated = fa-icon.with("\u{e381}") +#let fa-face-nose-steam = fa-icon.with("\u{e382}") +#let fa-face-party = fa-icon.with("\u{e383}") +#let fa-face-pensive = fa-icon.with("\u{e384}") +#let fa-face-persevering = fa-icon.with("\u{e385}") +#let fa-face-pleading = fa-icon.with("\u{e386}") +#let fa-face-pouting = fa-icon.with("\u{e387}") +#let fa-face-raised-eyebrow = fa-icon.with("\u{e388}") +#let fa-face-relieved = fa-icon.with("\u{e389}") +#let fa-face-rolling-eyes = fa-icon.with("\u{f5a5}") +#let fa-meh-rolling-eyes = fa-icon.with("\u{f5a5}") +#let fa-face-sad-cry = fa-icon.with("\u{f5b3}") +#let fa-sad-cry = fa-icon.with("\u{f5b3}") +#let fa-face-sad-sweat = fa-icon.with("\u{e38a}") +#let fa-face-sad-tear = fa-icon.with("\u{f5b4}") +#let fa-sad-tear = fa-icon.with("\u{f5b4}") +#let fa-face-saluting = fa-icon.with("\u{e484}") +#let fa-face-scream = fa-icon.with("\u{e38b}") +#let fa-face-shush = fa-icon.with("\u{e38c}") +#let fa-face-sleeping = fa-icon.with("\u{e38d}") +#let fa-face-sleepy = fa-icon.with("\u{e38e}") +#let fa-face-smile = fa-icon.with("\u{f118}") +#let fa-smile = fa-icon.with("\u{f118}") +#let fa-face-smile-beam = fa-icon.with("\u{f5b8}") +#let fa-smile-beam = fa-icon.with("\u{f5b8}") +#let fa-face-smile-halo = fa-icon.with("\u{e38f}") +#let fa-face-smile-hearts = fa-icon.with("\u{e390}") +#let fa-face-smile-horns = fa-icon.with("\u{e391}") +#let fa-face-smile-plus = fa-icon.with("\u{f5b9}") +#let fa-smile-plus = fa-icon.with("\u{f5b9}") +#let fa-face-smile-relaxed = fa-icon.with("\u{e392}") +#let fa-face-smile-tear = fa-icon.with("\u{e393}") +#let fa-face-smile-tongue = fa-icon.with("\u{e394}") +#let fa-face-smile-upside-down = fa-icon.with("\u{e395}") +#let fa-face-smile-wink = fa-icon.with("\u{f4da}") +#let fa-smile-wink = fa-icon.with("\u{f4da}") +#let fa-face-smiling-hands = fa-icon.with("\u{e396}") +#let fa-face-smirking = fa-icon.with("\u{e397}") +#let fa-face-spiral-eyes = fa-icon.with("\u{e485}") +#let fa-face-sunglasses = fa-icon.with("\u{e398}") +#let fa-face-surprise = fa-icon.with("\u{f5c2}") +#let fa-surprise = fa-icon.with("\u{f5c2}") +#let fa-face-swear = fa-icon.with("\u{e399}") +#let fa-face-thermometer = fa-icon.with("\u{e39a}") +#let fa-face-thinking = fa-icon.with("\u{e39b}") +#let fa-face-tired = fa-icon.with("\u{f5c8}") +#let fa-tired = fa-icon.with("\u{f5c8}") +#let fa-face-tissue = fa-icon.with("\u{e39c}") +#let fa-face-tongue-money = fa-icon.with("\u{e39d}") +#let fa-face-tongue-sweat = fa-icon.with("\u{e39e}") +#let fa-face-unamused = fa-icon.with("\u{e39f}") +#let fa-face-viewfinder = fa-icon.with("\u{e2ff}") +#let fa-face-vomit = fa-icon.with("\u{e3a0}") +#let fa-face-weary = fa-icon.with("\u{e3a1}") +#let fa-face-woozy = fa-icon.with("\u{e3a2}") +#let fa-face-worried = fa-icon.with("\u{e3a3}") +#let fa-face-zany = fa-icon.with("\u{e3a4}") +#let fa-face-zipper = fa-icon.with("\u{e3a5}") +#let fa-falafel = fa-icon.with("\u{e40a}") +#let fa-family = fa-icon.with("\u{e300}") +#let fa-family-dress = fa-icon.with("\u{e301}") +#let fa-family-pants = fa-icon.with("\u{e302}") +#let fa-fan = fa-icon.with("\u{f863}") +#let fa-fan-table = fa-icon.with("\u{e004}") +#let fa-fantasy-flight-games = fa-icon.with("\u{f6dc}") +#let fa-farm = fa-icon.with("\u{f864}") +#let fa-barn-silo = fa-icon.with("\u{f864}") +#let fa-faucet = fa-icon.with("\u{e005}") +#let fa-faucet-drip = fa-icon.with("\u{e006}") +#let fa-fax = fa-icon.with("\u{f1ac}") +#let fa-feather = fa-icon.with("\u{f52d}") +#let fa-feather-pointed = fa-icon.with("\u{f56b}") +#let fa-feather-alt = fa-icon.with("\u{f56b}") +#let fa-fedex = fa-icon.with("\u{f797}") +#let fa-fedora = fa-icon.with("\u{f798}") +#let fa-fence = fa-icon.with("\u{e303}") +#let fa-ferris-wheel = fa-icon.with("\u{e174}") +#let fa-ferry = fa-icon.with("\u{e4ea}") +#let fa-field-hockey-stick-ball = fa-icon.with("\u{f44c}") +#let fa-field-hockey = fa-icon.with("\u{f44c}") +#let fa-figma = fa-icon.with("\u{f799}") +#let fa-file = fa-icon.with("\u{f15b}") +#let fa-file-arrow-down = fa-icon.with("\u{f56d}") +#let fa-file-download = fa-icon.with("\u{f56d}") +#let fa-file-arrow-up = fa-icon.with("\u{f574}") +#let fa-file-upload = fa-icon.with("\u{f574}") +#let fa-file-audio = fa-icon.with("\u{f1c7}") +#let fa-file-binary = fa-icon.with("\u{e175}") +#let fa-file-cad = fa-icon.with("\u{e672}") +#let fa-file-certificate = fa-icon.with("\u{f5f3}") +#let fa-file-award = fa-icon.with("\u{f5f3}") +#let fa-file-chart-column = fa-icon.with("\u{f659}") +#let fa-file-chart-line = fa-icon.with("\u{f659}") +#let fa-file-chart-pie = fa-icon.with("\u{f65a}") +#let fa-file-check = fa-icon.with("\u{f316}") +#let fa-file-circle-check = fa-icon.with("\u{e5a0}") +#let fa-file-circle-exclamation = fa-icon.with("\u{e4eb}") +#let fa-file-circle-info = fa-icon.with("\u{e493}") +#let fa-file-circle-minus = fa-icon.with("\u{e4ed}") +#let fa-file-circle-plus = fa-icon.with("\u{e494}") +#let fa-file-circle-question = fa-icon.with("\u{e4ef}") +#let fa-file-circle-xmark = fa-icon.with("\u{e5a1}") +#let fa-file-code = fa-icon.with("\u{f1c9}") +#let fa-file-contract = fa-icon.with("\u{f56c}") +#let fa-file-csv = fa-icon.with("\u{f6dd}") +#let fa-file-dashed-line = fa-icon.with("\u{f877}") +#let fa-page-break = fa-icon.with("\u{f877}") +#let fa-file-doc = fa-icon.with("\u{e5ed}") +#let fa-file-eps = fa-icon.with("\u{e644}") +#let fa-file-excel = fa-icon.with("\u{f1c3}") +#let fa-file-exclamation = fa-icon.with("\u{f31a}") +#let fa-file-export = fa-icon.with("\u{f56e}") +#let fa-arrow-right-from-file = fa-icon.with("\u{f56e}") +#let fa-file-gif = fa-icon.with("\u{e645}") +#let fa-file-heart = fa-icon.with("\u{e176}") +#let fa-file-image = fa-icon.with("\u{f1c5}") +#let fa-file-import = fa-icon.with("\u{f56f}") +#let fa-arrow-right-to-file = fa-icon.with("\u{f56f}") +#let fa-file-invoice = fa-icon.with("\u{f570}") +#let fa-file-invoice-dollar = fa-icon.with("\u{f571}") +#let fa-file-jpg = fa-icon.with("\u{e646}") +#let fa-file-lines = fa-icon.with("\u{f15c}") +#let fa-file-alt = fa-icon.with("\u{f15c}") +#let fa-file-text = fa-icon.with("\u{f15c}") +#let fa-file-lock = fa-icon.with("\u{e3a6}") +#let fa-file-magnifying-glass = fa-icon.with("\u{f865}") +#let fa-file-search = fa-icon.with("\u{f865}") +#let fa-file-medical = fa-icon.with("\u{f477}") +#let fa-file-minus = fa-icon.with("\u{f318}") +#let fa-file-mov = fa-icon.with("\u{e647}") +#let fa-file-mp3 = fa-icon.with("\u{e648}") +#let fa-file-mp4 = fa-icon.with("\u{e649}") +#let fa-file-music = fa-icon.with("\u{f8b6}") +#let fa-file-pdf = fa-icon.with("\u{f1c1}") +#let fa-file-pen = fa-icon.with("\u{f31c}") +#let fa-file-edit = fa-icon.with("\u{f31c}") +#let fa-file-plus = fa-icon.with("\u{f319}") +#let fa-file-plus-minus = fa-icon.with("\u{e177}") +#let fa-file-png = fa-icon.with("\u{e666}") +#let fa-file-powerpoint = fa-icon.with("\u{f1c4}") +#let fa-file-ppt = fa-icon.with("\u{e64a}") +#let fa-file-prescription = fa-icon.with("\u{f572}") +#let fa-files = fa-icon.with("\u{e178}") +#let fa-file-shield = fa-icon.with("\u{e4f0}") +#let fa-file-signature = fa-icon.with("\u{f573}") +#let fa-file-slash = fa-icon.with("\u{e3a7}") +#let fa-files-medical = fa-icon.with("\u{f7fd}") +#let fa-file-spreadsheet = fa-icon.with("\u{f65b}") +#let fa-file-svg = fa-icon.with("\u{e64b}") +#let fa-file-user = fa-icon.with("\u{f65c}") +#let fa-file-vector = fa-icon.with("\u{e64c}") +#let fa-file-video = fa-icon.with("\u{f1c8}") +#let fa-file-waveform = fa-icon.with("\u{f478}") +#let fa-file-medical-alt = fa-icon.with("\u{f478}") +#let fa-file-word = fa-icon.with("\u{f1c2}") +#let fa-file-xls = fa-icon.with("\u{e64d}") +#let fa-file-xmark = fa-icon.with("\u{f317}") +#let fa-file-times = fa-icon.with("\u{f317}") +#let fa-file-xml = fa-icon.with("\u{e654}") +#let fa-file-zip = fa-icon.with("\u{e5ee}") +#let fa-file-zipper = fa-icon.with("\u{f1c6}") +#let fa-file-archive = fa-icon.with("\u{f1c6}") +#let fa-fill = fa-icon.with("\u{f575}") +#let fa-fill-drip = fa-icon.with("\u{f576}") +#let fa-film = fa-icon.with("\u{f008}") +#let fa-film-canister = fa-icon.with("\u{f8b7}") +#let fa-film-cannister = fa-icon.with("\u{f8b7}") +#let fa-films = fa-icon.with("\u{e17a}") +#let fa-film-simple = fa-icon.with("\u{f3a0}") +#let fa-film-alt = fa-icon.with("\u{f3a0}") +#let fa-film-slash = fa-icon.with("\u{e179}") +#let fa-filter = fa-icon.with("\u{f0b0}") +#let fa-filter-circle-dollar = fa-icon.with("\u{f662}") +#let fa-funnel-dollar = fa-icon.with("\u{f662}") +#let fa-filter-circle-xmark = fa-icon.with("\u{e17b}") +#let fa-filter-list = fa-icon.with("\u{e17c}") +#let fa-filters = fa-icon.with("\u{e17e}") +#let fa-filter-slash = fa-icon.with("\u{e17d}") +#let fa-fingerprint = fa-icon.with("\u{f577}") +#let fa-fire = fa-icon.with("\u{f06d}") +#let fa-fire-burner = fa-icon.with("\u{e4f1}") +#let fa-fire-extinguisher = fa-icon.with("\u{f134}") +#let fa-fire-flame = fa-icon.with("\u{f6df}") +#let fa-flame = fa-icon.with("\u{f6df}") +#let fa-fire-flame-curved = fa-icon.with("\u{f7e4}") +#let fa-fire-alt = fa-icon.with("\u{f7e4}") +#let fa-fire-flame-simple = fa-icon.with("\u{f46a}") +#let fa-burn = fa-icon.with("\u{f46a}") +#let fa-firefox = fa-icon.with("\u{f269}") +#let fa-firefox-browser = fa-icon.with("\u{e007}") +#let fa-fire-hydrant = fa-icon.with("\u{e17f}") +#let fa-fireplace = fa-icon.with("\u{f79a}") +#let fa-fire-smoke = fa-icon.with("\u{f74b}") +#let fa-firstdraft = fa-icon.with("\u{f3a1}") +#let fa-first-order = fa-icon.with("\u{f2b0}") +#let fa-first-order-alt = fa-icon.with("\u{f50a}") +#let fa-fish = fa-icon.with("\u{f578}") +#let fa-fish-bones = fa-icon.with("\u{e304}") +#let fa-fish-cooked = fa-icon.with("\u{f7fe}") +#let fa-fish-fins = fa-icon.with("\u{e4f2}") +#let fa-fishing-rod = fa-icon.with("\u{e3a8}") +#let fa-flag = fa-icon.with("\u{f024}") +#let fa-flag-checkered = fa-icon.with("\u{f11e}") +#let fa-flag-pennant = fa-icon.with("\u{f456}") +#let fa-pennant = fa-icon.with("\u{f456}") +#let fa-flag-swallowtail = fa-icon.with("\u{f74c}") +#let fa-flag-alt = fa-icon.with("\u{f74c}") +#let fa-flag-usa = fa-icon.with("\u{f74d}") +#let fa-flashlight = fa-icon.with("\u{f8b8}") +#let fa-flask = fa-icon.with("\u{f0c3}") +#let fa-flask-gear = fa-icon.with("\u{e5f1}") +#let fa-flask-round-poison = fa-icon.with("\u{f6e0}") +#let fa-flask-poison = fa-icon.with("\u{f6e0}") +#let fa-flask-round-potion = fa-icon.with("\u{f6e1}") +#let fa-flask-potion = fa-icon.with("\u{f6e1}") +#let fa-flask-vial = fa-icon.with("\u{e4f3}") +#let fa-flatbread = fa-icon.with("\u{e40b}") +#let fa-flatbread-stuffed = fa-icon.with("\u{e40c}") +#let fa-flickr = fa-icon.with("\u{f16e}") +#let fa-flipboard = fa-icon.with("\u{f44d}") +#let fa-floppy-disk = fa-icon.with("\u{f0c7}") +#let fa-save = fa-icon.with("\u{f0c7}") +#let fa-floppy-disk-circle-arrow-right = fa-icon.with("\u{e180}") +#let fa-save-circle-arrow-right = fa-icon.with("\u{e180}") +#let fa-floppy-disk-circle-xmark = fa-icon.with("\u{e181}") +#let fa-floppy-disk-times = fa-icon.with("\u{e181}") +#let fa-save-circle-xmark = fa-icon.with("\u{e181}") +#let fa-save-times = fa-icon.with("\u{e181}") +#let fa-floppy-disk-pen = fa-icon.with("\u{e182}") +#let fa-floppy-disks = fa-icon.with("\u{e183}") +#let fa-florin-sign = fa-icon.with("\u{e184}") +#let fa-flower = fa-icon.with("\u{f7ff}") +#let fa-flower-daffodil = fa-icon.with("\u{f800}") +#let fa-flower-tulip = fa-icon.with("\u{f801}") +#let fa-flute = fa-icon.with("\u{f8b9}") +#let fa-flutter = fa-icon.with("\u{e694}") +#let fa-flux-capacitor = fa-icon.with("\u{f8ba}") +#let fa-fly = fa-icon.with("\u{f417}") +#let fa-flying-disc = fa-icon.with("\u{e3a9}") +#let fa-folder = fa-icon.with("\u{f07b}") +#let fa-folder-blank = fa-icon.with("\u{f07b}") +#let fa-folder-arrow-down = fa-icon.with("\u{e053}") +#let fa-folder-download = fa-icon.with("\u{e053}") +#let fa-folder-arrow-up = fa-icon.with("\u{e054}") +#let fa-folder-upload = fa-icon.with("\u{e054}") +#let fa-folder-bookmark = fa-icon.with("\u{e186}") +#let fa-folder-check = fa-icon.with("\u{e64e}") +#let fa-folder-closed = fa-icon.with("\u{e185}") +#let fa-folder-gear = fa-icon.with("\u{e187}") +#let fa-folder-cog = fa-icon.with("\u{e187}") +#let fa-folder-grid = fa-icon.with("\u{e188}") +#let fa-folder-heart = fa-icon.with("\u{e189}") +#let fa-folder-image = fa-icon.with("\u{e18a}") +#let fa-folder-magnifying-glass = fa-icon.with("\u{e18b}") +#let fa-folder-search = fa-icon.with("\u{e18b}") +#let fa-folder-medical = fa-icon.with("\u{e18c}") +#let fa-folder-minus = fa-icon.with("\u{f65d}") +#let fa-folder-music = fa-icon.with("\u{e18d}") +#let fa-folder-open = fa-icon.with("\u{f07c}") +#let fa-folder-plus = fa-icon.with("\u{f65e}") +#let fa-folders = fa-icon.with("\u{f660}") +#let fa-folder-tree = fa-icon.with("\u{f802}") +#let fa-folder-user = fa-icon.with("\u{e18e}") +#let fa-folder-xmark = fa-icon.with("\u{f65f}") +#let fa-folder-times = fa-icon.with("\u{f65f}") +#let fa-fondue-pot = fa-icon.with("\u{e40d}") +#let fa-font = fa-icon.with("\u{f031}") +#let fa-font-awesome = fa-icon.with("\u{f2b4}") +#let fa-font-awesome-flag = fa-icon.with("\u{f2b4}") +#let fa-font-awesome-logo-full = fa-icon.with("\u{f2b4}") +#let fa-font-case = fa-icon.with("\u{f866}") +#let fa-fonticons = fa-icon.with("\u{f280}") +#let fa-fonticons-fi = fa-icon.with("\u{f3a2}") +#let fa-football = fa-icon.with("\u{f44e}") +#let fa-football-ball = fa-icon.with("\u{f44e}") +#let fa-football-helmet = fa-icon.with("\u{f44f}") +#let fa-fork = fa-icon.with("\u{f2e3}") +#let fa-utensil-fork = fa-icon.with("\u{f2e3}") +#let fa-fork-knife = fa-icon.with("\u{f2e6}") +#let fa-utensils-alt = fa-icon.with("\u{f2e6}") +#let fa-forklift = fa-icon.with("\u{f47a}") +#let fa-fort = fa-icon.with("\u{e486}") +#let fa-fort-awesome = fa-icon.with("\u{f286}") +#let fa-fort-awesome-alt = fa-icon.with("\u{f3a3}") +#let fa-forumbee = fa-icon.with("\u{f211}") +#let fa-forward = fa-icon.with("\u{f04e}") +#let fa-forward-fast = fa-icon.with("\u{f050}") +#let fa-fast-forward = fa-icon.with("\u{f050}") +#let fa-forward-step = fa-icon.with("\u{f051}") +#let fa-step-forward = fa-icon.with("\u{f051}") +#let fa-foursquare = fa-icon.with("\u{f180}") +#let fa-frame = fa-icon.with("\u{e495}") +#let fa-franc-sign = fa-icon.with("\u{e18f}") +#let fa-freebsd = fa-icon.with("\u{f3a4}") +#let fa-free-code-camp = fa-icon.with("\u{f2c5}") +#let fa-french-fries = fa-icon.with("\u{f803}") +#let fa-frog = fa-icon.with("\u{f52e}") +#let fa-fulcrum = fa-icon.with("\u{f50b}") +#let fa-function = fa-icon.with("\u{f661}") +#let fa-futbol = fa-icon.with("\u{f1e3}") +#let fa-futbol-ball = fa-icon.with("\u{f1e3}") +#let fa-soccer-ball = fa-icon.with("\u{f1e3}") +#let fa-g = fa-icon.with("\u{47}") +#let fa-galactic-republic = fa-icon.with("\u{f50c}") +#let fa-galactic-senate = fa-icon.with("\u{f50d}") +#let fa-galaxy = fa-icon.with("\u{e008}") +#let fa-gallery-thumbnails = fa-icon.with("\u{e3aa}") +#let fa-game-board = fa-icon.with("\u{f867}") +#let fa-game-board-simple = fa-icon.with("\u{f868}") +#let fa-game-board-alt = fa-icon.with("\u{f868}") +#let fa-game-console-handheld = fa-icon.with("\u{f8bb}") +#let fa-game-console-handheld-crank = fa-icon.with("\u{e5b9}") +#let fa-gamepad = fa-icon.with("\u{f11b}") +#let fa-gamepad-modern = fa-icon.with("\u{e5a2}") +#let fa-gamepad-alt = fa-icon.with("\u{e5a2}") +#let fa-garage = fa-icon.with("\u{e009}") +#let fa-garage-car = fa-icon.with("\u{e00a}") +#let fa-garage-open = fa-icon.with("\u{e00b}") +#let fa-garlic = fa-icon.with("\u{e40e}") +#let fa-gas-pump = fa-icon.with("\u{f52f}") +#let fa-gas-pump-slash = fa-icon.with("\u{f5f4}") +#let fa-gauge = fa-icon.with("\u{f624}") +#let fa-dashboard = fa-icon.with("\u{f624}") +#let fa-gauge-med = fa-icon.with("\u{f624}") +#let fa-tachometer-alt-average = fa-icon.with("\u{f624}") +#let fa-gauge-circle-bolt = fa-icon.with("\u{e496}") +#let fa-gauge-circle-minus = fa-icon.with("\u{e497}") +#let fa-gauge-circle-plus = fa-icon.with("\u{e498}") +#let fa-gauge-high = fa-icon.with("\u{f625}") +#let fa-tachometer-alt = fa-icon.with("\u{f625}") +#let fa-tachometer-alt-fast = fa-icon.with("\u{f625}") +#let fa-gauge-low = fa-icon.with("\u{f627}") +#let fa-tachometer-alt-slow = fa-icon.with("\u{f627}") +#let fa-gauge-max = fa-icon.with("\u{f626}") +#let fa-tachometer-alt-fastest = fa-icon.with("\u{f626}") +#let fa-gauge-min = fa-icon.with("\u{f628}") +#let fa-tachometer-alt-slowest = fa-icon.with("\u{f628}") +#let fa-gauge-simple = fa-icon.with("\u{f629}") +#let fa-gauge-simple-med = fa-icon.with("\u{f629}") +#let fa-tachometer-average = fa-icon.with("\u{f629}") +#let fa-gauge-simple-high = fa-icon.with("\u{f62a}") +#let fa-tachometer = fa-icon.with("\u{f62a}") +#let fa-tachometer-fast = fa-icon.with("\u{f62a}") +#let fa-gauge-simple-low = fa-icon.with("\u{f62c}") +#let fa-tachometer-slow = fa-icon.with("\u{f62c}") +#let fa-gauge-simple-max = fa-icon.with("\u{f62b}") +#let fa-tachometer-fastest = fa-icon.with("\u{f62b}") +#let fa-gauge-simple-min = fa-icon.with("\u{f62d}") +#let fa-tachometer-slowest = fa-icon.with("\u{f62d}") +#let fa-gavel = fa-icon.with("\u{f0e3}") +#let fa-legal = fa-icon.with("\u{f0e3}") +#let fa-gear = fa-icon.with("\u{f013}") +#let fa-cog = fa-icon.with("\u{f013}") +#let fa-gear-code = fa-icon.with("\u{e5e8}") +#let fa-gear-complex = fa-icon.with("\u{e5e9}") +#let fa-gear-complex-code = fa-icon.with("\u{e5eb}") +#let fa-gears = fa-icon.with("\u{f085}") +#let fa-cogs = fa-icon.with("\u{f085}") +#let fa-gem = fa-icon.with("\u{f3a5}") +#let fa-genderless = fa-icon.with("\u{f22d}") +#let fa-get-pocket = fa-icon.with("\u{f265}") +#let fa-gg = fa-icon.with("\u{f260}") +#let fa-gg-circle = fa-icon.with("\u{f261}") +#let fa-ghost = fa-icon.with("\u{f6e2}") +#let fa-gif = fa-icon.with("\u{e190}") +#let fa-gift = fa-icon.with("\u{f06b}") +#let fa-gift-card = fa-icon.with("\u{f663}") +#let fa-gifts = fa-icon.with("\u{f79c}") +#let fa-gingerbread-man = fa-icon.with("\u{f79d}") +#let fa-git = fa-icon.with("\u{f1d3}") +#let fa-git-alt = fa-icon.with("\u{f841}") +#let fa-github = fa-icon.with("\u{f09b}") +#let fa-github-alt = fa-icon.with("\u{f113}") +#let fa-gitkraken = fa-icon.with("\u{f3a6}") +#let fa-gitlab = fa-icon.with("\u{f296}") +#let fa-gitter = fa-icon.with("\u{f426}") +#let fa-glass = fa-icon.with("\u{f804}") +#let fa-glass-citrus = fa-icon.with("\u{f869}") +#let fa-glass-empty = fa-icon.with("\u{e191}") +#let fa-glasses = fa-icon.with("\u{f530}") +#let fa-glasses-round = fa-icon.with("\u{f5f5}") +#let fa-glasses-alt = fa-icon.with("\u{f5f5}") +#let fa-glass-half = fa-icon.with("\u{e192}") +#let fa-glass-half-empty = fa-icon.with("\u{e192}") +#let fa-glass-half-full = fa-icon.with("\u{e192}") +#let fa-glass-water = fa-icon.with("\u{e4f4}") +#let fa-glass-water-droplet = fa-icon.with("\u{e4f5}") +#let fa-glide = fa-icon.with("\u{f2a5}") +#let fa-glide-g = fa-icon.with("\u{f2a6}") +#let fa-globe = fa-icon.with("\u{f0ac}") +#let fa-globe-pointer = fa-icon.with("\u{e60e}") +#let fa-globe-snow = fa-icon.with("\u{f7a3}") +#let fa-globe-stand = fa-icon.with("\u{f5f6}") +#let fa-globe-wifi = fa-icon.with("\u{e685}") +#let fa-goal-net = fa-icon.with("\u{e3ab}") +#let fa-gofore = fa-icon.with("\u{f3a7}") +#let fa-golang = fa-icon.with("\u{e40f}") +#let fa-golf-ball-tee = fa-icon.with("\u{f450}") +#let fa-golf-ball = fa-icon.with("\u{f450}") +#let fa-golf-club = fa-icon.with("\u{f451}") +#let fa-golf-flag-hole = fa-icon.with("\u{e3ac}") +#let fa-goodreads = fa-icon.with("\u{f3a8}") +#let fa-goodreads-g = fa-icon.with("\u{f3a9}") +#let fa-google = fa-icon.with("\u{f1a0}") +#let fa-google-drive = fa-icon.with("\u{f3aa}") +#let fa-google-pay = fa-icon.with("\u{e079}") +#let fa-google-play = fa-icon.with("\u{f3ab}") +#let fa-google-plus = fa-icon.with("\u{f2b3}") +#let fa-google-plus-g = fa-icon.with("\u{f0d5}") +#let fa-google-scholar = fa-icon.with("\u{e63b}") +#let fa-google-wallet = fa-icon.with("\u{f1ee}") +#let fa-gopuram = fa-icon.with("\u{f664}") +#let fa-graduation-cap = fa-icon.with("\u{f19d}") +#let fa-mortar-board = fa-icon.with("\u{f19d}") +#let fa-gramophone = fa-icon.with("\u{f8bd}") +#let fa-grapes = fa-icon.with("\u{e306}") +#let fa-grate = fa-icon.with("\u{e193}") +#let fa-grate-droplet = fa-icon.with("\u{e194}") +#let fa-gratipay = fa-icon.with("\u{f184}") +#let fa-grav = fa-icon.with("\u{f2d6}") +#let fa-greater-than = fa-icon.with("\u{3e}") +#let fa-greater-than-equal = fa-icon.with("\u{f532}") +#let fa-grid = fa-icon.with("\u{e195}") +#let fa-grid-3 = fa-icon.with("\u{e195}") +#let fa-grid-2 = fa-icon.with("\u{e196}") +#let fa-grid-2-plus = fa-icon.with("\u{e197}") +#let fa-grid-4 = fa-icon.with("\u{e198}") +#let fa-grid-5 = fa-icon.with("\u{e199}") +#let fa-grid-dividers = fa-icon.with("\u{e3ad}") +#let fa-grid-horizontal = fa-icon.with("\u{e307}") +#let fa-grid-round = fa-icon.with("\u{e5da}") +#let fa-grid-round-2 = fa-icon.with("\u{e5db}") +#let fa-grid-round-2-plus = fa-icon.with("\u{e5dc}") +#let fa-grid-round-4 = fa-icon.with("\u{e5dd}") +#let fa-grid-round-5 = fa-icon.with("\u{e5de}") +#let fa-grill = fa-icon.with("\u{e5a3}") +#let fa-grill-fire = fa-icon.with("\u{e5a4}") +#let fa-grill-hot = fa-icon.with("\u{e5a5}") +#let fa-grip = fa-icon.with("\u{f58d}") +#let fa-grip-horizontal = fa-icon.with("\u{f58d}") +#let fa-grip-dots = fa-icon.with("\u{e410}") +#let fa-grip-dots-vertical = fa-icon.with("\u{e411}") +#let fa-gripfire = fa-icon.with("\u{f3ac}") +#let fa-grip-lines = fa-icon.with("\u{f7a4}") +#let fa-grip-lines-vertical = fa-icon.with("\u{f7a5}") +#let fa-grip-vertical = fa-icon.with("\u{f58e}") +#let fa-group-arrows-rotate = fa-icon.with("\u{e4f6}") +#let fa-grunt = fa-icon.with("\u{f3ad}") +#let fa-guarani-sign = fa-icon.with("\u{e19a}") +#let fa-guilded = fa-icon.with("\u{e07e}") +#let fa-guitar = fa-icon.with("\u{f7a6}") +#let fa-guitar-electric = fa-icon.with("\u{f8be}") +#let fa-guitars = fa-icon.with("\u{f8bf}") +#let fa-gulp = fa-icon.with("\u{f3ae}") +#let fa-gun = fa-icon.with("\u{e19b}") +#let fa-gun-slash = fa-icon.with("\u{e19c}") +#let fa-gun-squirt = fa-icon.with("\u{e19d}") +#let fa-h = fa-icon.with("\u{48}") +#let fa-h1 = fa-icon.with("\u{f313}") +#let fa-h2 = fa-icon.with("\u{f314}") +#let fa-h3 = fa-icon.with("\u{f315}") +#let fa-h4 = fa-icon.with("\u{f86a}") +#let fa-h5 = fa-icon.with("\u{e412}") +#let fa-h6 = fa-icon.with("\u{e413}") +#let fa-hacker-news = fa-icon.with("\u{f1d4}") +#let fa-hackerrank = fa-icon.with("\u{f5f7}") +#let fa-hammer = fa-icon.with("\u{f6e3}") +#let fa-hammer-brush = fa-icon.with("\u{e620}") +#let fa-hammer-crash = fa-icon.with("\u{e414}") +#let fa-hammer-war = fa-icon.with("\u{f6e4}") +#let fa-hamsa = fa-icon.with("\u{f665}") +#let fa-hand = fa-icon.with("\u{f256}") +#let fa-hand-paper = fa-icon.with("\u{f256}") +#let fa-hand-back-fist = fa-icon.with("\u{f255}") +#let fa-hand-rock = fa-icon.with("\u{f255}") +#let fa-hand-back-point-down = fa-icon.with("\u{e19e}") +#let fa-hand-back-point-left = fa-icon.with("\u{e19f}") +#let fa-hand-back-point-ribbon = fa-icon.with("\u{e1a0}") +#let fa-hand-back-point-right = fa-icon.with("\u{e1a1}") +#let fa-hand-back-point-up = fa-icon.with("\u{e1a2}") +#let fa-handcuffs = fa-icon.with("\u{e4f8}") +#let fa-hand-dots = fa-icon.with("\u{f461}") +#let fa-allergies = fa-icon.with("\u{f461}") +#let fa-hand-fingers-crossed = fa-icon.with("\u{e1a3}") +#let fa-hand-fist = fa-icon.with("\u{f6de}") +#let fa-fist-raised = fa-icon.with("\u{f6de}") +#let fa-hand-heart = fa-icon.with("\u{f4bc}") +#let fa-hand-holding = fa-icon.with("\u{f4bd}") +#let fa-hand-holding-box = fa-icon.with("\u{f47b}") +#let fa-hand-holding-circle-dollar = fa-icon.with("\u{e621}") +#let fa-hand-holding-dollar = fa-icon.with("\u{f4c0}") +#let fa-hand-holding-usd = fa-icon.with("\u{f4c0}") +#let fa-hand-holding-droplet = fa-icon.with("\u{f4c1}") +#let fa-hand-holding-water = fa-icon.with("\u{f4c1}") +#let fa-hand-holding-hand = fa-icon.with("\u{e4f7}") +#let fa-hand-holding-heart = fa-icon.with("\u{f4be}") +#let fa-hand-holding-magic = fa-icon.with("\u{f6e5}") +#let fa-hand-holding-medical = fa-icon.with("\u{e05c}") +#let fa-hand-holding-seedling = fa-icon.with("\u{f4bf}") +#let fa-hand-holding-skull = fa-icon.with("\u{e1a4}") +#let fa-hand-horns = fa-icon.with("\u{e1a9}") +#let fa-hand-lizard = fa-icon.with("\u{f258}") +#let fa-hand-love = fa-icon.with("\u{e1a5}") +#let fa-hand-middle-finger = fa-icon.with("\u{f806}") +#let fa-hand-peace = fa-icon.with("\u{f25b}") +#let fa-hand-point-down = fa-icon.with("\u{f0a7}") +#let fa-hand-pointer = fa-icon.with("\u{f25a}") +#let fa-hand-point-left = fa-icon.with("\u{f0a5}") +#let fa-hand-point-ribbon = fa-icon.with("\u{e1a6}") +#let fa-hand-point-right = fa-icon.with("\u{f0a4}") +#let fa-hand-point-up = fa-icon.with("\u{f0a6}") +#let fa-hands = fa-icon.with("\u{f2a7}") +#let fa-sign-language = fa-icon.with("\u{f2a7}") +#let fa-signing = fa-icon.with("\u{f2a7}") +#let fa-hands-asl-interpreting = fa-icon.with("\u{f2a3}") +#let fa-american-sign-language-interpreting = fa-icon.with("\u{f2a3}") +#let fa-asl-interpreting = fa-icon.with("\u{f2a3}") +#let fa-hands-american-sign-language-interpreting = fa-icon.with("\u{f2a3}") +#let fa-hands-bound = fa-icon.with("\u{e4f9}") +#let fa-hands-bubbles = fa-icon.with("\u{e05e}") +#let fa-hands-wash = fa-icon.with("\u{e05e}") +#let fa-hand-scissors = fa-icon.with("\u{f257}") +#let fa-hands-clapping = fa-icon.with("\u{e1a8}") +#let fa-handshake = fa-icon.with("\u{f2b5}") +#let fa-handshake-angle = fa-icon.with("\u{f4c4}") +#let fa-hands-helping = fa-icon.with("\u{f4c4}") +#let fa-handshake-simple = fa-icon.with("\u{f4c6}") +#let fa-handshake-alt = fa-icon.with("\u{f4c6}") +#let fa-handshake-simple-slash = fa-icon.with("\u{e05f}") +#let fa-handshake-alt-slash = fa-icon.with("\u{e05f}") +#let fa-handshake-slash = fa-icon.with("\u{e060}") +#let fa-hands-holding = fa-icon.with("\u{f4c2}") +#let fa-hands-holding-child = fa-icon.with("\u{e4fa}") +#let fa-hands-holding-circle = fa-icon.with("\u{e4fb}") +#let fa-hands-holding-diamond = fa-icon.with("\u{f47c}") +#let fa-hand-receiving = fa-icon.with("\u{f47c}") +#let fa-hands-holding-dollar = fa-icon.with("\u{f4c5}") +#let fa-hands-usd = fa-icon.with("\u{f4c5}") +#let fa-hands-holding-heart = fa-icon.with("\u{f4c3}") +#let fa-hands-heart = fa-icon.with("\u{f4c3}") +#let fa-hand-sparkles = fa-icon.with("\u{e05d}") +#let fa-hand-spock = fa-icon.with("\u{f259}") +#let fa-hands-praying = fa-icon.with("\u{f684}") +#let fa-praying-hands = fa-icon.with("\u{f684}") +#let fa-hand-wave = fa-icon.with("\u{e1a7}") +#let fa-hanukiah = fa-icon.with("\u{f6e6}") +#let fa-hard-drive = fa-icon.with("\u{f0a0}") +#let fa-hdd = fa-icon.with("\u{f0a0}") +#let fa-hashnode = fa-icon.with("\u{e499}") +#let fa-hashtag = fa-icon.with("\u{23}") +#let fa-hashtag-lock = fa-icon.with("\u{e415}") +#let fa-hat-beach = fa-icon.with("\u{e606}") +#let fa-hat-chef = fa-icon.with("\u{f86b}") +#let fa-hat-cowboy = fa-icon.with("\u{f8c0}") +#let fa-hat-cowboy-side = fa-icon.with("\u{f8c1}") +#let fa-hat-santa = fa-icon.with("\u{f7a7}") +#let fa-hat-winter = fa-icon.with("\u{f7a8}") +#let fa-hat-witch = fa-icon.with("\u{f6e7}") +#let fa-hat-wizard = fa-icon.with("\u{f6e8}") +#let fa-heading = fa-icon.with("\u{f1dc}") +#let fa-header = fa-icon.with("\u{f1dc}") +#let fa-headphones = fa-icon.with("\u{f025}") +#let fa-headphones-simple = fa-icon.with("\u{f58f}") +#let fa-headphones-alt = fa-icon.with("\u{f58f}") +#let fa-headset = fa-icon.with("\u{f590}") +#let fa-head-side = fa-icon.with("\u{f6e9}") +#let fa-head-side-brain = fa-icon.with("\u{f808}") +#let fa-head-side-cough = fa-icon.with("\u{e061}") +#let fa-head-side-cough-slash = fa-icon.with("\u{e062}") +#let fa-head-side-gear = fa-icon.with("\u{e611}") +#let fa-head-side-goggles = fa-icon.with("\u{f6ea}") +#let fa-head-vr = fa-icon.with("\u{f6ea}") +#let fa-head-side-headphones = fa-icon.with("\u{f8c2}") +#let fa-head-side-heart = fa-icon.with("\u{e1aa}") +#let fa-head-side-mask = fa-icon.with("\u{e063}") +#let fa-head-side-medical = fa-icon.with("\u{f809}") +#let fa-head-side-virus = fa-icon.with("\u{e064}") +#let fa-heart = fa-icon.with("\u{f004}") +#let fa-heart-circle-bolt = fa-icon.with("\u{e4fc}") +#let fa-heart-circle-check = fa-icon.with("\u{e4fd}") +#let fa-heart-circle-exclamation = fa-icon.with("\u{e4fe}") +#let fa-heart-circle-minus = fa-icon.with("\u{e4ff}") +#let fa-heart-circle-plus = fa-icon.with("\u{e500}") +#let fa-heart-circle-xmark = fa-icon.with("\u{e501}") +#let fa-heart-crack = fa-icon.with("\u{f7a9}") +#let fa-heart-broken = fa-icon.with("\u{f7a9}") +#let fa-heart-half = fa-icon.with("\u{e1ab}") +#let fa-heart-half-stroke = fa-icon.with("\u{e1ac}") +#let fa-heart-half-alt = fa-icon.with("\u{e1ac}") +#let fa-heart-pulse = fa-icon.with("\u{f21e}") +#let fa-heartbeat = fa-icon.with("\u{f21e}") +#let fa-heat = fa-icon.with("\u{e00c}") +#let fa-helicopter = fa-icon.with("\u{f533}") +#let fa-helicopter-symbol = fa-icon.with("\u{e502}") +#let fa-helmet-battle = fa-icon.with("\u{f6eb}") +#let fa-helmet-safety = fa-icon.with("\u{f807}") +#let fa-hard-hat = fa-icon.with("\u{f807}") +#let fa-hat-hard = fa-icon.with("\u{f807}") +#let fa-helmet-un = fa-icon.with("\u{e503}") +#let fa-hexagon = fa-icon.with("\u{f312}") +#let fa-hexagon-check = fa-icon.with("\u{e416}") +#let fa-hexagon-divide = fa-icon.with("\u{e1ad}") +#let fa-hexagon-exclamation = fa-icon.with("\u{e417}") +#let fa-hexagon-image = fa-icon.with("\u{e504}") +#let fa-hexagon-minus = fa-icon.with("\u{f307}") +#let fa-minus-hexagon = fa-icon.with("\u{f307}") +#let fa-hexagon-plus = fa-icon.with("\u{f300}") +#let fa-plus-hexagon = fa-icon.with("\u{f300}") +#let fa-hexagon-vertical-nft = fa-icon.with("\u{e505}") +#let fa-hexagon-vertical-nft-slanted = fa-icon.with("\u{e506}") +#let fa-hexagon-xmark = fa-icon.with("\u{f2ee}") +#let fa-times-hexagon = fa-icon.with("\u{f2ee}") +#let fa-xmark-hexagon = fa-icon.with("\u{f2ee}") +#let fa-high-definition = fa-icon.with("\u{e1ae}") +#let fa-rectangle-hd = fa-icon.with("\u{e1ae}") +#let fa-highlighter = fa-icon.with("\u{f591}") +#let fa-highlighter-line = fa-icon.with("\u{e1af}") +#let fa-hill-avalanche = fa-icon.with("\u{e507}") +#let fa-hill-rockslide = fa-icon.with("\u{e508}") +#let fa-hippo = fa-icon.with("\u{f6ed}") +#let fa-hips = fa-icon.with("\u{f452}") +#let fa-hire-a-helper = fa-icon.with("\u{f3b0}") +#let fa-hive = fa-icon.with("\u{e07f}") +#let fa-hockey-mask = fa-icon.with("\u{f6ee}") +#let fa-hockey-puck = fa-icon.with("\u{f453}") +#let fa-hockey-stick-puck = fa-icon.with("\u{e3ae}") +#let fa-hockey-sticks = fa-icon.with("\u{f454}") +#let fa-holly-berry = fa-icon.with("\u{f7aa}") +#let fa-honey-pot = fa-icon.with("\u{e418}") +#let fa-hood-cloak = fa-icon.with("\u{f6ef}") +#let fa-hooli = fa-icon.with("\u{f427}") +#let fa-horizontal-rule = fa-icon.with("\u{f86c}") +#let fa-hornbill = fa-icon.with("\u{f592}") +#let fa-horse = fa-icon.with("\u{f6f0}") +#let fa-horse-head = fa-icon.with("\u{f7ab}") +#let fa-horse-saddle = fa-icon.with("\u{f8c3}") +#let fa-hose = fa-icon.with("\u{e419}") +#let fa-hose-reel = fa-icon.with("\u{e41a}") +#let fa-hospital = fa-icon.with("\u{f0f8}") +#let fa-hospital-alt = fa-icon.with("\u{f0f8}") +#let fa-hospital-wide = fa-icon.with("\u{f0f8}") +#let fa-hospitals = fa-icon.with("\u{f80e}") +#let fa-hospital-user = fa-icon.with("\u{f80d}") +#let fa-hotdog = fa-icon.with("\u{f80f}") +#let fa-hotel = fa-icon.with("\u{f594}") +#let fa-hotjar = fa-icon.with("\u{f3b1}") +#let fa-hot-tub-person = fa-icon.with("\u{f593}") +#let fa-hot-tub = fa-icon.with("\u{f593}") +#let fa-hourglass = fa-icon.with("\u{f254}") +#let fa-hourglass-empty = fa-icon.with("\u{f254}") +#let fa-hourglass-clock = fa-icon.with("\u{e41b}") +#let fa-hourglass-end = fa-icon.with("\u{f253}") +#let fa-hourglass-3 = fa-icon.with("\u{f253}") +#let fa-hourglass-half = fa-icon.with("\u{f252}") +#let fa-hourglass-2 = fa-icon.with("\u{f252}") +#let fa-hourglass-start = fa-icon.with("\u{f251}") +#let fa-hourglass-1 = fa-icon.with("\u{f251}") +#let fa-house = fa-icon.with("\u{f015}") +#let fa-home = fa-icon.with("\u{f015}") +#let fa-home-alt = fa-icon.with("\u{f015}") +#let fa-home-lg-alt = fa-icon.with("\u{f015}") +#let fa-house-blank = fa-icon.with("\u{e487}") +#let fa-home-blank = fa-icon.with("\u{e487}") +#let fa-house-building = fa-icon.with("\u{e1b1}") +#let fa-house-chimney = fa-icon.with("\u{e3af}") +#let fa-home-lg = fa-icon.with("\u{e3af}") +#let fa-house-chimney-blank = fa-icon.with("\u{e3b0}") +#let fa-house-chimney-crack = fa-icon.with("\u{f6f1}") +#let fa-house-damage = fa-icon.with("\u{f6f1}") +#let fa-house-chimney-heart = fa-icon.with("\u{e1b2}") +#let fa-house-chimney-medical = fa-icon.with("\u{f7f2}") +#let fa-clinic-medical = fa-icon.with("\u{f7f2}") +#let fa-house-chimney-user = fa-icon.with("\u{e065}") +#let fa-house-chimney-window = fa-icon.with("\u{e00d}") +#let fa-house-circle-check = fa-icon.with("\u{e509}") +#let fa-house-circle-exclamation = fa-icon.with("\u{e50a}") +#let fa-house-circle-xmark = fa-icon.with("\u{e50b}") +#let fa-house-crack = fa-icon.with("\u{e3b1}") +#let fa-house-day = fa-icon.with("\u{e00e}") +#let fa-house-fire = fa-icon.with("\u{e50c}") +#let fa-house-flag = fa-icon.with("\u{e50d}") +#let fa-house-flood-water = fa-icon.with("\u{e50e}") +#let fa-house-flood-water-circle-arrow-right = fa-icon.with("\u{e50f}") +#let fa-house-heart = fa-icon.with("\u{f4c9}") +#let fa-home-heart = fa-icon.with("\u{f4c9}") +#let fa-house-laptop = fa-icon.with("\u{e066}") +#let fa-laptop-house = fa-icon.with("\u{e066}") +#let fa-house-lock = fa-icon.with("\u{e510}") +#let fa-house-medical = fa-icon.with("\u{e3b2}") +#let fa-house-medical-circle-check = fa-icon.with("\u{e511}") +#let fa-house-medical-circle-exclamation = fa-icon.with("\u{e512}") +#let fa-house-medical-circle-xmark = fa-icon.with("\u{e513}") +#let fa-house-medical-flag = fa-icon.with("\u{e514}") +#let fa-house-night = fa-icon.with("\u{e010}") +#let fa-house-person-leave = fa-icon.with("\u{e00f}") +#let fa-house-leave = fa-icon.with("\u{e00f}") +#let fa-house-person-depart = fa-icon.with("\u{e00f}") +#let fa-house-person-return = fa-icon.with("\u{e011}") +#let fa-house-person-arrive = fa-icon.with("\u{e011}") +#let fa-house-return = fa-icon.with("\u{e011}") +#let fa-house-signal = fa-icon.with("\u{e012}") +#let fa-house-tree = fa-icon.with("\u{e1b3}") +#let fa-house-tsunami = fa-icon.with("\u{e515}") +#let fa-house-turret = fa-icon.with("\u{e1b4}") +#let fa-house-user = fa-icon.with("\u{e1b0}") +#let fa-home-user = fa-icon.with("\u{e1b0}") +#let fa-house-water = fa-icon.with("\u{f74f}") +#let fa-house-flood = fa-icon.with("\u{f74f}") +#let fa-house-window = fa-icon.with("\u{e3b3}") +#let fa-houzz = fa-icon.with("\u{f27c}") +#let fa-hryvnia-sign = fa-icon.with("\u{f6f2}") +#let fa-hryvnia = fa-icon.with("\u{f6f2}") +#let fa-html5 = fa-icon.with("\u{f13b}") +#let fa-hubspot = fa-icon.with("\u{f3b2}") +#let fa-hundred-points = fa-icon.with("\u{e41c}") +#let fa-100 = fa-icon.with("\u{e41c}") +#let fa-hurricane = fa-icon.with("\u{f751}") +#let fa-hydra = fa-icon.with("\u{e686}") +#let fa-hyphen = fa-icon.with("\u{2d}") +#let fa-i = fa-icon.with("\u{49}") +#let fa-ice-cream = fa-icon.with("\u{f810}") +#let fa-ice-skate = fa-icon.with("\u{f7ac}") +#let fa-icicles = fa-icon.with("\u{f7ad}") +#let fa-icons = fa-icon.with("\u{f86d}") +#let fa-heart-music-camera-bolt = fa-icon.with("\u{f86d}") +#let fa-i-cursor = fa-icon.with("\u{f246}") +#let fa-id-badge = fa-icon.with("\u{f2c1}") +#let fa-id-card = fa-icon.with("\u{f2c2}") +#let fa-drivers-license = fa-icon.with("\u{f2c2}") +#let fa-id-card-clip = fa-icon.with("\u{f47f}") +#let fa-id-card-alt = fa-icon.with("\u{f47f}") +#let fa-ideal = fa-icon.with("\u{e013}") +#let fa-igloo = fa-icon.with("\u{f7ae}") +#let fa-image = fa-icon.with("\u{f03e}") +#let fa-image-landscape = fa-icon.with("\u{e1b5}") +#let fa-landscape = fa-icon.with("\u{e1b5}") +#let fa-image-polaroid = fa-icon.with("\u{f8c4}") +#let fa-image-polaroid-user = fa-icon.with("\u{e1b6}") +#let fa-image-portrait = fa-icon.with("\u{f3e0}") +#let fa-portrait = fa-icon.with("\u{f3e0}") +#let fa-images = fa-icon.with("\u{f302}") +#let fa-image-slash = fa-icon.with("\u{e1b7}") +#let fa-images-user = fa-icon.with("\u{e1b9}") +#let fa-image-user = fa-icon.with("\u{e1b8}") +#let fa-imdb = fa-icon.with("\u{f2d8}") +#let fa-inbox = fa-icon.with("\u{f01c}") +#let fa-inboxes = fa-icon.with("\u{e1bb}") +#let fa-inbox-full = fa-icon.with("\u{e1ba}") +#let fa-inbox-in = fa-icon.with("\u{f310}") +#let fa-inbox-arrow-down = fa-icon.with("\u{f310}") +#let fa-inbox-out = fa-icon.with("\u{f311}") +#let fa-inbox-arrow-up = fa-icon.with("\u{f311}") +#let fa-indent = fa-icon.with("\u{f03c}") +#let fa-indian-rupee-sign = fa-icon.with("\u{e1bc}") +#let fa-indian-rupee = fa-icon.with("\u{e1bc}") +#let fa-inr = fa-icon.with("\u{e1bc}") +#let fa-industry = fa-icon.with("\u{f275}") +#let fa-industry-windows = fa-icon.with("\u{f3b3}") +#let fa-industry-alt = fa-icon.with("\u{f3b3}") +#let fa-infinity = fa-icon.with("\u{f534}") +#let fa-info = fa-icon.with("\u{f129}") +#let fa-inhaler = fa-icon.with("\u{f5f9}") +#let fa-input-numeric = fa-icon.with("\u{e1bd}") +#let fa-input-pipe = fa-icon.with("\u{e1be}") +#let fa-input-text = fa-icon.with("\u{e1bf}") +#let fa-instagram = fa-icon.with("\u{f16d}") +#let fa-instalod = fa-icon.with("\u{e081}") +#let fa-integral = fa-icon.with("\u{f667}") +#let fa-intercom = fa-icon.with("\u{f7af}") +#let fa-internet-explorer = fa-icon.with("\u{f26b}") +#let fa-interrobang = fa-icon.with("\u{e5ba}") +#let fa-intersection = fa-icon.with("\u{f668}") +#let fa-invision = fa-icon.with("\u{f7b0}") +#let fa-ioxhost = fa-icon.with("\u{f208}") +#let fa-island-tropical = fa-icon.with("\u{f811}") +#let fa-island-tree-palm = fa-icon.with("\u{f811}") +#let fa-italic = fa-icon.with("\u{f033}") +#let fa-itch-io = fa-icon.with("\u{f83a}") +#let fa-itunes = fa-icon.with("\u{f3b4}") +#let fa-itunes-note = fa-icon.with("\u{f3b5}") +#let fa-j = fa-icon.with("\u{4a}") +#let fa-jack-o-lantern = fa-icon.with("\u{f30e}") +#let fa-jar = fa-icon.with("\u{e516}") +#let fa-jar-wheat = fa-icon.with("\u{e517}") +#let fa-java = fa-icon.with("\u{f4e4}") +#let fa-jedi = fa-icon.with("\u{f669}") +#let fa-jedi-order = fa-icon.with("\u{f50e}") +#let fa-jenkins = fa-icon.with("\u{f3b6}") +#let fa-jet-fighter = fa-icon.with("\u{f0fb}") +#let fa-fighter-jet = fa-icon.with("\u{f0fb}") +#let fa-jet-fighter-up = fa-icon.with("\u{e518}") +#let fa-jira = fa-icon.with("\u{f7b1}") +#let fa-joget = fa-icon.with("\u{f3b7}") +#let fa-joint = fa-icon.with("\u{f595}") +#let fa-joomla = fa-icon.with("\u{f1aa}") +#let fa-joystick = fa-icon.with("\u{f8c5}") +#let fa-js = fa-icon.with("\u{f3b8}") +#let fa-jsfiddle = fa-icon.with("\u{f1cc}") +#let fa-jug = fa-icon.with("\u{f8c6}") +#let fa-jug-bottle = fa-icon.with("\u{e5fb}") +#let fa-jug-detergent = fa-icon.with("\u{e519}") +#let fa-jxl = fa-icon.with("\u{e67b}") +#let fa-k = fa-icon.with("\u{4b}") +#let fa-kaaba = fa-icon.with("\u{f66b}") +#let fa-kaggle = fa-icon.with("\u{f5fa}") +#let fa-kazoo = fa-icon.with("\u{f8c7}") +#let fa-kerning = fa-icon.with("\u{f86f}") +#let fa-key = fa-icon.with("\u{f084}") +#let fa-keybase = fa-icon.with("\u{f4f5}") +#let fa-keyboard = fa-icon.with("\u{f11c}") +#let fa-keyboard-brightness = fa-icon.with("\u{e1c0}") +#let fa-keyboard-brightness-low = fa-icon.with("\u{e1c1}") +#let fa-keyboard-down = fa-icon.with("\u{e1c2}") +#let fa-keyboard-left = fa-icon.with("\u{e1c3}") +#let fa-keycdn = fa-icon.with("\u{f3ba}") +#let fa-keynote = fa-icon.with("\u{f66c}") +#let fa-key-skeleton = fa-icon.with("\u{f6f3}") +#let fa-key-skeleton-left-right = fa-icon.with("\u{e3b4}") +#let fa-khanda = fa-icon.with("\u{f66d}") +#let fa-kickstarter = fa-icon.with("\u{f3bb}") +#let fa-square-kickstarter = fa-icon.with("\u{f3bb}") +#let fa-kickstarter-k = fa-icon.with("\u{f3bc}") +#let fa-kidneys = fa-icon.with("\u{f5fb}") +#let fa-kip-sign = fa-icon.with("\u{e1c4}") +#let fa-kitchen-set = fa-icon.with("\u{e51a}") +#let fa-kite = fa-icon.with("\u{f6f4}") +#let fa-kit-medical = fa-icon.with("\u{f479}") +#let fa-first-aid = fa-icon.with("\u{f479}") +#let fa-kiwi-bird = fa-icon.with("\u{f535}") +#let fa-kiwi-fruit = fa-icon.with("\u{e30c}") +#let fa-knife = fa-icon.with("\u{f2e4}") +#let fa-utensil-knife = fa-icon.with("\u{f2e4}") +#let fa-knife-kitchen = fa-icon.with("\u{f6f5}") +#let fa-korvue = fa-icon.with("\u{f42f}") +#let fa-l = fa-icon.with("\u{4c}") +#let fa-lacrosse-stick = fa-icon.with("\u{e3b5}") +#let fa-lacrosse-stick-ball = fa-icon.with("\u{e3b6}") +#let fa-lambda = fa-icon.with("\u{f66e}") +#let fa-lamp = fa-icon.with("\u{f4ca}") +#let fa-lamp-desk = fa-icon.with("\u{e014}") +#let fa-lamp-floor = fa-icon.with("\u{e015}") +#let fa-lamp-street = fa-icon.with("\u{e1c5}") +#let fa-landmark = fa-icon.with("\u{f66f}") +#let fa-landmark-dome = fa-icon.with("\u{f752}") +#let fa-landmark-alt = fa-icon.with("\u{f752}") +#let fa-landmark-flag = fa-icon.with("\u{e51c}") +#let fa-landmark-magnifying-glass = fa-icon.with("\u{e622}") +#let fa-land-mine-on = fa-icon.with("\u{e51b}") +#let fa-language = fa-icon.with("\u{f1ab}") +#let fa-laptop = fa-icon.with("\u{f109}") +#let fa-laptop-arrow-down = fa-icon.with("\u{e1c6}") +#let fa-laptop-binary = fa-icon.with("\u{e5e7}") +#let fa-laptop-code = fa-icon.with("\u{f5fc}") +#let fa-laptop-file = fa-icon.with("\u{e51d}") +#let fa-laptop-medical = fa-icon.with("\u{f812}") +#let fa-laptop-mobile = fa-icon.with("\u{f87a}") +#let fa-phone-laptop = fa-icon.with("\u{f87a}") +#let fa-laptop-slash = fa-icon.with("\u{e1c7}") +#let fa-laravel = fa-icon.with("\u{f3bd}") +#let fa-lari-sign = fa-icon.with("\u{e1c8}") +#let fa-lasso = fa-icon.with("\u{f8c8}") +#let fa-lasso-sparkles = fa-icon.with("\u{e1c9}") +#let fa-lastfm = fa-icon.with("\u{f202}") +#let fa-layer-group = fa-icon.with("\u{f5fd}") +#let fa-layer-minus = fa-icon.with("\u{f5fe}") +#let fa-layer-group-minus = fa-icon.with("\u{f5fe}") +#let fa-layer-plus = fa-icon.with("\u{f5ff}") +#let fa-layer-group-plus = fa-icon.with("\u{f5ff}") +#let fa-leaf = fa-icon.with("\u{f06c}") +#let fa-leaf-heart = fa-icon.with("\u{f4cb}") +#let fa-leaf-maple = fa-icon.with("\u{f6f6}") +#let fa-leaf-oak = fa-icon.with("\u{f6f7}") +#let fa-leafy-green = fa-icon.with("\u{e41d}") +#let fa-leanpub = fa-icon.with("\u{f212}") +#let fa-left = fa-icon.with("\u{f355}") +#let fa-arrow-alt-left = fa-icon.with("\u{f355}") +#let fa-left-from-bracket = fa-icon.with("\u{e66c}") +#let fa-left-from-line = fa-icon.with("\u{f348}") +#let fa-arrow-alt-from-right = fa-icon.with("\u{f348}") +#let fa-left-long = fa-icon.with("\u{f30a}") +#let fa-long-arrow-alt-left = fa-icon.with("\u{f30a}") +#let fa-left-long-to-line = fa-icon.with("\u{e41e}") +#let fa-left-right = fa-icon.with("\u{f337}") +#let fa-arrows-alt-h = fa-icon.with("\u{f337}") +#let fa-left-to-bracket = fa-icon.with("\u{e66d}") +#let fa-left-to-line = fa-icon.with("\u{f34b}") +#let fa-arrow-alt-to-left = fa-icon.with("\u{f34b}") +#let fa-lemon = fa-icon.with("\u{f094}") +#let fa-less = fa-icon.with("\u{f41d}") +#let fa-less-than = fa-icon.with("\u{3c}") +#let fa-less-than-equal = fa-icon.with("\u{f537}") +#let fa-letterboxd = fa-icon.with("\u{e62d}") +#let fa-life-ring = fa-icon.with("\u{f1cd}") +#let fa-lightbulb = fa-icon.with("\u{f0eb}") +#let fa-lightbulb-cfl = fa-icon.with("\u{e5a6}") +#let fa-lightbulb-cfl-on = fa-icon.with("\u{e5a7}") +#let fa-lightbulb-dollar = fa-icon.with("\u{f670}") +#let fa-lightbulb-exclamation = fa-icon.with("\u{f671}") +#let fa-lightbulb-exclamation-on = fa-icon.with("\u{e1ca}") +#let fa-lightbulb-gear = fa-icon.with("\u{e5fd}") +#let fa-lightbulb-message = fa-icon.with("\u{e687}") +#let fa-lightbulb-on = fa-icon.with("\u{f672}") +#let fa-lightbulb-slash = fa-icon.with("\u{f673}") +#let fa-light-ceiling = fa-icon.with("\u{e016}") +#let fa-light-emergency = fa-icon.with("\u{e41f}") +#let fa-light-emergency-on = fa-icon.with("\u{e420}") +#let fa-lighthouse = fa-icon.with("\u{e612}") +#let fa-lights-holiday = fa-icon.with("\u{f7b2}") +#let fa-light-switch = fa-icon.with("\u{e017}") +#let fa-light-switch-off = fa-icon.with("\u{e018}") +#let fa-light-switch-on = fa-icon.with("\u{e019}") +#let fa-line = fa-icon.with("\u{f3c0}") +#let fa-line-columns = fa-icon.with("\u{f870}") +#let fa-line-height = fa-icon.with("\u{f871}") +#let fa-lines-leaning = fa-icon.with("\u{e51e}") +#let fa-link = fa-icon.with("\u{f0c1}") +#let fa-chain = fa-icon.with("\u{f0c1}") +#let fa-linkedin = fa-icon.with("\u{f08c}") +#let fa-linkedin-in = fa-icon.with("\u{f0e1}") +#let fa-link-horizontal = fa-icon.with("\u{e1cb}") +#let fa-chain-horizontal = fa-icon.with("\u{e1cb}") +#let fa-link-horizontal-slash = fa-icon.with("\u{e1cc}") +#let fa-chain-horizontal-slash = fa-icon.with("\u{e1cc}") +#let fa-link-simple = fa-icon.with("\u{e1cd}") +#let fa-link-simple-slash = fa-icon.with("\u{e1ce}") +#let fa-link-slash = fa-icon.with("\u{f127}") +#let fa-chain-broken = fa-icon.with("\u{f127}") +#let fa-chain-slash = fa-icon.with("\u{f127}") +#let fa-unlink = fa-icon.with("\u{f127}") +#let fa-linode = fa-icon.with("\u{f2b8}") +#let fa-linux = fa-icon.with("\u{f17c}") +#let fa-lips = fa-icon.with("\u{f600}") +#let fa-lira-sign = fa-icon.with("\u{f195}") +#let fa-list = fa-icon.with("\u{f03a}") +#let fa-list-squares = fa-icon.with("\u{f03a}") +#let fa-list-check = fa-icon.with("\u{f0ae}") +#let fa-tasks = fa-icon.with("\u{f0ae}") +#let fa-list-dropdown = fa-icon.with("\u{e1cf}") +#let fa-list-music = fa-icon.with("\u{f8c9}") +#let fa-list-ol = fa-icon.with("\u{f0cb}") +#let fa-list-1-2 = fa-icon.with("\u{f0cb}") +#let fa-list-numeric = fa-icon.with("\u{f0cb}") +#let fa-list-radio = fa-icon.with("\u{e1d0}") +#let fa-list-timeline = fa-icon.with("\u{e1d1}") +#let fa-list-tree = fa-icon.with("\u{e1d2}") +#let fa-list-ul = fa-icon.with("\u{f0ca}") +#let fa-list-dots = fa-icon.with("\u{f0ca}") +#let fa-litecoin-sign = fa-icon.with("\u{e1d3}") +#let fa-loader = fa-icon.with("\u{e1d4}") +#let fa-lobster = fa-icon.with("\u{e421}") +#let fa-location-arrow = fa-icon.with("\u{f124}") +#let fa-location-arrow-up = fa-icon.with("\u{e63a}") +#let fa-location-check = fa-icon.with("\u{f606}") +#let fa-map-marker-check = fa-icon.with("\u{f606}") +#let fa-location-crosshairs = fa-icon.with("\u{f601}") +#let fa-location = fa-icon.with("\u{f601}") +#let fa-location-crosshairs-slash = fa-icon.with("\u{f603}") +#let fa-location-slash = fa-icon.with("\u{f603}") +#let fa-location-dot = fa-icon.with("\u{f3c5}") +#let fa-map-marker-alt = fa-icon.with("\u{f3c5}") +#let fa-location-dot-slash = fa-icon.with("\u{f605}") +#let fa-map-marker-alt-slash = fa-icon.with("\u{f605}") +#let fa-location-exclamation = fa-icon.with("\u{f608}") +#let fa-map-marker-exclamation = fa-icon.with("\u{f608}") +#let fa-location-minus = fa-icon.with("\u{f609}") +#let fa-map-marker-minus = fa-icon.with("\u{f609}") +#let fa-location-pen = fa-icon.with("\u{f607}") +#let fa-map-marker-edit = fa-icon.with("\u{f607}") +#let fa-location-pin = fa-icon.with("\u{f041}") +#let fa-map-marker = fa-icon.with("\u{f041}") +#let fa-location-pin-lock = fa-icon.with("\u{e51f}") +#let fa-location-pin-slash = fa-icon.with("\u{f60c}") +#let fa-map-marker-slash = fa-icon.with("\u{f60c}") +#let fa-location-plus = fa-icon.with("\u{f60a}") +#let fa-map-marker-plus = fa-icon.with("\u{f60a}") +#let fa-location-question = fa-icon.with("\u{f60b}") +#let fa-map-marker-question = fa-icon.with("\u{f60b}") +#let fa-location-smile = fa-icon.with("\u{f60d}") +#let fa-map-marker-smile = fa-icon.with("\u{f60d}") +#let fa-location-xmark = fa-icon.with("\u{f60e}") +#let fa-map-marker-times = fa-icon.with("\u{f60e}") +#let fa-map-marker-xmark = fa-icon.with("\u{f60e}") +#let fa-lock = fa-icon.with("\u{f023}") +#let fa-lock-a = fa-icon.with("\u{e422}") +#let fa-lock-hashtag = fa-icon.with("\u{e423}") +#let fa-lock-keyhole = fa-icon.with("\u{f30d}") +#let fa-lock-alt = fa-icon.with("\u{f30d}") +#let fa-lock-keyhole-open = fa-icon.with("\u{f3c2}") +#let fa-lock-open-alt = fa-icon.with("\u{f3c2}") +#let fa-lock-open = fa-icon.with("\u{f3c1}") +#let fa-locust = fa-icon.with("\u{e520}") +#let fa-lollipop = fa-icon.with("\u{e424}") +#let fa-lollypop = fa-icon.with("\u{e424}") +#let fa-loveseat = fa-icon.with("\u{f4cc}") +#let fa-couch-small = fa-icon.with("\u{f4cc}") +#let fa-luchador-mask = fa-icon.with("\u{f455}") +#let fa-luchador = fa-icon.with("\u{f455}") +#let fa-mask-luchador = fa-icon.with("\u{f455}") +#let fa-lungs = fa-icon.with("\u{f604}") +#let fa-lungs-virus = fa-icon.with("\u{e067}") +#let fa-lyft = fa-icon.with("\u{f3c3}") +#let fa-m = fa-icon.with("\u{4d}") +#let fa-mace = fa-icon.with("\u{f6f8}") +#let fa-magento = fa-icon.with("\u{f3c4}") +#let fa-magnet = fa-icon.with("\u{f076}") +#let fa-magnifying-glass = fa-icon.with("\u{f002}") +#let fa-search = fa-icon.with("\u{f002}") +#let fa-magnifying-glass-arrow-right = fa-icon.with("\u{e521}") +#let fa-magnifying-glass-arrows-rotate = fa-icon.with("\u{e65e}") +#let fa-magnifying-glass-chart = fa-icon.with("\u{e522}") +#let fa-magnifying-glass-dollar = fa-icon.with("\u{f688}") +#let fa-search-dollar = fa-icon.with("\u{f688}") +#let fa-magnifying-glass-location = fa-icon.with("\u{f689}") +#let fa-search-location = fa-icon.with("\u{f689}") +#let fa-magnifying-glass-minus = fa-icon.with("\u{f010}") +#let fa-search-minus = fa-icon.with("\u{f010}") +#let fa-magnifying-glass-music = fa-icon.with("\u{e65f}") +#let fa-magnifying-glass-play = fa-icon.with("\u{e660}") +#let fa-magnifying-glass-plus = fa-icon.with("\u{f00e}") +#let fa-search-plus = fa-icon.with("\u{f00e}") +#let fa-magnifying-glass-waveform = fa-icon.with("\u{e661}") +#let fa-mailbox = fa-icon.with("\u{f813}") +#let fa-mailbox-flag-up = fa-icon.with("\u{e5bb}") +#let fa-mailchimp = fa-icon.with("\u{f59e}") +#let fa-manat-sign = fa-icon.with("\u{e1d5}") +#let fa-mandalorian = fa-icon.with("\u{f50f}") +#let fa-mandolin = fa-icon.with("\u{f6f9}") +#let fa-mango = fa-icon.with("\u{e30f}") +#let fa-manhole = fa-icon.with("\u{e1d6}") +#let fa-map = fa-icon.with("\u{f279}") +#let fa-map-location = fa-icon.with("\u{f59f}") +#let fa-map-marked = fa-icon.with("\u{f59f}") +#let fa-map-location-dot = fa-icon.with("\u{f5a0}") +#let fa-map-marked-alt = fa-icon.with("\u{f5a0}") +#let fa-map-pin = fa-icon.with("\u{f276}") +#let fa-markdown = fa-icon.with("\u{f60f}") +#let fa-marker = fa-icon.with("\u{f5a1}") +#let fa-mars = fa-icon.with("\u{f222}") +#let fa-mars-and-venus = fa-icon.with("\u{f224}") +#let fa-mars-and-venus-burst = fa-icon.with("\u{e523}") +#let fa-mars-double = fa-icon.with("\u{f227}") +#let fa-mars-stroke = fa-icon.with("\u{f229}") +#let fa-mars-stroke-right = fa-icon.with("\u{f22b}") +#let fa-mars-stroke-h = fa-icon.with("\u{f22b}") +#let fa-mars-stroke-up = fa-icon.with("\u{f22a}") +#let fa-mars-stroke-v = fa-icon.with("\u{f22a}") +#let fa-martini-glass = fa-icon.with("\u{f57b}") +#let fa-glass-martini-alt = fa-icon.with("\u{f57b}") +#let fa-martini-glass-citrus = fa-icon.with("\u{f561}") +#let fa-cocktail = fa-icon.with("\u{f561}") +#let fa-martini-glass-empty = fa-icon.with("\u{f000}") +#let fa-glass-martini = fa-icon.with("\u{f000}") +#let fa-mask = fa-icon.with("\u{f6fa}") +#let fa-mask-face = fa-icon.with("\u{e1d7}") +#let fa-mask-snorkel = fa-icon.with("\u{e3b7}") +#let fa-masks-theater = fa-icon.with("\u{f630}") +#let fa-theater-masks = fa-icon.with("\u{f630}") +#let fa-mask-ventilator = fa-icon.with("\u{e524}") +#let fa-mastodon = fa-icon.with("\u{f4f6}") +#let fa-mattress-pillow = fa-icon.with("\u{e525}") +#let fa-maxcdn = fa-icon.with("\u{f136}") +#let fa-maximize = fa-icon.with("\u{f31e}") +#let fa-expand-arrows-alt = fa-icon.with("\u{f31e}") +#let fa-mdb = fa-icon.with("\u{f8ca}") +#let fa-meat = fa-icon.with("\u{f814}") +#let fa-medal = fa-icon.with("\u{f5a2}") +#let fa-medapps = fa-icon.with("\u{f3c6}") +#let fa-medium = fa-icon.with("\u{f23a}") +#let fa-medium-m = fa-icon.with("\u{f23a}") +#let fa-medrt = fa-icon.with("\u{f3c8}") +#let fa-meetup = fa-icon.with("\u{f2e0}") +#let fa-megaphone = fa-icon.with("\u{f675}") +#let fa-megaport = fa-icon.with("\u{f5a3}") +#let fa-melon = fa-icon.with("\u{e310}") +#let fa-melon-slice = fa-icon.with("\u{e311}") +#let fa-memo = fa-icon.with("\u{e1d8}") +#let fa-memo-circle-check = fa-icon.with("\u{e1d9}") +#let fa-memo-circle-info = fa-icon.with("\u{e49a}") +#let fa-memo-pad = fa-icon.with("\u{e1da}") +#let fa-memory = fa-icon.with("\u{f538}") +#let fa-mendeley = fa-icon.with("\u{f7b3}") +#let fa-menorah = fa-icon.with("\u{f676}") +#let fa-mercury = fa-icon.with("\u{f223}") +#let fa-merge = fa-icon.with("\u{e526}") +#let fa-message = fa-icon.with("\u{f27a}") +#let fa-comment-alt = fa-icon.with("\u{f27a}") +#let fa-message-arrow-down = fa-icon.with("\u{e1db}") +#let fa-comment-alt-arrow-down = fa-icon.with("\u{e1db}") +#let fa-message-arrow-up = fa-icon.with("\u{e1dc}") +#let fa-comment-alt-arrow-up = fa-icon.with("\u{e1dc}") +#let fa-message-arrow-up-right = fa-icon.with("\u{e1dd}") +#let fa-message-bot = fa-icon.with("\u{e3b8}") +#let fa-message-captions = fa-icon.with("\u{e1de}") +#let fa-comment-alt-captions = fa-icon.with("\u{e1de}") +#let fa-message-check = fa-icon.with("\u{f4a2}") +#let fa-comment-alt-check = fa-icon.with("\u{f4a2}") +#let fa-message-code = fa-icon.with("\u{e1df}") +#let fa-message-dollar = fa-icon.with("\u{f650}") +#let fa-comment-alt-dollar = fa-icon.with("\u{f650}") +#let fa-message-dots = fa-icon.with("\u{f4a3}") +#let fa-comment-alt-dots = fa-icon.with("\u{f4a3}") +#let fa-messaging = fa-icon.with("\u{f4a3}") +#let fa-message-exclamation = fa-icon.with("\u{f4a5}") +#let fa-comment-alt-exclamation = fa-icon.with("\u{f4a5}") +#let fa-message-heart = fa-icon.with("\u{e5c9}") +#let fa-message-image = fa-icon.with("\u{e1e0}") +#let fa-comment-alt-image = fa-icon.with("\u{e1e0}") +#let fa-message-lines = fa-icon.with("\u{f4a6}") +#let fa-comment-alt-lines = fa-icon.with("\u{f4a6}") +#let fa-message-medical = fa-icon.with("\u{f7f4}") +#let fa-comment-alt-medical = fa-icon.with("\u{f7f4}") +#let fa-message-middle = fa-icon.with("\u{e1e1}") +#let fa-comment-middle-alt = fa-icon.with("\u{e1e1}") +#let fa-message-middle-top = fa-icon.with("\u{e1e2}") +#let fa-comment-middle-top-alt = fa-icon.with("\u{e1e2}") +#let fa-message-minus = fa-icon.with("\u{f4a7}") +#let fa-comment-alt-minus = fa-icon.with("\u{f4a7}") +#let fa-message-music = fa-icon.with("\u{f8af}") +#let fa-comment-alt-music = fa-icon.with("\u{f8af}") +#let fa-message-pen = fa-icon.with("\u{f4a4}") +#let fa-comment-alt-edit = fa-icon.with("\u{f4a4}") +#let fa-message-edit = fa-icon.with("\u{f4a4}") +#let fa-message-plus = fa-icon.with("\u{f4a8}") +#let fa-comment-alt-plus = fa-icon.with("\u{f4a8}") +#let fa-message-question = fa-icon.with("\u{e1e3}") +#let fa-message-quote = fa-icon.with("\u{e1e4}") +#let fa-comment-alt-quote = fa-icon.with("\u{e1e4}") +#let fa-messages = fa-icon.with("\u{f4b6}") +#let fa-comments-alt = fa-icon.with("\u{f4b6}") +#let fa-messages-dollar = fa-icon.with("\u{f652}") +#let fa-comments-alt-dollar = fa-icon.with("\u{f652}") +#let fa-message-slash = fa-icon.with("\u{f4a9}") +#let fa-comment-alt-slash = fa-icon.with("\u{f4a9}") +#let fa-message-smile = fa-icon.with("\u{f4aa}") +#let fa-comment-alt-smile = fa-icon.with("\u{f4aa}") +#let fa-message-sms = fa-icon.with("\u{e1e5}") +#let fa-messages-question = fa-icon.with("\u{e1e7}") +#let fa-message-text = fa-icon.with("\u{e1e6}") +#let fa-comment-alt-text = fa-icon.with("\u{e1e6}") +#let fa-message-xmark = fa-icon.with("\u{f4ab}") +#let fa-comment-alt-times = fa-icon.with("\u{f4ab}") +#let fa-message-times = fa-icon.with("\u{f4ab}") +#let fa-meta = fa-icon.with("\u{e49b}") +#let fa-meteor = fa-icon.with("\u{f753}") +#let fa-meter = fa-icon.with("\u{e1e8}") +#let fa-meter-bolt = fa-icon.with("\u{e1e9}") +#let fa-meter-droplet = fa-icon.with("\u{e1ea}") +#let fa-meter-fire = fa-icon.with("\u{e1eb}") +#let fa-microblog = fa-icon.with("\u{e01a}") +#let fa-microchip = fa-icon.with("\u{f2db}") +#let fa-microchip-ai = fa-icon.with("\u{e1ec}") +#let fa-microphone = fa-icon.with("\u{f130}") +#let fa-microphone-lines = fa-icon.with("\u{f3c9}") +#let fa-microphone-alt = fa-icon.with("\u{f3c9}") +#let fa-microphone-lines-slash = fa-icon.with("\u{f539}") +#let fa-microphone-alt-slash = fa-icon.with("\u{f539}") +#let fa-microphone-slash = fa-icon.with("\u{f131}") +#let fa-microphone-stand = fa-icon.with("\u{f8cb}") +#let fa-microscope = fa-icon.with("\u{f610}") +#let fa-microsoft = fa-icon.with("\u{f3ca}") +#let fa-microwave = fa-icon.with("\u{e01b}") +#let fa-mill-sign = fa-icon.with("\u{e1ed}") +#let fa-minimize = fa-icon.with("\u{f78c}") +#let fa-compress-arrows-alt = fa-icon.with("\u{f78c}") +#let fa-mintbit = fa-icon.with("\u{e62f}") +#let fa-minus = fa-icon.with("\u{f068}") +#let fa-subtract = fa-icon.with("\u{f068}") +#let fa-mistletoe = fa-icon.with("\u{f7b4}") +#let fa-mitten = fa-icon.with("\u{f7b5}") +#let fa-mix = fa-icon.with("\u{f3cb}") +#let fa-mixcloud = fa-icon.with("\u{f289}") +#let fa-mixer = fa-icon.with("\u{e056}") +#let fa-mizuni = fa-icon.with("\u{f3cc}") +#let fa-mobile = fa-icon.with("\u{f3ce}") +#let fa-mobile-android = fa-icon.with("\u{f3ce}") +#let fa-mobile-phone = fa-icon.with("\u{f3ce}") +#let fa-mobile-button = fa-icon.with("\u{f10b}") +#let fa-mobile-notch = fa-icon.with("\u{e1ee}") +#let fa-mobile-iphone = fa-icon.with("\u{e1ee}") +#let fa-mobile-retro = fa-icon.with("\u{e527}") +#let fa-mobile-screen = fa-icon.with("\u{f3cf}") +#let fa-mobile-android-alt = fa-icon.with("\u{f3cf}") +#let fa-mobile-screen-button = fa-icon.with("\u{f3cd}") +#let fa-mobile-alt = fa-icon.with("\u{f3cd}") +#let fa-mobile-signal = fa-icon.with("\u{e1ef}") +#let fa-mobile-signal-out = fa-icon.with("\u{e1f0}") +#let fa-modx = fa-icon.with("\u{f285}") +#let fa-monero = fa-icon.with("\u{f3d0}") +#let fa-money-bill = fa-icon.with("\u{f0d6}") +#let fa-money-bill-1 = fa-icon.with("\u{f3d1}") +#let fa-money-bill-alt = fa-icon.with("\u{f3d1}") +#let fa-money-bill-1-wave = fa-icon.with("\u{f53b}") +#let fa-money-bill-wave-alt = fa-icon.with("\u{f53b}") +#let fa-money-bills = fa-icon.with("\u{e1f3}") +#let fa-money-bill-simple = fa-icon.with("\u{e1f1}") +#let fa-money-bill-simple-wave = fa-icon.with("\u{e1f2}") +#let fa-money-bills-simple = fa-icon.with("\u{e1f4}") +#let fa-money-bills-alt = fa-icon.with("\u{e1f4}") +#let fa-money-bill-transfer = fa-icon.with("\u{e528}") +#let fa-money-bill-trend-up = fa-icon.with("\u{e529}") +#let fa-money-bill-wave = fa-icon.with("\u{f53a}") +#let fa-money-bill-wheat = fa-icon.with("\u{e52a}") +#let fa-money-check = fa-icon.with("\u{f53c}") +#let fa-money-check-dollar = fa-icon.with("\u{f53d}") +#let fa-money-check-alt = fa-icon.with("\u{f53d}") +#let fa-money-check-dollar-pen = fa-icon.with("\u{f873}") +#let fa-money-check-edit-alt = fa-icon.with("\u{f873}") +#let fa-money-check-pen = fa-icon.with("\u{f872}") +#let fa-money-check-edit = fa-icon.with("\u{f872}") +#let fa-money-from-bracket = fa-icon.with("\u{e312}") +#let fa-money-simple-from-bracket = fa-icon.with("\u{e313}") +#let fa-monitor-waveform = fa-icon.with("\u{f611}") +#let fa-monitor-heart-rate = fa-icon.with("\u{f611}") +#let fa-monkey = fa-icon.with("\u{f6fb}") +#let fa-monument = fa-icon.with("\u{f5a6}") +#let fa-moon = fa-icon.with("\u{f186}") +#let fa-moon-cloud = fa-icon.with("\u{f754}") +#let fa-moon-over-sun = fa-icon.with("\u{f74a}") +#let fa-eclipse-alt = fa-icon.with("\u{f74a}") +#let fa-moon-stars = fa-icon.with("\u{f755}") +#let fa-moped = fa-icon.with("\u{e3b9}") +#let fa-mortar-pestle = fa-icon.with("\u{f5a7}") +#let fa-mosque = fa-icon.with("\u{f678}") +#let fa-mosquito = fa-icon.with("\u{e52b}") +#let fa-mosquito-net = fa-icon.with("\u{e52c}") +#let fa-motorcycle = fa-icon.with("\u{f21c}") +#let fa-mound = fa-icon.with("\u{e52d}") +#let fa-mountain = fa-icon.with("\u{f6fc}") +#let fa-mountain-city = fa-icon.with("\u{e52e}") +#let fa-mountains = fa-icon.with("\u{f6fd}") +#let fa-mountain-sun = fa-icon.with("\u{e52f}") +#let fa-mouse-field = fa-icon.with("\u{e5a8}") +#let fa-mp3-player = fa-icon.with("\u{f8ce}") +#let fa-mug = fa-icon.with("\u{f874}") +#let fa-mug-hot = fa-icon.with("\u{f7b6}") +#let fa-mug-marshmallows = fa-icon.with("\u{f7b7}") +#let fa-mug-saucer = fa-icon.with("\u{f0f4}") +#let fa-coffee = fa-icon.with("\u{f0f4}") +#let fa-mug-tea = fa-icon.with("\u{f875}") +#let fa-mug-tea-saucer = fa-icon.with("\u{e1f5}") +#let fa-mushroom = fa-icon.with("\u{e425}") +#let fa-music = fa-icon.with("\u{f001}") +#let fa-music-magnifying-glass = fa-icon.with("\u{e662}") +#let fa-music-note = fa-icon.with("\u{f8cf}") +#let fa-music-alt = fa-icon.with("\u{f8cf}") +#let fa-music-note-slash = fa-icon.with("\u{f8d0}") +#let fa-music-alt-slash = fa-icon.with("\u{f8d0}") +#let fa-music-slash = fa-icon.with("\u{f8d1}") +#let fa-mustache = fa-icon.with("\u{e5bc}") +#let fa-n = fa-icon.with("\u{4e}") +#let fa-naira-sign = fa-icon.with("\u{e1f6}") +#let fa-napster = fa-icon.with("\u{f3d2}") +#let fa-narwhal = fa-icon.with("\u{f6fe}") +#let fa-neos = fa-icon.with("\u{f612}") +#let fa-nesting-dolls = fa-icon.with("\u{e3ba}") +#let fa-network-wired = fa-icon.with("\u{f6ff}") +#let fa-neuter = fa-icon.with("\u{f22c}") +#let fa-newspaper = fa-icon.with("\u{f1ea}") +#let fa-nfc = fa-icon.with("\u{e1f7}") +#let fa-nfc-directional = fa-icon.with("\u{e530}") +#let fa-nfc-lock = fa-icon.with("\u{e1f8}") +#let fa-nfc-magnifying-glass = fa-icon.with("\u{e1f9}") +#let fa-nfc-pen = fa-icon.with("\u{e1fa}") +#let fa-nfc-signal = fa-icon.with("\u{e1fb}") +#let fa-nfc-slash = fa-icon.with("\u{e1fc}") +#let fa-nfc-symbol = fa-icon.with("\u{e531}") +#let fa-nfc-trash = fa-icon.with("\u{e1fd}") +#let fa-nimblr = fa-icon.with("\u{f5a8}") +#let fa-node = fa-icon.with("\u{f419}") +#let fa-node-js = fa-icon.with("\u{f3d3}") +#let fa-nose = fa-icon.with("\u{e5bd}") +#let fa-notdef = fa-icon.with("\u{e1fe}") +#let fa-note = fa-icon.with("\u{e1ff}") +#let fa-notebook = fa-icon.with("\u{e201}") +#let fa-note-medical = fa-icon.with("\u{e200}") +#let fa-not-equal = fa-icon.with("\u{f53e}") +#let fa-notes = fa-icon.with("\u{e202}") +#let fa-notes-medical = fa-icon.with("\u{f481}") +#let fa-note-sticky = fa-icon.with("\u{f249}") +#let fa-sticky-note = fa-icon.with("\u{f249}") +#let fa-npm = fa-icon.with("\u{f3d4}") +#let fa-ns8 = fa-icon.with("\u{f3d5}") +#let fa-nutritionix = fa-icon.with("\u{f3d6}") +#let fa-o = fa-icon.with("\u{4f}") +#let fa-object-exclude = fa-icon.with("\u{e49c}") +#let fa-object-group = fa-icon.with("\u{f247}") +#let fa-object-intersect = fa-icon.with("\u{e49d}") +#let fa-objects-align-bottom = fa-icon.with("\u{e3bb}") +#let fa-objects-align-center-horizontal = fa-icon.with("\u{e3bc}") +#let fa-objects-align-center-vertical = fa-icon.with("\u{e3bd}") +#let fa-objects-align-left = fa-icon.with("\u{e3be}") +#let fa-objects-align-right = fa-icon.with("\u{e3bf}") +#let fa-objects-align-top = fa-icon.with("\u{e3c0}") +#let fa-objects-column = fa-icon.with("\u{e3c1}") +#let fa-object-subtract = fa-icon.with("\u{e49e}") +#let fa-object-ungroup = fa-icon.with("\u{f248}") +#let fa-object-union = fa-icon.with("\u{e49f}") +#let fa-octagon = fa-icon.with("\u{f306}") +#let fa-octagon-check = fa-icon.with("\u{e426}") +#let fa-octagon-divide = fa-icon.with("\u{e203}") +#let fa-octagon-exclamation = fa-icon.with("\u{e204}") +#let fa-octagon-minus = fa-icon.with("\u{f308}") +#let fa-minus-octagon = fa-icon.with("\u{f308}") +#let fa-octagon-plus = fa-icon.with("\u{f301}") +#let fa-plus-octagon = fa-icon.with("\u{f301}") +#let fa-octagon-xmark = fa-icon.with("\u{f2f0}") +#let fa-times-octagon = fa-icon.with("\u{f2f0}") +#let fa-xmark-octagon = fa-icon.with("\u{f2f0}") +#let fa-octopus = fa-icon.with("\u{e688}") +#let fa-octopus-deploy = fa-icon.with("\u{e082}") +#let fa-odnoklassniki = fa-icon.with("\u{f263}") +#let fa-odysee = fa-icon.with("\u{e5c6}") +#let fa-oil-can = fa-icon.with("\u{f613}") +#let fa-oil-can-drip = fa-icon.with("\u{e205}") +#let fa-oil-temperature = fa-icon.with("\u{f614}") +#let fa-oil-temp = fa-icon.with("\u{f614}") +#let fa-oil-well = fa-icon.with("\u{e532}") +#let fa-old-republic = fa-icon.with("\u{f510}") +#let fa-olive = fa-icon.with("\u{e316}") +#let fa-olive-branch = fa-icon.with("\u{e317}") +#let fa-om = fa-icon.with("\u{f679}") +#let fa-omega = fa-icon.with("\u{f67a}") +#let fa-onion = fa-icon.with("\u{e427}") +#let fa-opencart = fa-icon.with("\u{f23d}") +#let fa-openid = fa-icon.with("\u{f19b}") +#let fa-opensuse = fa-icon.with("\u{e62b}") +#let fa-opera = fa-icon.with("\u{f26a}") +#let fa-optin-monster = fa-icon.with("\u{f23c}") +#let fa-option = fa-icon.with("\u{e318}") +#let fa-orcid = fa-icon.with("\u{f8d2}") +#let fa-ornament = fa-icon.with("\u{f7b8}") +#let fa-osi = fa-icon.with("\u{f41a}") +#let fa-otter = fa-icon.with("\u{f700}") +#let fa-outdent = fa-icon.with("\u{f03b}") +#let fa-dedent = fa-icon.with("\u{f03b}") +#let fa-outlet = fa-icon.with("\u{e01c}") +#let fa-oven = fa-icon.with("\u{e01d}") +#let fa-overline = fa-icon.with("\u{f876}") +#let fa-p = fa-icon.with("\u{50}") +#let fa-padlet = fa-icon.with("\u{e4a0}") +#let fa-page = fa-icon.with("\u{e428}") +#let fa-page4 = fa-icon.with("\u{f3d7}") +#let fa-page-caret-down = fa-icon.with("\u{e429}") +#let fa-file-caret-down = fa-icon.with("\u{e429}") +#let fa-page-caret-up = fa-icon.with("\u{e42a}") +#let fa-file-caret-up = fa-icon.with("\u{e42a}") +#let fa-pagelines = fa-icon.with("\u{f18c}") +#let fa-pager = fa-icon.with("\u{f815}") +#let fa-paintbrush = fa-icon.with("\u{f1fc}") +#let fa-paint-brush = fa-icon.with("\u{f1fc}") +#let fa-paintbrush-fine = fa-icon.with("\u{f5a9}") +#let fa-paint-brush-alt = fa-icon.with("\u{f5a9}") +#let fa-paint-brush-fine = fa-icon.with("\u{f5a9}") +#let fa-paintbrush-alt = fa-icon.with("\u{f5a9}") +#let fa-paintbrush-pencil = fa-icon.with("\u{e206}") +#let fa-paint-roller = fa-icon.with("\u{f5aa}") +#let fa-palette = fa-icon.with("\u{f53f}") +#let fa-palfed = fa-icon.with("\u{f3d8}") +#let fa-pallet = fa-icon.with("\u{f482}") +#let fa-pallet-box = fa-icon.with("\u{e208}") +#let fa-pallet-boxes = fa-icon.with("\u{f483}") +#let fa-palette-boxes = fa-icon.with("\u{f483}") +#let fa-pallet-alt = fa-icon.with("\u{f483}") +#let fa-pancakes = fa-icon.with("\u{e42d}") +#let fa-panel-ews = fa-icon.with("\u{e42e}") +#let fa-panel-fire = fa-icon.with("\u{e42f}") +#let fa-pan-food = fa-icon.with("\u{e42b}") +#let fa-pan-frying = fa-icon.with("\u{e42c}") +#let fa-panorama = fa-icon.with("\u{e209}") +#let fa-paperclip = fa-icon.with("\u{f0c6}") +#let fa-paperclip-vertical = fa-icon.with("\u{e3c2}") +#let fa-paper-plane = fa-icon.with("\u{f1d8}") +#let fa-paper-plane-top = fa-icon.with("\u{e20a}") +#let fa-paper-plane-alt = fa-icon.with("\u{e20a}") +#let fa-send = fa-icon.with("\u{e20a}") +#let fa-parachute-box = fa-icon.with("\u{f4cd}") +#let fa-paragraph = fa-icon.with("\u{f1dd}") +#let fa-paragraph-left = fa-icon.with("\u{f878}") +#let fa-paragraph-rtl = fa-icon.with("\u{f878}") +#let fa-party-bell = fa-icon.with("\u{e31a}") +#let fa-party-horn = fa-icon.with("\u{e31b}") +#let fa-passport = fa-icon.with("\u{f5ab}") +#let fa-paste = fa-icon.with("\u{f0ea}") +#let fa-file-clipboard = fa-icon.with("\u{f0ea}") +#let fa-patreon = fa-icon.with("\u{f3d9}") +#let fa-pause = fa-icon.with("\u{f04c}") +#let fa-paw = fa-icon.with("\u{f1b0}") +#let fa-paw-claws = fa-icon.with("\u{f702}") +#let fa-paw-simple = fa-icon.with("\u{f701}") +#let fa-paw-alt = fa-icon.with("\u{f701}") +#let fa-paypal = fa-icon.with("\u{f1ed}") +#let fa-peace = fa-icon.with("\u{f67c}") +#let fa-peach = fa-icon.with("\u{e20b}") +#let fa-peanut = fa-icon.with("\u{e430}") +#let fa-peanuts = fa-icon.with("\u{e431}") +#let fa-peapod = fa-icon.with("\u{e31c}") +#let fa-pear = fa-icon.with("\u{e20c}") +#let fa-pedestal = fa-icon.with("\u{e20d}") +#let fa-pegasus = fa-icon.with("\u{f703}") +#let fa-pen = fa-icon.with("\u{f304}") +#let fa-pencil = fa-icon.with("\u{f303}") +#let fa-pencil-alt = fa-icon.with("\u{f303}") +#let fa-pencil-mechanical = fa-icon.with("\u{e5ca}") +#let fa-pencil-slash = fa-icon.with("\u{e215}") +#let fa-pen-circle = fa-icon.with("\u{e20e}") +#let fa-pen-clip = fa-icon.with("\u{f305}") +#let fa-pen-alt = fa-icon.with("\u{f305}") +#let fa-pen-clip-slash = fa-icon.with("\u{e20f}") +#let fa-pen-alt-slash = fa-icon.with("\u{e20f}") +#let fa-pen-fancy = fa-icon.with("\u{f5ac}") +#let fa-pen-fancy-slash = fa-icon.with("\u{e210}") +#let fa-pen-field = fa-icon.with("\u{e211}") +#let fa-pen-line = fa-icon.with("\u{e212}") +#let fa-pen-nib = fa-icon.with("\u{f5ad}") +#let fa-pen-nib-slash = fa-icon.with("\u{e4a1}") +#let fa-pen-paintbrush = fa-icon.with("\u{f618}") +#let fa-pencil-paintbrush = fa-icon.with("\u{f618}") +#let fa-pen-ruler = fa-icon.with("\u{f5ae}") +#let fa-pencil-ruler = fa-icon.with("\u{f5ae}") +#let fa-pen-slash = fa-icon.with("\u{e213}") +#let fa-pen-swirl = fa-icon.with("\u{e214}") +#let fa-pen-to-square = fa-icon.with("\u{f044}") +#let fa-edit = fa-icon.with("\u{f044}") +#let fa-people = fa-icon.with("\u{e216}") +#let fa-people-arrows = fa-icon.with("\u{e068}") +#let fa-people-arrows-left-right = fa-icon.with("\u{e068}") +#let fa-people-carry-box = fa-icon.with("\u{f4ce}") +#let fa-people-carry = fa-icon.with("\u{f4ce}") +#let fa-people-dress = fa-icon.with("\u{e217}") +#let fa-people-dress-simple = fa-icon.with("\u{e218}") +#let fa-people-group = fa-icon.with("\u{e533}") +#let fa-people-line = fa-icon.with("\u{e534}") +#let fa-people-pants = fa-icon.with("\u{e219}") +#let fa-people-pants-simple = fa-icon.with("\u{e21a}") +#let fa-people-pulling = fa-icon.with("\u{e535}") +#let fa-people-robbery = fa-icon.with("\u{e536}") +#let fa-people-roof = fa-icon.with("\u{e537}") +#let fa-people-simple = fa-icon.with("\u{e21b}") +#let fa-pepper = fa-icon.with("\u{e432}") +#let fa-pepper-hot = fa-icon.with("\u{f816}") +#let fa-perbyte = fa-icon.with("\u{e083}") +#let fa-percent = fa-icon.with("\u{25}") +#let fa-percentage = fa-icon.with("\u{25}") +#let fa-period = fa-icon.with("\u{2e}") +#let fa-periscope = fa-icon.with("\u{f3da}") +#let fa-person = fa-icon.with("\u{f183}") +#let fa-male = fa-icon.with("\u{f183}") +#let fa-person-arrow-down-to-line = fa-icon.with("\u{e538}") +#let fa-person-arrow-up-from-line = fa-icon.with("\u{e539}") +#let fa-person-biking = fa-icon.with("\u{f84a}") +#let fa-biking = fa-icon.with("\u{f84a}") +#let fa-person-biking-mountain = fa-icon.with("\u{f84b}") +#let fa-biking-mountain = fa-icon.with("\u{f84b}") +#let fa-person-booth = fa-icon.with("\u{f756}") +#let fa-person-breastfeeding = fa-icon.with("\u{e53a}") +#let fa-person-burst = fa-icon.with("\u{e53b}") +#let fa-person-cane = fa-icon.with("\u{e53c}") +#let fa-person-carry-box = fa-icon.with("\u{f4cf}") +#let fa-person-carry = fa-icon.with("\u{f4cf}") +#let fa-person-chalkboard = fa-icon.with("\u{e53d}") +#let fa-person-circle-check = fa-icon.with("\u{e53e}") +#let fa-person-circle-exclamation = fa-icon.with("\u{e53f}") +#let fa-person-circle-minus = fa-icon.with("\u{e540}") +#let fa-person-circle-plus = fa-icon.with("\u{e541}") +#let fa-person-circle-question = fa-icon.with("\u{e542}") +#let fa-person-circle-xmark = fa-icon.with("\u{e543}") +#let fa-person-digging = fa-icon.with("\u{f85e}") +#let fa-digging = fa-icon.with("\u{f85e}") +#let fa-person-dolly = fa-icon.with("\u{f4d0}") +#let fa-person-dolly-empty = fa-icon.with("\u{f4d1}") +#let fa-person-dots-from-line = fa-icon.with("\u{f470}") +#let fa-diagnoses = fa-icon.with("\u{f470}") +#let fa-person-dress = fa-icon.with("\u{f182}") +#let fa-female = fa-icon.with("\u{f182}") +#let fa-person-dress-burst = fa-icon.with("\u{e544}") +#let fa-person-dress-fairy = fa-icon.with("\u{e607}") +#let fa-person-dress-simple = fa-icon.with("\u{e21c}") +#let fa-person-drowning = fa-icon.with("\u{e545}") +#let fa-person-fairy = fa-icon.with("\u{e608}") +#let fa-person-falling = fa-icon.with("\u{e546}") +#let fa-person-falling-burst = fa-icon.with("\u{e547}") +#let fa-person-from-portal = fa-icon.with("\u{e023}") +#let fa-portal-exit = fa-icon.with("\u{e023}") +#let fa-person-half-dress = fa-icon.with("\u{e548}") +#let fa-person-harassing = fa-icon.with("\u{e549}") +#let fa-person-hiking = fa-icon.with("\u{f6ec}") +#let fa-hiking = fa-icon.with("\u{f6ec}") +#let fa-person-military-pointing = fa-icon.with("\u{e54a}") +#let fa-person-military-rifle = fa-icon.with("\u{e54b}") +#let fa-person-military-to-person = fa-icon.with("\u{e54c}") +#let fa-person-pinball = fa-icon.with("\u{e21d}") +#let fa-person-praying = fa-icon.with("\u{f683}") +#let fa-pray = fa-icon.with("\u{f683}") +#let fa-person-pregnant = fa-icon.with("\u{e31e}") +#let fa-person-rays = fa-icon.with("\u{e54d}") +#let fa-person-rifle = fa-icon.with("\u{e54e}") +#let fa-person-running = fa-icon.with("\u{f70c}") +#let fa-running = fa-icon.with("\u{f70c}") +#let fa-person-running-fast = fa-icon.with("\u{e5ff}") +#let fa-person-seat = fa-icon.with("\u{e21e}") +#let fa-person-seat-reclined = fa-icon.with("\u{e21f}") +#let fa-person-shelter = fa-icon.with("\u{e54f}") +#let fa-person-sign = fa-icon.with("\u{f757}") +#let fa-person-simple = fa-icon.with("\u{e220}") +#let fa-person-skating = fa-icon.with("\u{f7c5}") +#let fa-skating = fa-icon.with("\u{f7c5}") +#let fa-person-skiing = fa-icon.with("\u{f7c9}") +#let fa-skiing = fa-icon.with("\u{f7c9}") +#let fa-person-skiing-nordic = fa-icon.with("\u{f7ca}") +#let fa-skiing-nordic = fa-icon.with("\u{f7ca}") +#let fa-person-ski-jumping = fa-icon.with("\u{f7c7}") +#let fa-ski-jump = fa-icon.with("\u{f7c7}") +#let fa-person-ski-lift = fa-icon.with("\u{f7c8}") +#let fa-ski-lift = fa-icon.with("\u{f7c8}") +#let fa-person-sledding = fa-icon.with("\u{f7cb}") +#let fa-sledding = fa-icon.with("\u{f7cb}") +#let fa-person-snowboarding = fa-icon.with("\u{f7ce}") +#let fa-snowboarding = fa-icon.with("\u{f7ce}") +#let fa-person-snowmobiling = fa-icon.with("\u{f7d1}") +#let fa-snowmobile = fa-icon.with("\u{f7d1}") +#let fa-person-swimming = fa-icon.with("\u{f5c4}") +#let fa-swimmer = fa-icon.with("\u{f5c4}") +#let fa-person-through-window = fa-icon.with("\u{e5a9}") +#let fa-person-to-door = fa-icon.with("\u{e433}") +#let fa-person-to-portal = fa-icon.with("\u{e022}") +#let fa-portal-enter = fa-icon.with("\u{e022}") +#let fa-person-walking = fa-icon.with("\u{f554}") +#let fa-walking = fa-icon.with("\u{f554}") +#let fa-person-walking-arrow-loop-left = fa-icon.with("\u{e551}") +#let fa-person-walking-arrow-right = fa-icon.with("\u{e552}") +#let fa-person-walking-dashed-line-arrow-right = fa-icon.with("\u{e553}") +#let fa-person-walking-luggage = fa-icon.with("\u{e554}") +#let fa-person-walking-with-cane = fa-icon.with("\u{f29d}") +#let fa-blind = fa-icon.with("\u{f29d}") +#let fa-peseta-sign = fa-icon.with("\u{e221}") +#let fa-peso-sign = fa-icon.with("\u{e222}") +#let fa-phabricator = fa-icon.with("\u{f3db}") +#let fa-phoenix-framework = fa-icon.with("\u{f3dc}") +#let fa-phoenix-squadron = fa-icon.with("\u{f511}") +#let fa-phone = fa-icon.with("\u{f095}") +#let fa-phone-arrow-down-left = fa-icon.with("\u{e223}") +#let fa-phone-arrow-down = fa-icon.with("\u{e223}") +#let fa-phone-incoming = fa-icon.with("\u{e223}") +#let fa-phone-arrow-right = fa-icon.with("\u{e5be}") +#let fa-phone-arrow-up-right = fa-icon.with("\u{e224}") +#let fa-phone-arrow-up = fa-icon.with("\u{e224}") +#let fa-phone-outgoing = fa-icon.with("\u{e224}") +#let fa-phone-flip = fa-icon.with("\u{f879}") +#let fa-phone-alt = fa-icon.with("\u{f879}") +#let fa-phone-hangup = fa-icon.with("\u{e225}") +#let fa-phone-intercom = fa-icon.with("\u{e434}") +#let fa-phone-missed = fa-icon.with("\u{e226}") +#let fa-phone-office = fa-icon.with("\u{f67d}") +#let fa-phone-plus = fa-icon.with("\u{f4d2}") +#let fa-phone-rotary = fa-icon.with("\u{f8d3}") +#let fa-phone-slash = fa-icon.with("\u{f3dd}") +#let fa-phone-volume = fa-icon.with("\u{f2a0}") +#let fa-volume-control-phone = fa-icon.with("\u{f2a0}") +#let fa-phone-xmark = fa-icon.with("\u{e227}") +#let fa-photo-film = fa-icon.with("\u{f87c}") +#let fa-photo-video = fa-icon.with("\u{f87c}") +#let fa-photo-film-music = fa-icon.with("\u{e228}") +#let fa-php = fa-icon.with("\u{f457}") +#let fa-pi = fa-icon.with("\u{f67e}") +#let fa-piano = fa-icon.with("\u{f8d4}") +#let fa-piano-keyboard = fa-icon.with("\u{f8d5}") +#let fa-pickaxe = fa-icon.with("\u{e5bf}") +#let fa-pickleball = fa-icon.with("\u{e435}") +#let fa-pie = fa-icon.with("\u{f705}") +#let fa-pied-piper = fa-icon.with("\u{f2ae}") +#let fa-pied-piper-alt = fa-icon.with("\u{f1a8}") +#let fa-pied-piper-hat = fa-icon.with("\u{f4e5}") +#let fa-pied-piper-pp = fa-icon.with("\u{f1a7}") +#let fa-pig = fa-icon.with("\u{f706}") +#let fa-piggy-bank = fa-icon.with("\u{f4d3}") +#let fa-pills = fa-icon.with("\u{f484}") +#let fa-pinata = fa-icon.with("\u{e3c3}") +#let fa-pinball = fa-icon.with("\u{e229}") +#let fa-pineapple = fa-icon.with("\u{e31f}") +#let fa-pinterest = fa-icon.with("\u{f0d2}") +#let fa-pinterest-p = fa-icon.with("\u{f231}") +#let fa-pipe = fa-icon.with("\u{7c}") +#let fa-pipe-circle-check = fa-icon.with("\u{e436}") +#let fa-pipe-collar = fa-icon.with("\u{e437}") +#let fa-pipe-section = fa-icon.with("\u{e438}") +#let fa-pipe-smoking = fa-icon.with("\u{e3c4}") +#let fa-pipe-valve = fa-icon.with("\u{e439}") +#let fa-pix = fa-icon.with("\u{e43a}") +#let fa-pixiv = fa-icon.with("\u{e640}") +#let fa-pizza = fa-icon.with("\u{f817}") +#let fa-pizza-slice = fa-icon.with("\u{f818}") +#let fa-place-of-worship = fa-icon.with("\u{f67f}") +#let fa-plane = fa-icon.with("\u{f072}") +#let fa-plane-arrival = fa-icon.with("\u{f5af}") +#let fa-plane-circle-check = fa-icon.with("\u{e555}") +#let fa-plane-circle-exclamation = fa-icon.with("\u{e556}") +#let fa-plane-circle-xmark = fa-icon.with("\u{e557}") +#let fa-plane-departure = fa-icon.with("\u{f5b0}") +#let fa-plane-engines = fa-icon.with("\u{f3de}") +#let fa-plane-alt = fa-icon.with("\u{f3de}") +#let fa-plane-lock = fa-icon.with("\u{e558}") +#let fa-plane-prop = fa-icon.with("\u{e22b}") +#let fa-plane-slash = fa-icon.with("\u{e069}") +#let fa-plane-tail = fa-icon.with("\u{e22c}") +#let fa-planet-moon = fa-icon.with("\u{e01f}") +#let fa-planet-ringed = fa-icon.with("\u{e020}") +#let fa-plane-up = fa-icon.with("\u{e22d}") +#let fa-plane-up-slash = fa-icon.with("\u{e22e}") +#let fa-plant-wilt = fa-icon.with("\u{e5aa}") +#let fa-plate-utensils = fa-icon.with("\u{e43b}") +#let fa-plate-wheat = fa-icon.with("\u{e55a}") +#let fa-play = fa-icon.with("\u{f04b}") +#let fa-play-pause = fa-icon.with("\u{e22f}") +#let fa-playstation = fa-icon.with("\u{f3df}") +#let fa-plug = fa-icon.with("\u{f1e6}") +#let fa-plug-circle-bolt = fa-icon.with("\u{e55b}") +#let fa-plug-circle-check = fa-icon.with("\u{e55c}") +#let fa-plug-circle-exclamation = fa-icon.with("\u{e55d}") +#let fa-plug-circle-minus = fa-icon.with("\u{e55e}") +#let fa-plug-circle-plus = fa-icon.with("\u{e55f}") +#let fa-plug-circle-xmark = fa-icon.with("\u{e560}") +#let fa-plus = fa-icon.with("\u{2b}") +#let fa-add = fa-icon.with("\u{2b}") +#let fa-plus-large = fa-icon.with("\u{e59e}") +#let fa-plus-minus = fa-icon.with("\u{e43c}") +#let fa-podcast = fa-icon.with("\u{f2ce}") +#let fa-podium = fa-icon.with("\u{f680}") +#let fa-podium-star = fa-icon.with("\u{f758}") +#let fa-police-box = fa-icon.with("\u{e021}") +#let fa-poll-people = fa-icon.with("\u{f759}") +#let fa-pompebled = fa-icon.with("\u{e43d}") +#let fa-poo = fa-icon.with("\u{f2fe}") +#let fa-pool-8-ball = fa-icon.with("\u{e3c5}") +#let fa-poop = fa-icon.with("\u{f619}") +#let fa-poo-storm = fa-icon.with("\u{f75a}") +#let fa-poo-bolt = fa-icon.with("\u{f75a}") +#let fa-popcorn = fa-icon.with("\u{f819}") +#let fa-popsicle = fa-icon.with("\u{e43e}") +#let fa-potato = fa-icon.with("\u{e440}") +#let fa-pot-food = fa-icon.with("\u{e43f}") +#let fa-power-off = fa-icon.with("\u{f011}") +#let fa-prescription = fa-icon.with("\u{f5b1}") +#let fa-prescription-bottle = fa-icon.with("\u{f485}") +#let fa-prescription-bottle-medical = fa-icon.with("\u{f486}") +#let fa-prescription-bottle-alt = fa-icon.with("\u{f486}") +#let fa-prescription-bottle-pill = fa-icon.with("\u{e5c0}") +#let fa-presentation-screen = fa-icon.with("\u{f685}") +#let fa-presentation = fa-icon.with("\u{f685}") +#let fa-pretzel = fa-icon.with("\u{e441}") +#let fa-print = fa-icon.with("\u{f02f}") +#let fa-print-magnifying-glass = fa-icon.with("\u{f81a}") +#let fa-print-search = fa-icon.with("\u{f81a}") +#let fa-print-slash = fa-icon.with("\u{f686}") +#let fa-product-hunt = fa-icon.with("\u{f288}") +#let fa-projector = fa-icon.with("\u{f8d6}") +#let fa-pump = fa-icon.with("\u{e442}") +#let fa-pumpkin = fa-icon.with("\u{f707}") +#let fa-pump-medical = fa-icon.with("\u{e06a}") +#let fa-pump-soap = fa-icon.with("\u{e06b}") +#let fa-pushed = fa-icon.with("\u{f3e1}") +#let fa-puzzle = fa-icon.with("\u{e443}") +#let fa-puzzle-piece = fa-icon.with("\u{f12e}") +#let fa-puzzle-piece-simple = fa-icon.with("\u{e231}") +#let fa-puzzle-piece-alt = fa-icon.with("\u{e231}") +#let fa-python = fa-icon.with("\u{f3e2}") +#let fa-q = fa-icon.with("\u{51}") +#let fa-qq = fa-icon.with("\u{f1d6}") +#let fa-qrcode = fa-icon.with("\u{f029}") +#let fa-question = fa-icon.with("\u{3f}") +#let fa-quinscape = fa-icon.with("\u{f459}") +#let fa-quora = fa-icon.with("\u{f2c4}") +#let fa-quote-left = fa-icon.with("\u{f10d}") +#let fa-quote-left-alt = fa-icon.with("\u{f10d}") +#let fa-quote-right = fa-icon.with("\u{f10e}") +#let fa-quote-right-alt = fa-icon.with("\u{f10e}") +#let fa-quotes = fa-icon.with("\u{e234}") +#let fa-r = fa-icon.with("\u{52}") +#let fa-rabbit = fa-icon.with("\u{f708}") +#let fa-rabbit-running = fa-icon.with("\u{f709}") +#let fa-rabbit-fast = fa-icon.with("\u{f709}") +#let fa-raccoon = fa-icon.with("\u{e613}") +#let fa-racquet = fa-icon.with("\u{f45a}") +#let fa-radar = fa-icon.with("\u{e024}") +#let fa-radiation = fa-icon.with("\u{f7b9}") +#let fa-radio = fa-icon.with("\u{f8d7}") +#let fa-radio-tuner = fa-icon.with("\u{f8d8}") +#let fa-radio-alt = fa-icon.with("\u{f8d8}") +#let fa-rainbow = fa-icon.with("\u{f75b}") +#let fa-raindrops = fa-icon.with("\u{f75c}") +#let fa-ram = fa-icon.with("\u{f70a}") +#let fa-ramp-loading = fa-icon.with("\u{f4d4}") +#let fa-ranking-star = fa-icon.with("\u{e561}") +#let fa-raspberry-pi = fa-icon.with("\u{f7bb}") +#let fa-ravelry = fa-icon.with("\u{f2d9}") +#let fa-raygun = fa-icon.with("\u{e025}") +#let fa-react = fa-icon.with("\u{f41b}") +#let fa-reacteurope = fa-icon.with("\u{f75d}") +#let fa-readme = fa-icon.with("\u{f4d5}") +#let fa-rebel = fa-icon.with("\u{f1d0}") +#let fa-receipt = fa-icon.with("\u{f543}") +#let fa-record-vinyl = fa-icon.with("\u{f8d9}") +#let fa-rectangle = fa-icon.with("\u{f2fa}") +#let fa-rectangle-landscape = fa-icon.with("\u{f2fa}") +#let fa-rectangle-ad = fa-icon.with("\u{f641}") +#let fa-ad = fa-icon.with("\u{f641}") +#let fa-rectangle-barcode = fa-icon.with("\u{f463}") +#let fa-barcode-alt = fa-icon.with("\u{f463}") +#let fa-rectangle-code = fa-icon.with("\u{e322}") +#let fa-rectangle-history = fa-icon.with("\u{e4a2}") +#let fa-rectangle-history-circle-plus = fa-icon.with("\u{e4a3}") +#let fa-rectangle-history-circle-user = fa-icon.with("\u{e4a4}") +#let fa-rectangle-list = fa-icon.with("\u{f022}") +#let fa-list-alt = fa-icon.with("\u{f022}") +#let fa-rectangle-pro = fa-icon.with("\u{e235}") +#let fa-pro = fa-icon.with("\u{e235}") +#let fa-rectangles-mixed = fa-icon.with("\u{e323}") +#let fa-rectangle-terminal = fa-icon.with("\u{e236}") +#let fa-rectangle-vertical = fa-icon.with("\u{f2fb}") +#let fa-rectangle-portrait = fa-icon.with("\u{f2fb}") +#let fa-rectangle-vertical-history = fa-icon.with("\u{e237}") +#let fa-rectangle-wide = fa-icon.with("\u{f2fc}") +#let fa-rectangle-xmark = fa-icon.with("\u{f410}") +#let fa-rectangle-times = fa-icon.with("\u{f410}") +#let fa-times-rectangle = fa-icon.with("\u{f410}") +#let fa-window-close = fa-icon.with("\u{f410}") +#let fa-recycle = fa-icon.with("\u{f1b8}") +#let fa-reddit = fa-icon.with("\u{f1a1}") +#let fa-reddit-alien = fa-icon.with("\u{f281}") +#let fa-redhat = fa-icon.with("\u{f7bc}") +#let fa-red-river = fa-icon.with("\u{f3e3}") +#let fa-reel = fa-icon.with("\u{e238}") +#let fa-reflect-both = fa-icon.with("\u{e66f}") +#let fa-reflect-horizontal = fa-icon.with("\u{e664}") +#let fa-reflect-vertical = fa-icon.with("\u{e665}") +#let fa-refrigerator = fa-icon.with("\u{e026}") +#let fa-registered = fa-icon.with("\u{f25d}") +#let fa-renren = fa-icon.with("\u{f18b}") +#let fa-repeat = fa-icon.with("\u{f363}") +#let fa-repeat-1 = fa-icon.with("\u{f365}") +#let fa-reply = fa-icon.with("\u{f3e5}") +#let fa-mail-reply = fa-icon.with("\u{f3e5}") +#let fa-reply-all = fa-icon.with("\u{f122}") +#let fa-mail-reply-all = fa-icon.with("\u{f122}") +#let fa-reply-clock = fa-icon.with("\u{e239}") +#let fa-reply-time = fa-icon.with("\u{e239}") +#let fa-replyd = fa-icon.with("\u{f3e6}") +#let fa-republican = fa-icon.with("\u{f75e}") +#let fa-researchgate = fa-icon.with("\u{f4f8}") +#let fa-resolving = fa-icon.with("\u{f3e7}") +#let fa-restroom = fa-icon.with("\u{f7bd}") +#let fa-restroom-simple = fa-icon.with("\u{e23a}") +#let fa-retweet = fa-icon.with("\u{f079}") +#let fa-rev = fa-icon.with("\u{f5b2}") +#let fa-rhombus = fa-icon.with("\u{e23b}") +#let fa-ribbon = fa-icon.with("\u{f4d6}") +#let fa-right = fa-icon.with("\u{f356}") +#let fa-arrow-alt-right = fa-icon.with("\u{f356}") +#let fa-right-from-bracket = fa-icon.with("\u{f2f5}") +#let fa-sign-out-alt = fa-icon.with("\u{f2f5}") +#let fa-right-from-line = fa-icon.with("\u{f347}") +#let fa-arrow-alt-from-left = fa-icon.with("\u{f347}") +#let fa-right-left = fa-icon.with("\u{f362}") +#let fa-exchange-alt = fa-icon.with("\u{f362}") +#let fa-right-left-large = fa-icon.with("\u{e5e1}") +#let fa-right-long = fa-icon.with("\u{f30b}") +#let fa-long-arrow-alt-right = fa-icon.with("\u{f30b}") +#let fa-right-long-to-line = fa-icon.with("\u{e444}") +#let fa-right-to-bracket = fa-icon.with("\u{f2f6}") +#let fa-sign-in-alt = fa-icon.with("\u{f2f6}") +#let fa-right-to-line = fa-icon.with("\u{f34c}") +#let fa-arrow-alt-to-right = fa-icon.with("\u{f34c}") +#let fa-ring = fa-icon.with("\u{f70b}") +#let fa-ring-diamond = fa-icon.with("\u{e5ab}") +#let fa-rings-wedding = fa-icon.with("\u{f81b}") +#let fa-road = fa-icon.with("\u{f018}") +#let fa-road-barrier = fa-icon.with("\u{e562}") +#let fa-road-bridge = fa-icon.with("\u{e563}") +#let fa-road-circle-check = fa-icon.with("\u{e564}") +#let fa-road-circle-exclamation = fa-icon.with("\u{e565}") +#let fa-road-circle-xmark = fa-icon.with("\u{e566}") +#let fa-road-lock = fa-icon.with("\u{e567}") +#let fa-road-spikes = fa-icon.with("\u{e568}") +#let fa-robot = fa-icon.with("\u{f544}") +#let fa-robot-astromech = fa-icon.with("\u{e2d2}") +#let fa-rocket = fa-icon.with("\u{f135}") +#let fa-rocketchat = fa-icon.with("\u{f3e8}") +#let fa-rocket-launch = fa-icon.with("\u{e027}") +#let fa-rockrms = fa-icon.with("\u{f3e9}") +#let fa-roller-coaster = fa-icon.with("\u{e324}") +#let fa-rotate = fa-icon.with("\u{f2f1}") +#let fa-sync-alt = fa-icon.with("\u{f2f1}") +#let fa-rotate-exclamation = fa-icon.with("\u{e23c}") +#let fa-rotate-left = fa-icon.with("\u{f2ea}") +#let fa-rotate-back = fa-icon.with("\u{f2ea}") +#let fa-rotate-backward = fa-icon.with("\u{f2ea}") +#let fa-undo-alt = fa-icon.with("\u{f2ea}") +#let fa-rotate-reverse = fa-icon.with("\u{e631}") +#let fa-rotate-right = fa-icon.with("\u{f2f9}") +#let fa-redo-alt = fa-icon.with("\u{f2f9}") +#let fa-rotate-forward = fa-icon.with("\u{f2f9}") +#let fa-route = fa-icon.with("\u{f4d7}") +#let fa-route-highway = fa-icon.with("\u{f61a}") +#let fa-route-interstate = fa-icon.with("\u{f61b}") +#let fa-router = fa-icon.with("\u{f8da}") +#let fa-r-project = fa-icon.with("\u{f4f7}") +#let fa-rss = fa-icon.with("\u{f09e}") +#let fa-feed = fa-icon.with("\u{f09e}") +#let fa-ruble-sign = fa-icon.with("\u{f158}") +#let fa-rouble = fa-icon.with("\u{f158}") +#let fa-rub = fa-icon.with("\u{f158}") +#let fa-ruble = fa-icon.with("\u{f158}") +#let fa-rug = fa-icon.with("\u{e569}") +#let fa-rugby-ball = fa-icon.with("\u{e3c6}") +#let fa-ruler = fa-icon.with("\u{f545}") +#let fa-ruler-combined = fa-icon.with("\u{f546}") +#let fa-ruler-horizontal = fa-icon.with("\u{f547}") +#let fa-ruler-triangle = fa-icon.with("\u{f61c}") +#let fa-ruler-vertical = fa-icon.with("\u{f548}") +#let fa-rupee-sign = fa-icon.with("\u{f156}") +#let fa-rupee = fa-icon.with("\u{f156}") +#let fa-rupiah-sign = fa-icon.with("\u{e23d}") +#let fa-rust = fa-icon.with("\u{e07a}") +#let fa-rv = fa-icon.with("\u{f7be}") +#let fa-s = fa-icon.with("\u{53}") +#let fa-sack = fa-icon.with("\u{f81c}") +#let fa-sack-dollar = fa-icon.with("\u{f81d}") +#let fa-sack-xmark = fa-icon.with("\u{e56a}") +#let fa-safari = fa-icon.with("\u{f267}") +#let fa-sailboat = fa-icon.with("\u{e445}") +#let fa-salad = fa-icon.with("\u{f81e}") +#let fa-bowl-salad = fa-icon.with("\u{f81e}") +#let fa-salesforce = fa-icon.with("\u{f83b}") +#let fa-salt-shaker = fa-icon.with("\u{e446}") +#let fa-sandwich = fa-icon.with("\u{f81f}") +#let fa-sass = fa-icon.with("\u{f41e}") +#let fa-satellite = fa-icon.with("\u{f7bf}") +#let fa-satellite-dish = fa-icon.with("\u{f7c0}") +#let fa-sausage = fa-icon.with("\u{f820}") +#let fa-saxophone = fa-icon.with("\u{f8dc}") +#let fa-saxophone-fire = fa-icon.with("\u{f8db}") +#let fa-sax-hot = fa-icon.with("\u{f8db}") +#let fa-scale-balanced = fa-icon.with("\u{f24e}") +#let fa-balance-scale = fa-icon.with("\u{f24e}") +#let fa-scale-unbalanced = fa-icon.with("\u{f515}") +#let fa-balance-scale-left = fa-icon.with("\u{f515}") +#let fa-scale-unbalanced-flip = fa-icon.with("\u{f516}") +#let fa-balance-scale-right = fa-icon.with("\u{f516}") +#let fa-scalpel = fa-icon.with("\u{f61d}") +#let fa-scalpel-line-dashed = fa-icon.with("\u{f61e}") +#let fa-scalpel-path = fa-icon.with("\u{f61e}") +#let fa-scanner-gun = fa-icon.with("\u{f488}") +#let fa-scanner = fa-icon.with("\u{f488}") +#let fa-scanner-image = fa-icon.with("\u{f8f3}") +#let fa-scanner-keyboard = fa-icon.with("\u{f489}") +#let fa-scanner-touchscreen = fa-icon.with("\u{f48a}") +#let fa-scarecrow = fa-icon.with("\u{f70d}") +#let fa-scarf = fa-icon.with("\u{f7c1}") +#let fa-schlix = fa-icon.with("\u{f3ea}") +#let fa-school = fa-icon.with("\u{f549}") +#let fa-school-circle-check = fa-icon.with("\u{e56b}") +#let fa-school-circle-exclamation = fa-icon.with("\u{e56c}") +#let fa-school-circle-xmark = fa-icon.with("\u{e56d}") +#let fa-school-flag = fa-icon.with("\u{e56e}") +#let fa-school-lock = fa-icon.with("\u{e56f}") +#let fa-scissors = fa-icon.with("\u{f0c4}") +#let fa-cut = fa-icon.with("\u{f0c4}") +#let fa-screencast = fa-icon.with("\u{e23e}") +#let fa-screenpal = fa-icon.with("\u{e570}") +#let fa-screen-users = fa-icon.with("\u{f63d}") +#let fa-users-class = fa-icon.with("\u{f63d}") +#let fa-screwdriver = fa-icon.with("\u{f54a}") +#let fa-screwdriver-wrench = fa-icon.with("\u{f7d9}") +#let fa-tools = fa-icon.with("\u{f7d9}") +#let fa-scribble = fa-icon.with("\u{e23f}") +#let fa-scribd = fa-icon.with("\u{f28a}") +#let fa-scroll = fa-icon.with("\u{f70e}") +#let fa-scroll-old = fa-icon.with("\u{f70f}") +#let fa-scroll-torah = fa-icon.with("\u{f6a0}") +#let fa-torah = fa-icon.with("\u{f6a0}") +#let fa-scrubber = fa-icon.with("\u{f2f8}") +#let fa-scythe = fa-icon.with("\u{f710}") +#let fa-sd-card = fa-icon.with("\u{f7c2}") +#let fa-sd-cards = fa-icon.with("\u{e240}") +#let fa-seal = fa-icon.with("\u{e241}") +#let fa-seal-exclamation = fa-icon.with("\u{e242}") +#let fa-seal-question = fa-icon.with("\u{e243}") +#let fa-searchengin = fa-icon.with("\u{f3eb}") +#let fa-seat-airline = fa-icon.with("\u{e244}") +#let fa-section = fa-icon.with("\u{e447}") +#let fa-seedling = fa-icon.with("\u{f4d8}") +#let fa-sprout = fa-icon.with("\u{f4d8}") +#let fa-sellcast = fa-icon.with("\u{f2da}") +#let fa-sellsy = fa-icon.with("\u{f213}") +#let fa-semicolon = fa-icon.with("\u{3b}") +#let fa-send-back = fa-icon.with("\u{f87e}") +#let fa-send-backward = fa-icon.with("\u{f87f}") +#let fa-sensor = fa-icon.with("\u{e028}") +#let fa-sensor-cloud = fa-icon.with("\u{e02c}") +#let fa-sensor-smoke = fa-icon.with("\u{e02c}") +#let fa-sensor-fire = fa-icon.with("\u{e02a}") +#let fa-sensor-on = fa-icon.with("\u{e02b}") +#let fa-sensor-triangle-exclamation = fa-icon.with("\u{e029}") +#let fa-sensor-alert = fa-icon.with("\u{e029}") +#let fa-server = fa-icon.with("\u{f233}") +#let fa-servicestack = fa-icon.with("\u{f3ec}") +#let fa-shapes = fa-icon.with("\u{f61f}") +#let fa-triangle-circle-square = fa-icon.with("\u{f61f}") +#let fa-share = fa-icon.with("\u{f064}") +#let fa-mail-forward = fa-icon.with("\u{f064}") +#let fa-share-all = fa-icon.with("\u{f367}") +#let fa-share-from-square = fa-icon.with("\u{f14d}") +#let fa-share-square = fa-icon.with("\u{f14d}") +#let fa-share-nodes = fa-icon.with("\u{f1e0}") +#let fa-share-alt = fa-icon.with("\u{f1e0}") +#let fa-sheep = fa-icon.with("\u{f711}") +#let fa-sheet-plastic = fa-icon.with("\u{e571}") +#let fa-shekel-sign = fa-icon.with("\u{f20b}") +#let fa-ils = fa-icon.with("\u{f20b}") +#let fa-shekel = fa-icon.with("\u{f20b}") +#let fa-sheqel = fa-icon.with("\u{f20b}") +#let fa-sheqel-sign = fa-icon.with("\u{f20b}") +#let fa-shelves = fa-icon.with("\u{f480}") +#let fa-inventory = fa-icon.with("\u{f480}") +#let fa-shelves-empty = fa-icon.with("\u{e246}") +#let fa-shield = fa-icon.with("\u{f132}") +#let fa-shield-blank = fa-icon.with("\u{f132}") +#let fa-shield-cat = fa-icon.with("\u{e572}") +#let fa-shield-check = fa-icon.with("\u{f2f7}") +#let fa-shield-cross = fa-icon.with("\u{f712}") +#let fa-shield-dog = fa-icon.with("\u{e573}") +#let fa-shield-exclamation = fa-icon.with("\u{e247}") +#let fa-shield-halved = fa-icon.with("\u{f3ed}") +#let fa-shield-alt = fa-icon.with("\u{f3ed}") +#let fa-shield-heart = fa-icon.with("\u{e574}") +#let fa-shield-keyhole = fa-icon.with("\u{e248}") +#let fa-shield-minus = fa-icon.with("\u{e249}") +#let fa-shield-plus = fa-icon.with("\u{e24a}") +#let fa-shield-quartered = fa-icon.with("\u{e575}") +#let fa-shield-slash = fa-icon.with("\u{e24b}") +#let fa-shield-virus = fa-icon.with("\u{e06c}") +#let fa-shield-xmark = fa-icon.with("\u{e24c}") +#let fa-shield-times = fa-icon.with("\u{e24c}") +#let fa-ship = fa-icon.with("\u{f21a}") +#let fa-shirt = fa-icon.with("\u{f553}") +#let fa-t-shirt = fa-icon.with("\u{f553}") +#let fa-tshirt = fa-icon.with("\u{f553}") +#let fa-shirt-long-sleeve = fa-icon.with("\u{e3c7}") +#let fa-shirt-running = fa-icon.with("\u{e3c8}") +#let fa-shirtsinbulk = fa-icon.with("\u{f214}") +#let fa-shirt-tank-top = fa-icon.with("\u{e3c9}") +#let fa-shish-kebab = fa-icon.with("\u{f821}") +#let fa-shoelace = fa-icon.with("\u{e60c}") +#let fa-shoe-prints = fa-icon.with("\u{f54b}") +#let fa-shop = fa-icon.with("\u{f54f}") +#let fa-store-alt = fa-icon.with("\u{f54f}") +#let fa-shopify = fa-icon.with("\u{e057}") +#let fa-shop-lock = fa-icon.with("\u{e4a5}") +#let fa-shop-slash = fa-icon.with("\u{e070}") +#let fa-store-alt-slash = fa-icon.with("\u{e070}") +#let fa-shopware = fa-icon.with("\u{f5b5}") +#let fa-shovel = fa-icon.with("\u{f713}") +#let fa-shovel-snow = fa-icon.with("\u{f7c3}") +#let fa-shower = fa-icon.with("\u{f2cc}") +#let fa-shower-down = fa-icon.with("\u{e24d}") +#let fa-shower-alt = fa-icon.with("\u{e24d}") +#let fa-shredder = fa-icon.with("\u{f68a}") +#let fa-shrimp = fa-icon.with("\u{e448}") +#let fa-shuffle = fa-icon.with("\u{f074}") +#let fa-random = fa-icon.with("\u{f074}") +#let fa-shutters = fa-icon.with("\u{e449}") +#let fa-shuttlecock = fa-icon.with("\u{f45b}") +#let fa-shuttle-space = fa-icon.with("\u{f197}") +#let fa-space-shuttle = fa-icon.with("\u{f197}") +#let fa-sickle = fa-icon.with("\u{f822}") +#let fa-sidebar = fa-icon.with("\u{e24e}") +#let fa-sidebar-flip = fa-icon.with("\u{e24f}") +#let fa-sigma = fa-icon.with("\u{f68b}") +#let fa-signal = fa-icon.with("\u{f012}") +#let fa-signal-5 = fa-icon.with("\u{f012}") +#let fa-signal-perfect = fa-icon.with("\u{f012}") +#let fa-signal-bars = fa-icon.with("\u{f690}") +#let fa-signal-alt = fa-icon.with("\u{f690}") +#let fa-signal-alt-4 = fa-icon.with("\u{f690}") +#let fa-signal-bars-strong = fa-icon.with("\u{f690}") +#let fa-signal-bars-fair = fa-icon.with("\u{f692}") +#let fa-signal-alt-2 = fa-icon.with("\u{f692}") +#let fa-signal-bars-good = fa-icon.with("\u{f693}") +#let fa-signal-alt-3 = fa-icon.with("\u{f693}") +#let fa-signal-bars-slash = fa-icon.with("\u{f694}") +#let fa-signal-alt-slash = fa-icon.with("\u{f694}") +#let fa-signal-bars-weak = fa-icon.with("\u{f691}") +#let fa-signal-alt-1 = fa-icon.with("\u{f691}") +#let fa-signal-fair = fa-icon.with("\u{f68d}") +#let fa-signal-2 = fa-icon.with("\u{f68d}") +#let fa-signal-good = fa-icon.with("\u{f68e}") +#let fa-signal-3 = fa-icon.with("\u{f68e}") +#let fa-signal-messenger = fa-icon.with("\u{e663}") +#let fa-signal-slash = fa-icon.with("\u{f695}") +#let fa-signal-stream = fa-icon.with("\u{f8dd}") +#let fa-signal-stream-slash = fa-icon.with("\u{e250}") +#let fa-signal-strong = fa-icon.with("\u{f68f}") +#let fa-signal-4 = fa-icon.with("\u{f68f}") +#let fa-signal-weak = fa-icon.with("\u{f68c}") +#let fa-signal-1 = fa-icon.with("\u{f68c}") +#let fa-signature = fa-icon.with("\u{f5b7}") +#let fa-signature-lock = fa-icon.with("\u{e3ca}") +#let fa-signature-slash = fa-icon.with("\u{e3cb}") +#let fa-sign-hanging = fa-icon.with("\u{f4d9}") +#let fa-sign = fa-icon.with("\u{f4d9}") +#let fa-sign-post = fa-icon.with("\u{e624}") +#let fa-sign-posts = fa-icon.with("\u{e625}") +#let fa-sign-posts-wrench = fa-icon.with("\u{e626}") +#let fa-signs-post = fa-icon.with("\u{f277}") +#let fa-map-signs = fa-icon.with("\u{f277}") +#let fa-sim-card = fa-icon.with("\u{f7c4}") +#let fa-sim-cards = fa-icon.with("\u{e251}") +#let fa-simplybuilt = fa-icon.with("\u{f215}") +#let fa-sink = fa-icon.with("\u{e06d}") +#let fa-siren = fa-icon.with("\u{e02d}") +#let fa-siren-on = fa-icon.with("\u{e02e}") +#let fa-sistrix = fa-icon.with("\u{f3ee}") +#let fa-sitemap = fa-icon.with("\u{f0e8}") +#let fa-sith = fa-icon.with("\u{f512}") +#let fa-sitrox = fa-icon.with("\u{e44a}") +#let fa-skeleton = fa-icon.with("\u{f620}") +#let fa-skeleton-ribs = fa-icon.with("\u{e5cb}") +#let fa-sketch = fa-icon.with("\u{f7c6}") +#let fa-ski-boot = fa-icon.with("\u{e3cc}") +#let fa-ski-boot-ski = fa-icon.with("\u{e3cd}") +#let fa-skull = fa-icon.with("\u{f54c}") +#let fa-skull-cow = fa-icon.with("\u{f8de}") +#let fa-skull-crossbones = fa-icon.with("\u{f714}") +#let fa-skyatlas = fa-icon.with("\u{f216}") +#let fa-skype = fa-icon.with("\u{f17e}") +#let fa-slack = fa-icon.with("\u{f198}") +#let fa-slack-hash = fa-icon.with("\u{f198}") +#let fa-slash = fa-icon.with("\u{f715}") +#let fa-slash-back = fa-icon.with("\u{5c}") +#let fa-slash-forward = fa-icon.with("\u{2f}") +#let fa-sleigh = fa-icon.with("\u{f7cc}") +#let fa-slider = fa-icon.with("\u{e252}") +#let fa-sliders = fa-icon.with("\u{f1de}") +#let fa-sliders-h = fa-icon.with("\u{f1de}") +#let fa-sliders-simple = fa-icon.with("\u{e253}") +#let fa-sliders-up = fa-icon.with("\u{f3f1}") +#let fa-sliders-v = fa-icon.with("\u{f3f1}") +#let fa-slideshare = fa-icon.with("\u{f1e7}") +#let fa-slot-machine = fa-icon.with("\u{e3ce}") +#let fa-smog = fa-icon.with("\u{f75f}") +#let fa-smoke = fa-icon.with("\u{f760}") +#let fa-smoking = fa-icon.with("\u{f48d}") +#let fa-snake = fa-icon.with("\u{f716}") +#let fa-snapchat = fa-icon.with("\u{f2ab}") +#let fa-snapchat-ghost = fa-icon.with("\u{f2ab}") +#let fa-snooze = fa-icon.with("\u{f880}") +#let fa-zzz = fa-icon.with("\u{f880}") +#let fa-snow-blowing = fa-icon.with("\u{f761}") +#let fa-snowflake = fa-icon.with("\u{f2dc}") +#let fa-snowflake-droplets = fa-icon.with("\u{e5c1}") +#let fa-snowflakes = fa-icon.with("\u{f7cf}") +#let fa-snowman = fa-icon.with("\u{f7d0}") +#let fa-snowman-head = fa-icon.with("\u{f79b}") +#let fa-frosty-head = fa-icon.with("\u{f79b}") +#let fa-snowplow = fa-icon.with("\u{f7d2}") +#let fa-soap = fa-icon.with("\u{e06e}") +#let fa-socks = fa-icon.with("\u{f696}") +#let fa-soft-serve = fa-icon.with("\u{e400}") +#let fa-creemee = fa-icon.with("\u{e400}") +#let fa-solar-panel = fa-icon.with("\u{f5ba}") +#let fa-solar-system = fa-icon.with("\u{e02f}") +#let fa-sort = fa-icon.with("\u{f0dc}") +#let fa-unsorted = fa-icon.with("\u{f0dc}") +#let fa-sort-down = fa-icon.with("\u{f0dd}") +#let fa-sort-desc = fa-icon.with("\u{f0dd}") +#let fa-sort-up = fa-icon.with("\u{f0de}") +#let fa-sort-asc = fa-icon.with("\u{f0de}") +#let fa-soundcloud = fa-icon.with("\u{f1be}") +#let fa-sourcetree = fa-icon.with("\u{f7d3}") +#let fa-spa = fa-icon.with("\u{f5bb}") +#let fa-space-awesome = fa-icon.with("\u{e5ac}") +#let fa-space-station-moon = fa-icon.with("\u{e033}") +#let fa-space-station-moon-construction = fa-icon.with("\u{e034}") +#let fa-space-station-moon-alt = fa-icon.with("\u{e034}") +#let fa-spade = fa-icon.with("\u{f2f4}") +#let fa-spaghetti-monster-flying = fa-icon.with("\u{f67b}") +#let fa-pastafarianism = fa-icon.with("\u{f67b}") +#let fa-sparkle = fa-icon.with("\u{e5d6}") +#let fa-sparkles = fa-icon.with("\u{f890}") +#let fa-speakap = fa-icon.with("\u{f3f3}") +#let fa-speaker = fa-icon.with("\u{f8df}") +#let fa-speaker-deck = fa-icon.with("\u{f83c}") +#let fa-speakers = fa-icon.with("\u{f8e0}") +#let fa-spell-check = fa-icon.with("\u{f891}") +#let fa-spider = fa-icon.with("\u{f717}") +#let fa-spider-black-widow = fa-icon.with("\u{f718}") +#let fa-spider-web = fa-icon.with("\u{f719}") +#let fa-spinner = fa-icon.with("\u{f110}") +#let fa-spinner-scale = fa-icon.with("\u{e62a}") +#let fa-spinner-third = fa-icon.with("\u{f3f4}") +#let fa-split = fa-icon.with("\u{e254}") +#let fa-splotch = fa-icon.with("\u{f5bc}") +#let fa-spoon = fa-icon.with("\u{f2e5}") +#let fa-utensil-spoon = fa-icon.with("\u{f2e5}") +#let fa-sportsball = fa-icon.with("\u{e44b}") +#let fa-spotify = fa-icon.with("\u{f1bc}") +#let fa-spray-can = fa-icon.with("\u{f5bd}") +#let fa-spray-can-sparkles = fa-icon.with("\u{f5d0}") +#let fa-air-freshener = fa-icon.with("\u{f5d0}") +#let fa-sprinkler = fa-icon.with("\u{e035}") +#let fa-sprinkler-ceiling = fa-icon.with("\u{e44c}") +#let fa-square = fa-icon.with("\u{f0c8}") +#let fa-square-0 = fa-icon.with("\u{e255}") +#let fa-square-1 = fa-icon.with("\u{e256}") +#let fa-square-2 = fa-icon.with("\u{e257}") +#let fa-square-3 = fa-icon.with("\u{e258}") +#let fa-square-4 = fa-icon.with("\u{e259}") +#let fa-square-5 = fa-icon.with("\u{e25a}") +#let fa-square-6 = fa-icon.with("\u{e25b}") +#let fa-square-7 = fa-icon.with("\u{e25c}") +#let fa-square-8 = fa-icon.with("\u{e25d}") +#let fa-square-9 = fa-icon.with("\u{e25e}") +#let fa-square-a = fa-icon.with("\u{e25f}") +#let fa-square-a-lock = fa-icon.with("\u{e44d}") +#let fa-square-ampersand = fa-icon.with("\u{e260}") +#let fa-square-arrow-down = fa-icon.with("\u{f339}") +#let fa-arrow-square-down = fa-icon.with("\u{f339}") +#let fa-square-arrow-down-left = fa-icon.with("\u{e261}") +#let fa-square-arrow-down-right = fa-icon.with("\u{e262}") +#let fa-square-arrow-left = fa-icon.with("\u{f33a}") +#let fa-arrow-square-left = fa-icon.with("\u{f33a}") +#let fa-square-arrow-right = fa-icon.with("\u{f33b}") +#let fa-arrow-square-right = fa-icon.with("\u{f33b}") +#let fa-square-arrow-up = fa-icon.with("\u{f33c}") +#let fa-arrow-square-up = fa-icon.with("\u{f33c}") +#let fa-square-arrow-up-left = fa-icon.with("\u{e263}") +#let fa-square-arrow-up-right = fa-icon.with("\u{f14c}") +#let fa-external-link-square = fa-icon.with("\u{f14c}") +#let fa-square-b = fa-icon.with("\u{e264}") +#let fa-square-behance = fa-icon.with("\u{f1b5}") +#let fa-behance-square = fa-icon.with("\u{f1b5}") +#let fa-square-bolt = fa-icon.with("\u{e265}") +#let fa-square-c = fa-icon.with("\u{e266}") +#let fa-square-caret-down = fa-icon.with("\u{f150}") +#let fa-caret-square-down = fa-icon.with("\u{f150}") +#let fa-square-caret-left = fa-icon.with("\u{f191}") +#let fa-caret-square-left = fa-icon.with("\u{f191}") +#let fa-square-caret-right = fa-icon.with("\u{f152}") +#let fa-caret-square-right = fa-icon.with("\u{f152}") +#let fa-square-caret-up = fa-icon.with("\u{f151}") +#let fa-caret-square-up = fa-icon.with("\u{f151}") +#let fa-square-check = fa-icon.with("\u{f14a}") +#let fa-check-square = fa-icon.with("\u{f14a}") +#let fa-square-chevron-down = fa-icon.with("\u{f329}") +#let fa-chevron-square-down = fa-icon.with("\u{f329}") +#let fa-square-chevron-left = fa-icon.with("\u{f32a}") +#let fa-chevron-square-left = fa-icon.with("\u{f32a}") +#let fa-square-chevron-right = fa-icon.with("\u{f32b}") +#let fa-chevron-square-right = fa-icon.with("\u{f32b}") +#let fa-square-chevron-up = fa-icon.with("\u{f32c}") +#let fa-chevron-square-up = fa-icon.with("\u{f32c}") +#let fa-square-code = fa-icon.with("\u{e267}") +#let fa-square-d = fa-icon.with("\u{e268}") +#let fa-square-dashed = fa-icon.with("\u{e269}") +#let fa-square-dashed-circle-plus = fa-icon.with("\u{e5c2}") +#let fa-square-divide = fa-icon.with("\u{e26a}") +#let fa-square-dollar = fa-icon.with("\u{f2e9}") +#let fa-dollar-square = fa-icon.with("\u{f2e9}") +#let fa-usd-square = fa-icon.with("\u{f2e9}") +#let fa-square-down = fa-icon.with("\u{f350}") +#let fa-arrow-alt-square-down = fa-icon.with("\u{f350}") +#let fa-square-down-left = fa-icon.with("\u{e26b}") +#let fa-square-down-right = fa-icon.with("\u{e26c}") +#let fa-square-dribbble = fa-icon.with("\u{f397}") +#let fa-dribbble-square = fa-icon.with("\u{f397}") +#let fa-square-e = fa-icon.with("\u{e26d}") +#let fa-square-ellipsis = fa-icon.with("\u{e26e}") +#let fa-square-ellipsis-vertical = fa-icon.with("\u{e26f}") +#let fa-square-envelope = fa-icon.with("\u{f199}") +#let fa-envelope-square = fa-icon.with("\u{f199}") +#let fa-square-exclamation = fa-icon.with("\u{f321}") +#let fa-exclamation-square = fa-icon.with("\u{f321}") +#let fa-square-f = fa-icon.with("\u{e270}") +#let fa-square-facebook = fa-icon.with("\u{f082}") +#let fa-facebook-square = fa-icon.with("\u{f082}") +#let fa-square-font-awesome = fa-icon.with("\u{e5ad}") +#let fa-square-font-awesome-stroke = fa-icon.with("\u{f35c}") +#let fa-font-awesome-alt = fa-icon.with("\u{f35c}") +#let fa-square-fragile = fa-icon.with("\u{f49b}") +#let fa-box-fragile = fa-icon.with("\u{f49b}") +#let fa-square-wine-glass-crack = fa-icon.with("\u{f49b}") +#let fa-square-full = fa-icon.with("\u{f45c}") +#let fa-square-g = fa-icon.with("\u{e271}") +#let fa-square-git = fa-icon.with("\u{f1d2}") +#let fa-git-square = fa-icon.with("\u{f1d2}") +#let fa-square-github = fa-icon.with("\u{f092}") +#let fa-github-square = fa-icon.with("\u{f092}") +#let fa-square-gitlab = fa-icon.with("\u{e5ae}") +#let fa-gitlab-square = fa-icon.with("\u{e5ae}") +#let fa-square-google-plus = fa-icon.with("\u{f0d4}") +#let fa-google-plus-square = fa-icon.with("\u{f0d4}") +#let fa-square-h = fa-icon.with("\u{f0fd}") +#let fa-h-square = fa-icon.with("\u{f0fd}") +#let fa-square-hacker-news = fa-icon.with("\u{f3af}") +#let fa-hacker-news-square = fa-icon.with("\u{f3af}") +#let fa-square-heart = fa-icon.with("\u{f4c8}") +#let fa-heart-square = fa-icon.with("\u{f4c8}") +#let fa-square-i = fa-icon.with("\u{e272}") +#let fa-square-info = fa-icon.with("\u{f30f}") +#let fa-info-square = fa-icon.with("\u{f30f}") +#let fa-square-instagram = fa-icon.with("\u{e055}") +#let fa-instagram-square = fa-icon.with("\u{e055}") +#let fa-square-j = fa-icon.with("\u{e273}") +#let fa-square-js = fa-icon.with("\u{f3b9}") +#let fa-js-square = fa-icon.with("\u{f3b9}") +#let fa-square-k = fa-icon.with("\u{e274}") +#let fa-square-kanban = fa-icon.with("\u{e488}") +#let fa-square-l = fa-icon.with("\u{e275}") +#let fa-square-lastfm = fa-icon.with("\u{f203}") +#let fa-lastfm-square = fa-icon.with("\u{f203}") +#let fa-square-left = fa-icon.with("\u{f351}") +#let fa-arrow-alt-square-left = fa-icon.with("\u{f351}") +#let fa-square-letterboxd = fa-icon.with("\u{e62e}") +#let fa-square-list = fa-icon.with("\u{e489}") +#let fa-square-m = fa-icon.with("\u{e276}") +#let fa-square-minus = fa-icon.with("\u{f146}") +#let fa-minus-square = fa-icon.with("\u{f146}") +#let fa-square-n = fa-icon.with("\u{e277}") +#let fa-square-nfi = fa-icon.with("\u{e576}") +#let fa-square-o = fa-icon.with("\u{e278}") +#let fa-square-odnoklassniki = fa-icon.with("\u{f264}") +#let fa-odnoklassniki-square = fa-icon.with("\u{f264}") +#let fa-square-p = fa-icon.with("\u{e279}") +#let fa-square-parking = fa-icon.with("\u{f540}") +#let fa-parking = fa-icon.with("\u{f540}") +#let fa-square-parking-slash = fa-icon.with("\u{f617}") +#let fa-parking-slash = fa-icon.with("\u{f617}") +#let fa-square-pen = fa-icon.with("\u{f14b}") +#let fa-pen-square = fa-icon.with("\u{f14b}") +#let fa-pencil-square = fa-icon.with("\u{f14b}") +#let fa-square-person-confined = fa-icon.with("\u{e577}") +#let fa-square-phone = fa-icon.with("\u{f098}") +#let fa-phone-square = fa-icon.with("\u{f098}") +#let fa-square-phone-flip = fa-icon.with("\u{f87b}") +#let fa-phone-square-alt = fa-icon.with("\u{f87b}") +#let fa-square-phone-hangup = fa-icon.with("\u{e27a}") +#let fa-phone-square-down = fa-icon.with("\u{e27a}") +#let fa-square-pied-piper = fa-icon.with("\u{e01e}") +#let fa-pied-piper-square = fa-icon.with("\u{e01e}") +#let fa-square-pinterest = fa-icon.with("\u{f0d3}") +#let fa-pinterest-square = fa-icon.with("\u{f0d3}") +#let fa-square-plus = fa-icon.with("\u{f0fe}") +#let fa-plus-square = fa-icon.with("\u{f0fe}") +#let fa-square-poll-horizontal = fa-icon.with("\u{f682}") +#let fa-poll-h = fa-icon.with("\u{f682}") +#let fa-square-poll-vertical = fa-icon.with("\u{f681}") +#let fa-poll = fa-icon.with("\u{f681}") +#let fa-square-q = fa-icon.with("\u{e27b}") +#let fa-square-quarters = fa-icon.with("\u{e44e}") +#let fa-square-question = fa-icon.with("\u{f2fd}") +#let fa-question-square = fa-icon.with("\u{f2fd}") +#let fa-square-quote = fa-icon.with("\u{e329}") +#let fa-square-r = fa-icon.with("\u{e27c}") +#let fa-square-reddit = fa-icon.with("\u{f1a2}") +#let fa-reddit-square = fa-icon.with("\u{f1a2}") +#let fa-square-right = fa-icon.with("\u{f352}") +#let fa-arrow-alt-square-right = fa-icon.with("\u{f352}") +#let fa-square-ring = fa-icon.with("\u{e44f}") +#let fa-square-root = fa-icon.with("\u{f697}") +#let fa-square-root-variable = fa-icon.with("\u{f698}") +#let fa-square-root-alt = fa-icon.with("\u{f698}") +#let fa-square-rss = fa-icon.with("\u{f143}") +#let fa-rss-square = fa-icon.with("\u{f143}") +#let fa-square-s = fa-icon.with("\u{e27d}") +#let fa-square-share-nodes = fa-icon.with("\u{f1e1}") +#let fa-share-alt-square = fa-icon.with("\u{f1e1}") +#let fa-square-sliders = fa-icon.with("\u{f3f0}") +#let fa-sliders-h-square = fa-icon.with("\u{f3f0}") +#let fa-square-sliders-vertical = fa-icon.with("\u{f3f2}") +#let fa-sliders-v-square = fa-icon.with("\u{f3f2}") +#let fa-square-small = fa-icon.with("\u{e27e}") +#let fa-square-snapchat = fa-icon.with("\u{f2ad}") +#let fa-snapchat-square = fa-icon.with("\u{f2ad}") +#let fa-squarespace = fa-icon.with("\u{f5be}") +#let fa-square-star = fa-icon.with("\u{e27f}") +#let fa-square-steam = fa-icon.with("\u{f1b7}") +#let fa-steam-square = fa-icon.with("\u{f1b7}") +#let fa-square-t = fa-icon.with("\u{e280}") +#let fa-square-terminal = fa-icon.with("\u{e32a}") +#let fa-square-this-way-up = fa-icon.with("\u{f49f}") +#let fa-box-up = fa-icon.with("\u{f49f}") +#let fa-square-threads = fa-icon.with("\u{e619}") +#let fa-square-tumblr = fa-icon.with("\u{f174}") +#let fa-tumblr-square = fa-icon.with("\u{f174}") +#let fa-square-twitter = fa-icon.with("\u{f081}") +#let fa-twitter-square = fa-icon.with("\u{f081}") +#let fa-square-u = fa-icon.with("\u{e281}") +#let fa-square-up = fa-icon.with("\u{f353}") +#let fa-arrow-alt-square-up = fa-icon.with("\u{f353}") +#let fa-square-up-left = fa-icon.with("\u{e282}") +#let fa-square-up-right = fa-icon.with("\u{f360}") +#let fa-external-link-square-alt = fa-icon.with("\u{f360}") +#let fa-square-upwork = fa-icon.with("\u{e67c}") +#let fa-square-user = fa-icon.with("\u{e283}") +#let fa-square-v = fa-icon.with("\u{e284}") +#let fa-square-viadeo = fa-icon.with("\u{f2aa}") +#let fa-viadeo-square = fa-icon.with("\u{f2aa}") +#let fa-square-vimeo = fa-icon.with("\u{f194}") +#let fa-vimeo-square = fa-icon.with("\u{f194}") +#let fa-square-virus = fa-icon.with("\u{e578}") +#let fa-square-w = fa-icon.with("\u{e285}") +#let fa-square-web-awesome = fa-icon.with("\u{e683}") +#let fa-square-web-awesome-stroke = fa-icon.with("\u{e684}") +#let fa-square-whatsapp = fa-icon.with("\u{f40c}") +#let fa-whatsapp-square = fa-icon.with("\u{f40c}") +#let fa-square-x = fa-icon.with("\u{e286}") +#let fa-square-xing = fa-icon.with("\u{f169}") +#let fa-xing-square = fa-icon.with("\u{f169}") +#let fa-square-xmark = fa-icon.with("\u{f2d3}") +#let fa-times-square = fa-icon.with("\u{f2d3}") +#let fa-xmark-square = fa-icon.with("\u{f2d3}") +#let fa-square-x-twitter = fa-icon.with("\u{e61a}") +#let fa-square-y = fa-icon.with("\u{e287}") +#let fa-square-youtube = fa-icon.with("\u{f431}") +#let fa-youtube-square = fa-icon.with("\u{f431}") +#let fa-square-z = fa-icon.with("\u{e288}") +#let fa-squid = fa-icon.with("\u{e450}") +#let fa-squirrel = fa-icon.with("\u{f71a}") +#let fa-stack-exchange = fa-icon.with("\u{f18d}") +#let fa-stack-overflow = fa-icon.with("\u{f16c}") +#let fa-stackpath = fa-icon.with("\u{f842}") +#let fa-staff = fa-icon.with("\u{f71b}") +#let fa-staff-snake = fa-icon.with("\u{e579}") +#let fa-rod-asclepius = fa-icon.with("\u{e579}") +#let fa-rod-snake = fa-icon.with("\u{e579}") +#let fa-staff-aesculapius = fa-icon.with("\u{e579}") +#let fa-stairs = fa-icon.with("\u{e289}") +#let fa-stamp = fa-icon.with("\u{f5bf}") +#let fa-standard-definition = fa-icon.with("\u{e28a}") +#let fa-rectangle-sd = fa-icon.with("\u{e28a}") +#let fa-stapler = fa-icon.with("\u{e5af}") +#let fa-star = fa-icon.with("\u{f005}") +#let fa-star-and-crescent = fa-icon.with("\u{f699}") +#let fa-star-christmas = fa-icon.with("\u{f7d4}") +#let fa-star-exclamation = fa-icon.with("\u{f2f3}") +#let fa-starfighter = fa-icon.with("\u{e037}") +#let fa-starfighter-twin-ion-engine = fa-icon.with("\u{e038}") +#let fa-starfighter-alt = fa-icon.with("\u{e038}") +#let fa-starfighter-twin-ion-engine-advanced = fa-icon.with("\u{e28e}") +#let fa-starfighter-alt-advanced = fa-icon.with("\u{e28e}") +#let fa-star-half = fa-icon.with("\u{f089}") +#let fa-star-half-stroke = fa-icon.with("\u{f5c0}") +#let fa-star-half-alt = fa-icon.with("\u{f5c0}") +#let fa-star-of-david = fa-icon.with("\u{f69a}") +#let fa-star-of-life = fa-icon.with("\u{f621}") +#let fa-stars = fa-icon.with("\u{f762}") +#let fa-star-sharp = fa-icon.with("\u{e28b}") +#let fa-star-sharp-half = fa-icon.with("\u{e28c}") +#let fa-star-sharp-half-stroke = fa-icon.with("\u{e28d}") +#let fa-star-sharp-half-alt = fa-icon.with("\u{e28d}") +#let fa-starship = fa-icon.with("\u{e039}") +#let fa-starship-freighter = fa-icon.with("\u{e03a}") +#let fa-star-shooting = fa-icon.with("\u{e036}") +#let fa-staylinked = fa-icon.with("\u{f3f5}") +#let fa-steak = fa-icon.with("\u{f824}") +#let fa-steam = fa-icon.with("\u{f1b6}") +#let fa-steam-symbol = fa-icon.with("\u{f3f6}") +#let fa-steering-wheel = fa-icon.with("\u{f622}") +#let fa-sterling-sign = fa-icon.with("\u{f154}") +#let fa-gbp = fa-icon.with("\u{f154}") +#let fa-pound-sign = fa-icon.with("\u{f154}") +#let fa-stethoscope = fa-icon.with("\u{f0f1}") +#let fa-sticker-mule = fa-icon.with("\u{f3f7}") +#let fa-stocking = fa-icon.with("\u{f7d5}") +#let fa-stomach = fa-icon.with("\u{f623}") +#let fa-stop = fa-icon.with("\u{f04d}") +#let fa-stopwatch = fa-icon.with("\u{f2f2}") +#let fa-stopwatch-20 = fa-icon.with("\u{e06f}") +#let fa-store = fa-icon.with("\u{f54e}") +#let fa-store-lock = fa-icon.with("\u{e4a6}") +#let fa-store-slash = fa-icon.with("\u{e071}") +#let fa-strava = fa-icon.with("\u{f428}") +#let fa-strawberry = fa-icon.with("\u{e32b}") +#let fa-street-view = fa-icon.with("\u{f21d}") +#let fa-stretcher = fa-icon.with("\u{f825}") +#let fa-strikethrough = fa-icon.with("\u{f0cc}") +#let fa-stripe = fa-icon.with("\u{f429}") +#let fa-stripe-s = fa-icon.with("\u{f42a}") +#let fa-stroopwafel = fa-icon.with("\u{f551}") +#let fa-stubber = fa-icon.with("\u{e5c7}") +#let fa-studiovinari = fa-icon.with("\u{f3f8}") +#let fa-stumbleupon = fa-icon.with("\u{f1a4}") +#let fa-stumbleupon-circle = fa-icon.with("\u{f1a3}") +#let fa-subscript = fa-icon.with("\u{f12c}") +#let fa-subtitles = fa-icon.with("\u{e60f}") +#let fa-subtitles-slash = fa-icon.with("\u{e610}") +#let fa-suitcase = fa-icon.with("\u{f0f2}") +#let fa-suitcase-medical = fa-icon.with("\u{f0fa}") +#let fa-medkit = fa-icon.with("\u{f0fa}") +#let fa-suitcase-rolling = fa-icon.with("\u{f5c1}") +#let fa-sun = fa-icon.with("\u{f185}") +#let fa-sun-bright = fa-icon.with("\u{e28f}") +#let fa-sun-alt = fa-icon.with("\u{e28f}") +#let fa-sun-cloud = fa-icon.with("\u{f763}") +#let fa-sun-dust = fa-icon.with("\u{f764}") +#let fa-sunglasses = fa-icon.with("\u{f892}") +#let fa-sun-haze = fa-icon.with("\u{f765}") +#let fa-sun-plant-wilt = fa-icon.with("\u{e57a}") +#let fa-sunrise = fa-icon.with("\u{f766}") +#let fa-sunset = fa-icon.with("\u{f767}") +#let fa-superpowers = fa-icon.with("\u{f2dd}") +#let fa-superscript = fa-icon.with("\u{f12b}") +#let fa-supple = fa-icon.with("\u{f3f9}") +#let fa-suse = fa-icon.with("\u{f7d6}") +#let fa-sushi = fa-icon.with("\u{e48a}") +#let fa-nigiri = fa-icon.with("\u{e48a}") +#let fa-sushi-roll = fa-icon.with("\u{e48b}") +#let fa-maki-roll = fa-icon.with("\u{e48b}") +#let fa-makizushi = fa-icon.with("\u{e48b}") +#let fa-swap = fa-icon.with("\u{e609}") +#let fa-swap-arrows = fa-icon.with("\u{e60a}") +#let fa-swatchbook = fa-icon.with("\u{f5c3}") +#let fa-swift = fa-icon.with("\u{f8e1}") +#let fa-sword = fa-icon.with("\u{f71c}") +#let fa-sword-laser = fa-icon.with("\u{e03b}") +#let fa-sword-laser-alt = fa-icon.with("\u{e03c}") +#let fa-swords = fa-icon.with("\u{f71d}") +#let fa-swords-laser = fa-icon.with("\u{e03d}") +#let fa-symbols = fa-icon.with("\u{f86e}") +#let fa-icons-alt = fa-icon.with("\u{f86e}") +#let fa-symfony = fa-icon.with("\u{f83d}") +#let fa-synagogue = fa-icon.with("\u{f69b}") +#let fa-syringe = fa-icon.with("\u{f48e}") +#let fa-t = fa-icon.with("\u{54}") +#let fa-table = fa-icon.with("\u{f0ce}") +#let fa-table-cells = fa-icon.with("\u{f00a}") +#let fa-th = fa-icon.with("\u{f00a}") +#let fa-table-cells-column-lock = fa-icon.with("\u{e678}") +#let fa-table-cells-column-unlock = fa-icon.with("\u{e690}") +#let fa-table-cells-large = fa-icon.with("\u{f009}") +#let fa-th-large = fa-icon.with("\u{f009}") +#let fa-table-cells-lock = fa-icon.with("\u{e679}") +#let fa-table-cells-row-lock = fa-icon.with("\u{e67a}") +#let fa-table-cells-row-unlock = fa-icon.with("\u{e691}") +#let fa-table-cells-unlock = fa-icon.with("\u{e692}") +#let fa-table-columns = fa-icon.with("\u{f0db}") +#let fa-columns = fa-icon.with("\u{f0db}") +#let fa-table-layout = fa-icon.with("\u{e290}") +#let fa-table-list = fa-icon.with("\u{f00b}") +#let fa-th-list = fa-icon.with("\u{f00b}") +#let fa-table-picnic = fa-icon.with("\u{e32d}") +#let fa-table-pivot = fa-icon.with("\u{e291}") +#let fa-table-rows = fa-icon.with("\u{e292}") +#let fa-rows = fa-icon.with("\u{e292}") +#let fa-tablet = fa-icon.with("\u{f3fb}") +#let fa-tablet-android = fa-icon.with("\u{f3fb}") +#let fa-tablet-button = fa-icon.with("\u{f10a}") +#let fa-table-tennis-paddle-ball = fa-icon.with("\u{f45d}") +#let fa-ping-pong-paddle-ball = fa-icon.with("\u{f45d}") +#let fa-table-tennis = fa-icon.with("\u{f45d}") +#let fa-table-tree = fa-icon.with("\u{e293}") +#let fa-tablet-rugged = fa-icon.with("\u{f48f}") +#let fa-tablets = fa-icon.with("\u{f490}") +#let fa-tablet-screen = fa-icon.with("\u{f3fc}") +#let fa-tablet-android-alt = fa-icon.with("\u{f3fc}") +#let fa-tablet-screen-button = fa-icon.with("\u{f3fa}") +#let fa-tablet-alt = fa-icon.with("\u{f3fa}") +#let fa-tachograph-digital = fa-icon.with("\u{f566}") +#let fa-digital-tachograph = fa-icon.with("\u{f566}") +#let fa-taco = fa-icon.with("\u{f826}") +#let fa-tag = fa-icon.with("\u{f02b}") +#let fa-tags = fa-icon.with("\u{f02c}") +#let fa-tally = fa-icon.with("\u{f69c}") +#let fa-tally-5 = fa-icon.with("\u{f69c}") +#let fa-tally-1 = fa-icon.with("\u{e294}") +#let fa-tally-2 = fa-icon.with("\u{e295}") +#let fa-tally-3 = fa-icon.with("\u{e296}") +#let fa-tally-4 = fa-icon.with("\u{e297}") +#let fa-tamale = fa-icon.with("\u{e451}") +#let fa-tank-water = fa-icon.with("\u{e452}") +#let fa-tape = fa-icon.with("\u{f4db}") +#let fa-tarp = fa-icon.with("\u{e57b}") +#let fa-tarp-droplet = fa-icon.with("\u{e57c}") +#let fa-taxi = fa-icon.with("\u{f1ba}") +#let fa-cab = fa-icon.with("\u{f1ba}") +#let fa-taxi-bus = fa-icon.with("\u{e298}") +#let fa-teamspeak = fa-icon.with("\u{f4f9}") +#let fa-teddy-bear = fa-icon.with("\u{e3cf}") +#let fa-teeth = fa-icon.with("\u{f62e}") +#let fa-teeth-open = fa-icon.with("\u{f62f}") +#let fa-telegram = fa-icon.with("\u{f2c6}") +#let fa-telegram-plane = fa-icon.with("\u{f2c6}") +#let fa-telescope = fa-icon.with("\u{e03e}") +#let fa-temperature-arrow-down = fa-icon.with("\u{e03f}") +#let fa-temperature-down = fa-icon.with("\u{e03f}") +#let fa-temperature-arrow-up = fa-icon.with("\u{e040}") +#let fa-temperature-up = fa-icon.with("\u{e040}") +#let fa-temperature-empty = fa-icon.with("\u{f2cb}") +#let fa-temperature-0 = fa-icon.with("\u{f2cb}") +#let fa-thermometer-0 = fa-icon.with("\u{f2cb}") +#let fa-thermometer-empty = fa-icon.with("\u{f2cb}") +#let fa-temperature-full = fa-icon.with("\u{f2c7}") +#let fa-temperature-4 = fa-icon.with("\u{f2c7}") +#let fa-thermometer-4 = fa-icon.with("\u{f2c7}") +#let fa-thermometer-full = fa-icon.with("\u{f2c7}") +#let fa-temperature-half = fa-icon.with("\u{f2c9}") +#let fa-temperature-2 = fa-icon.with("\u{f2c9}") +#let fa-thermometer-2 = fa-icon.with("\u{f2c9}") +#let fa-thermometer-half = fa-icon.with("\u{f2c9}") +#let fa-temperature-high = fa-icon.with("\u{f769}") +#let fa-temperature-list = fa-icon.with("\u{e299}") +#let fa-temperature-low = fa-icon.with("\u{f76b}") +#let fa-temperature-quarter = fa-icon.with("\u{f2ca}") +#let fa-temperature-1 = fa-icon.with("\u{f2ca}") +#let fa-thermometer-1 = fa-icon.with("\u{f2ca}") +#let fa-thermometer-quarter = fa-icon.with("\u{f2ca}") +#let fa-temperature-snow = fa-icon.with("\u{f768}") +#let fa-temperature-frigid = fa-icon.with("\u{f768}") +#let fa-temperature-sun = fa-icon.with("\u{f76a}") +#let fa-temperature-hot = fa-icon.with("\u{f76a}") +#let fa-temperature-three-quarters = fa-icon.with("\u{f2c8}") +#let fa-temperature-3 = fa-icon.with("\u{f2c8}") +#let fa-thermometer-3 = fa-icon.with("\u{f2c8}") +#let fa-thermometer-three-quarters = fa-icon.with("\u{f2c8}") +#let fa-tencent-weibo = fa-icon.with("\u{f1d5}") +#let fa-tenge-sign = fa-icon.with("\u{f7d7}") +#let fa-tenge = fa-icon.with("\u{f7d7}") +#let fa-tennis-ball = fa-icon.with("\u{f45e}") +#let fa-tent = fa-icon.with("\u{e57d}") +#let fa-tent-arrow-down-to-line = fa-icon.with("\u{e57e}") +#let fa-tent-arrow-left-right = fa-icon.with("\u{e57f}") +#let fa-tent-arrows-down = fa-icon.with("\u{e581}") +#let fa-tent-arrow-turn-left = fa-icon.with("\u{e580}") +#let fa-tent-double-peak = fa-icon.with("\u{e627}") +#let fa-tents = fa-icon.with("\u{e582}") +#let fa-terminal = fa-icon.with("\u{f120}") +#let fa-text = fa-icon.with("\u{f893}") +#let fa-text-height = fa-icon.with("\u{f034}") +#let fa-text-size = fa-icon.with("\u{f894}") +#let fa-text-slash = fa-icon.with("\u{f87d}") +#let fa-remove-format = fa-icon.with("\u{f87d}") +#let fa-text-width = fa-icon.with("\u{f035}") +#let fa-themeco = fa-icon.with("\u{f5c6}") +#let fa-themeisle = fa-icon.with("\u{f2b2}") +#let fa-the-red-yeti = fa-icon.with("\u{f69d}") +#let fa-thermometer = fa-icon.with("\u{f491}") +#let fa-theta = fa-icon.with("\u{f69e}") +#let fa-think-peaks = fa-icon.with("\u{f731}") +#let fa-thought-bubble = fa-icon.with("\u{e32e}") +#let fa-threads = fa-icon.with("\u{e618}") +#let fa-thumbs-down = fa-icon.with("\u{f165}") +#let fa-thumbs-up = fa-icon.with("\u{f164}") +#let fa-thumbtack = fa-icon.with("\u{f08d}") +#let fa-thumb-tack = fa-icon.with("\u{f08d}") +#let fa-thumbtack-slash = fa-icon.with("\u{e68f}") +#let fa-thumb-tack-slash = fa-icon.with("\u{e68f}") +#let fa-tick = fa-icon.with("\u{e32f}") +#let fa-ticket = fa-icon.with("\u{f145}") +#let fa-ticket-airline = fa-icon.with("\u{e29a}") +#let fa-ticket-perforated-plane = fa-icon.with("\u{e29a}") +#let fa-ticket-plane = fa-icon.with("\u{e29a}") +#let fa-ticket-perforated = fa-icon.with("\u{e63e}") +#let fa-tickets = fa-icon.with("\u{e658}") +#let fa-tickets-airline = fa-icon.with("\u{e29b}") +#let fa-tickets-perforated-plane = fa-icon.with("\u{e29b}") +#let fa-tickets-plane = fa-icon.with("\u{e29b}") +#let fa-ticket-simple = fa-icon.with("\u{f3ff}") +#let fa-ticket-alt = fa-icon.with("\u{f3ff}") +#let fa-tickets-perforated = fa-icon.with("\u{e63f}") +#let fa-tickets-simple = fa-icon.with("\u{e659}") +#let fa-tiktok = fa-icon.with("\u{e07b}") +#let fa-tilde = fa-icon.with("\u{7e}") +#let fa-timeline = fa-icon.with("\u{e29c}") +#let fa-timeline-arrow = fa-icon.with("\u{e29d}") +#let fa-timer = fa-icon.with("\u{e29e}") +#let fa-tire = fa-icon.with("\u{f631}") +#let fa-tire-flat = fa-icon.with("\u{f632}") +#let fa-tire-pressure-warning = fa-icon.with("\u{f633}") +#let fa-tire-rugged = fa-icon.with("\u{f634}") +#let fa-toggle-large-off = fa-icon.with("\u{e5b0}") +#let fa-toggle-large-on = fa-icon.with("\u{e5b1}") +#let fa-toggle-off = fa-icon.with("\u{f204}") +#let fa-toggle-on = fa-icon.with("\u{f205}") +#let fa-toilet = fa-icon.with("\u{f7d8}") +#let fa-toilet-paper = fa-icon.with("\u{f71e}") +#let fa-toilet-paper-blank = fa-icon.with("\u{f71f}") +#let fa-toilet-paper-alt = fa-icon.with("\u{f71f}") +#let fa-toilet-paper-blank-under = fa-icon.with("\u{e29f}") +#let fa-toilet-paper-reverse-alt = fa-icon.with("\u{e29f}") +#let fa-toilet-paper-check = fa-icon.with("\u{e5b2}") +#let fa-toilet-paper-slash = fa-icon.with("\u{e072}") +#let fa-toilet-paper-under = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-reverse = fa-icon.with("\u{e2a0}") +#let fa-toilet-paper-under-slash = fa-icon.with("\u{e2a1}") +#let fa-toilet-paper-reverse-slash = fa-icon.with("\u{e2a1}") +#let fa-toilet-paper-xmark = fa-icon.with("\u{e5b3}") +#let fa-toilet-portable = fa-icon.with("\u{e583}") +#let fa-toilets-portable = fa-icon.with("\u{e584}") +#let fa-tomato = fa-icon.with("\u{e330}") +#let fa-tombstone = fa-icon.with("\u{f720}") +#let fa-tombstone-blank = fa-icon.with("\u{f721}") +#let fa-tombstone-alt = fa-icon.with("\u{f721}") +#let fa-toolbox = fa-icon.with("\u{f552}") +#let fa-tooth = fa-icon.with("\u{f5c9}") +#let fa-toothbrush = fa-icon.with("\u{f635}") +#let fa-torii-gate = fa-icon.with("\u{f6a1}") +#let fa-tornado = fa-icon.with("\u{f76f}") +#let fa-tower-broadcast = fa-icon.with("\u{f519}") +#let fa-broadcast-tower = fa-icon.with("\u{f519}") +#let fa-tower-cell = fa-icon.with("\u{e585}") +#let fa-tower-control = fa-icon.with("\u{e2a2}") +#let fa-tower-observation = fa-icon.with("\u{e586}") +#let fa-tractor = fa-icon.with("\u{f722}") +#let fa-trade-federation = fa-icon.with("\u{f513}") +#let fa-trademark = fa-icon.with("\u{f25c}") +#let fa-traffic-cone = fa-icon.with("\u{f636}") +#let fa-traffic-light = fa-icon.with("\u{f637}") +#let fa-traffic-light-go = fa-icon.with("\u{f638}") +#let fa-traffic-light-slow = fa-icon.with("\u{f639}") +#let fa-traffic-light-stop = fa-icon.with("\u{f63a}") +#let fa-trailer = fa-icon.with("\u{e041}") +#let fa-train = fa-icon.with("\u{f238}") +#let fa-train-subway = fa-icon.with("\u{f239}") +#let fa-subway = fa-icon.with("\u{f239}") +#let fa-train-subway-tunnel = fa-icon.with("\u{e2a3}") +#let fa-subway-tunnel = fa-icon.with("\u{e2a3}") +#let fa-train-track = fa-icon.with("\u{e453}") +#let fa-train-tram = fa-icon.with("\u{e5b4}") +#let fa-train-tunnel = fa-icon.with("\u{e454}") +#let fa-transformer-bolt = fa-icon.with("\u{e2a4}") +#let fa-transgender = fa-icon.with("\u{f225}") +#let fa-transgender-alt = fa-icon.with("\u{f225}") +#let fa-transporter = fa-icon.with("\u{e042}") +#let fa-transporter-1 = fa-icon.with("\u{e043}") +#let fa-transporter-2 = fa-icon.with("\u{e044}") +#let fa-transporter-3 = fa-icon.with("\u{e045}") +#let fa-transporter-4 = fa-icon.with("\u{e2a5}") +#let fa-transporter-5 = fa-icon.with("\u{e2a6}") +#let fa-transporter-6 = fa-icon.with("\u{e2a7}") +#let fa-transporter-7 = fa-icon.with("\u{e2a8}") +#let fa-transporter-empty = fa-icon.with("\u{e046}") +#let fa-trash = fa-icon.with("\u{f1f8}") +#let fa-trash-arrow-up = fa-icon.with("\u{f829}") +#let fa-trash-restore = fa-icon.with("\u{f829}") +#let fa-trash-can = fa-icon.with("\u{f2ed}") +#let fa-trash-alt = fa-icon.with("\u{f2ed}") +#let fa-trash-can-arrow-up = fa-icon.with("\u{f82a}") +#let fa-trash-restore-alt = fa-icon.with("\u{f82a}") +#let fa-trash-can-check = fa-icon.with("\u{e2a9}") +#let fa-trash-can-clock = fa-icon.with("\u{e2aa}") +#let fa-trash-can-list = fa-icon.with("\u{e2ab}") +#let fa-trash-can-plus = fa-icon.with("\u{e2ac}") +#let fa-trash-can-slash = fa-icon.with("\u{e2ad}") +#let fa-trash-alt-slash = fa-icon.with("\u{e2ad}") +#let fa-trash-can-undo = fa-icon.with("\u{f896}") +#let fa-trash-can-arrow-turn-left = fa-icon.with("\u{f896}") +#let fa-trash-undo-alt = fa-icon.with("\u{f896}") +#let fa-trash-can-xmark = fa-icon.with("\u{e2ae}") +#let fa-trash-check = fa-icon.with("\u{e2af}") +#let fa-trash-clock = fa-icon.with("\u{e2b0}") +#let fa-trash-list = fa-icon.with("\u{e2b1}") +#let fa-trash-plus = fa-icon.with("\u{e2b2}") +#let fa-trash-slash = fa-icon.with("\u{e2b3}") +#let fa-trash-undo = fa-icon.with("\u{f895}") +#let fa-trash-arrow-turn-left = fa-icon.with("\u{f895}") +#let fa-trash-xmark = fa-icon.with("\u{e2b4}") +#let fa-treasure-chest = fa-icon.with("\u{f723}") +#let fa-tree = fa-icon.with("\u{f1bb}") +#let fa-tree-christmas = fa-icon.with("\u{f7db}") +#let fa-tree-city = fa-icon.with("\u{e587}") +#let fa-tree-deciduous = fa-icon.with("\u{f400}") +#let fa-tree-alt = fa-icon.with("\u{f400}") +#let fa-tree-decorated = fa-icon.with("\u{f7dc}") +#let fa-tree-large = fa-icon.with("\u{f7dd}") +#let fa-tree-palm = fa-icon.with("\u{f82b}") +#let fa-trees = fa-icon.with("\u{f724}") +#let fa-trello = fa-icon.with("\u{f181}") +#let fa-t-rex = fa-icon.with("\u{e629}") +#let fa-triangle = fa-icon.with("\u{f2ec}") +#let fa-triangle-exclamation = fa-icon.with("\u{f071}") +#let fa-exclamation-triangle = fa-icon.with("\u{f071}") +#let fa-warning = fa-icon.with("\u{f071}") +#let fa-triangle-instrument = fa-icon.with("\u{f8e2}") +#let fa-triangle-music = fa-icon.with("\u{f8e2}") +#let fa-triangle-person-digging = fa-icon.with("\u{f85d}") +#let fa-construction = fa-icon.with("\u{f85d}") +#let fa-tricycle = fa-icon.with("\u{e5c3}") +#let fa-tricycle-adult = fa-icon.with("\u{e5c4}") +#let fa-trillium = fa-icon.with("\u{e588}") +#let fa-trophy = fa-icon.with("\u{f091}") +#let fa-trophy-star = fa-icon.with("\u{f2eb}") +#let fa-trophy-alt = fa-icon.with("\u{f2eb}") +#let fa-trowel = fa-icon.with("\u{e589}") +#let fa-trowel-bricks = fa-icon.with("\u{e58a}") +#let fa-truck = fa-icon.with("\u{f0d1}") +#let fa-truck-arrow-right = fa-icon.with("\u{e58b}") +#let fa-truck-bolt = fa-icon.with("\u{e3d0}") +#let fa-truck-clock = fa-icon.with("\u{f48c}") +#let fa-shipping-timed = fa-icon.with("\u{f48c}") +#let fa-truck-container = fa-icon.with("\u{f4dc}") +#let fa-truck-container-empty = fa-icon.with("\u{e2b5}") +#let fa-truck-droplet = fa-icon.with("\u{e58c}") +#let fa-truck-fast = fa-icon.with("\u{f48b}") +#let fa-shipping-fast = fa-icon.with("\u{f48b}") +#let fa-truck-field = fa-icon.with("\u{e58d}") +#let fa-truck-field-un = fa-icon.with("\u{e58e}") +#let fa-truck-fire = fa-icon.with("\u{e65a}") +#let fa-truck-flatbed = fa-icon.with("\u{e2b6}") +#let fa-truck-front = fa-icon.with("\u{e2b7}") +#let fa-truck-ladder = fa-icon.with("\u{e657}") +#let fa-truck-medical = fa-icon.with("\u{f0f9}") +#let fa-ambulance = fa-icon.with("\u{f0f9}") +#let fa-truck-monster = fa-icon.with("\u{f63b}") +#let fa-truck-moving = fa-icon.with("\u{f4df}") +#let fa-truck-pickup = fa-icon.with("\u{f63c}") +#let fa-truck-plane = fa-icon.with("\u{e58f}") +#let fa-truck-plow = fa-icon.with("\u{f7de}") +#let fa-truck-ramp = fa-icon.with("\u{f4e0}") +#let fa-truck-ramp-box = fa-icon.with("\u{f4de}") +#let fa-truck-loading = fa-icon.with("\u{f4de}") +#let fa-truck-ramp-couch = fa-icon.with("\u{f4dd}") +#let fa-truck-couch = fa-icon.with("\u{f4dd}") +#let fa-truck-tow = fa-icon.with("\u{e2b8}") +#let fa-truck-utensils = fa-icon.with("\u{e628}") +#let fa-trumpet = fa-icon.with("\u{f8e3}") +#let fa-tty = fa-icon.with("\u{f1e4}") +#let fa-teletype = fa-icon.with("\u{f1e4}") +#let fa-tty-answer = fa-icon.with("\u{e2b9}") +#let fa-teletype-answer = fa-icon.with("\u{e2b9}") +#let fa-tugrik-sign = fa-icon.with("\u{e2ba}") +#let fa-tumblr = fa-icon.with("\u{f173}") +#let fa-turkey = fa-icon.with("\u{f725}") +#let fa-turkish-lira-sign = fa-icon.with("\u{e2bb}") +#let fa-try = fa-icon.with("\u{e2bb}") +#let fa-turkish-lira = fa-icon.with("\u{e2bb}") +#let fa-turn-down = fa-icon.with("\u{f3be}") +#let fa-level-down-alt = fa-icon.with("\u{f3be}") +#let fa-turn-down-left = fa-icon.with("\u{e331}") +#let fa-turn-down-right = fa-icon.with("\u{e455}") +#let fa-turn-left = fa-icon.with("\u{e636}") +#let fa-turn-left-down = fa-icon.with("\u{e637}") +#let fa-turn-left-up = fa-icon.with("\u{e638}") +#let fa-turn-right = fa-icon.with("\u{e639}") +#let fa-turntable = fa-icon.with("\u{f8e4}") +#let fa-turn-up = fa-icon.with("\u{f3bf}") +#let fa-level-up-alt = fa-icon.with("\u{f3bf}") +#let fa-turtle = fa-icon.with("\u{f726}") +#let fa-tv = fa-icon.with("\u{f26c}") +#let fa-television = fa-icon.with("\u{f26c}") +#let fa-tv-alt = fa-icon.with("\u{f26c}") +#let fa-tv-music = fa-icon.with("\u{f8e6}") +#let fa-tv-retro = fa-icon.with("\u{f401}") +#let fa-twitch = fa-icon.with("\u{f1e8}") +#let fa-twitter = fa-icon.with("\u{f099}") +#let fa-typewriter = fa-icon.with("\u{f8e7}") +#let fa-typo3 = fa-icon.with("\u{f42b}") +#let fa-u = fa-icon.with("\u{55}") +#let fa-uber = fa-icon.with("\u{f402}") +#let fa-ubuntu = fa-icon.with("\u{f7df}") +#let fa-ufo = fa-icon.with("\u{e047}") +#let fa-ufo-beam = fa-icon.with("\u{e048}") +#let fa-uikit = fa-icon.with("\u{f403}") +#let fa-umbraco = fa-icon.with("\u{f8e8}") +#let fa-umbrella = fa-icon.with("\u{f0e9}") +#let fa-umbrella-beach = fa-icon.with("\u{f5ca}") +#let fa-umbrella-simple = fa-icon.with("\u{e2bc}") +#let fa-umbrella-alt = fa-icon.with("\u{e2bc}") +#let fa-uncharted = fa-icon.with("\u{e084}") +#let fa-underline = fa-icon.with("\u{f0cd}") +#let fa-unicorn = fa-icon.with("\u{f727}") +#let fa-uniform-martial-arts = fa-icon.with("\u{e3d1}") +#let fa-union = fa-icon.with("\u{f6a2}") +#let fa-uniregistry = fa-icon.with("\u{f404}") +#let fa-unity = fa-icon.with("\u{e049}") +#let fa-universal-access = fa-icon.with("\u{f29a}") +#let fa-unlock = fa-icon.with("\u{f09c}") +#let fa-unlock-keyhole = fa-icon.with("\u{f13e}") +#let fa-unlock-alt = fa-icon.with("\u{f13e}") +#let fa-unsplash = fa-icon.with("\u{e07c}") +#let fa-untappd = fa-icon.with("\u{f405}") +#let fa-up = fa-icon.with("\u{f357}") +#let fa-arrow-alt-up = fa-icon.with("\u{f357}") +#let fa-up-down = fa-icon.with("\u{f338}") +#let fa-arrows-alt-v = fa-icon.with("\u{f338}") +#let fa-up-down-left-right = fa-icon.with("\u{f0b2}") +#let fa-arrows-alt = fa-icon.with("\u{f0b2}") +#let fa-up-from-bracket = fa-icon.with("\u{e590}") +#let fa-up-from-dotted-line = fa-icon.with("\u{e456}") +#let fa-up-from-line = fa-icon.with("\u{f346}") +#let fa-arrow-alt-from-bottom = fa-icon.with("\u{f346}") +#let fa-up-left = fa-icon.with("\u{e2bd}") +#let fa-upload = fa-icon.with("\u{f093}") +#let fa-up-long = fa-icon.with("\u{f30c}") +#let fa-long-arrow-alt-up = fa-icon.with("\u{f30c}") +#let fa-up-right = fa-icon.with("\u{e2be}") +#let fa-up-right-and-down-left-from-center = fa-icon.with("\u{f424}") +#let fa-expand-alt = fa-icon.with("\u{f424}") +#let fa-up-right-from-square = fa-icon.with("\u{f35d}") +#let fa-external-link-alt = fa-icon.with("\u{f35d}") +#let fa-ups = fa-icon.with("\u{f7e0}") +#let fa-up-to-bracket = fa-icon.with("\u{e66e}") +#let fa-up-to-dotted-line = fa-icon.with("\u{e457}") +#let fa-up-to-line = fa-icon.with("\u{f34d}") +#let fa-arrow-alt-to-top = fa-icon.with("\u{f34d}") +#let fa-upwork = fa-icon.with("\u{e641}") +#let fa-usb = fa-icon.with("\u{f287}") +#let fa-usb-drive = fa-icon.with("\u{f8e9}") +#let fa-user = fa-icon.with("\u{f007}") +#let fa-user-alien = fa-icon.with("\u{e04a}") +#let fa-user-astronaut = fa-icon.with("\u{f4fb}") +#let fa-user-beard-bolt = fa-icon.with("\u{e689}") +#let fa-user-bounty-hunter = fa-icon.with("\u{e2bf}") +#let fa-user-check = fa-icon.with("\u{f4fc}") +#let fa-user-chef = fa-icon.with("\u{e3d2}") +#let fa-user-clock = fa-icon.with("\u{f4fd}") +#let fa-user-cowboy = fa-icon.with("\u{f8ea}") +#let fa-user-crown = fa-icon.with("\u{f6a4}") +#let fa-user-doctor = fa-icon.with("\u{f0f0}") +#let fa-user-md = fa-icon.with("\u{f0f0}") +#let fa-user-doctor-hair = fa-icon.with("\u{e458}") +#let fa-user-doctor-hair-long = fa-icon.with("\u{e459}") +#let fa-user-doctor-message = fa-icon.with("\u{f82e}") +#let fa-user-md-chat = fa-icon.with("\u{f82e}") +#let fa-user-gear = fa-icon.with("\u{f4fe}") +#let fa-user-cog = fa-icon.with("\u{f4fe}") +#let fa-user-graduate = fa-icon.with("\u{f501}") +#let fa-user-group = fa-icon.with("\u{f500}") +#let fa-user-friends = fa-icon.with("\u{f500}") +#let fa-user-group-crown = fa-icon.with("\u{f6a5}") +#let fa-users-crown = fa-icon.with("\u{f6a5}") +#let fa-user-group-simple = fa-icon.with("\u{e603}") +#let fa-user-hair = fa-icon.with("\u{e45a}") +#let fa-user-hair-buns = fa-icon.with("\u{e3d3}") +#let fa-user-hair-long = fa-icon.with("\u{e45b}") +#let fa-user-hair-mullet = fa-icon.with("\u{e45c}") +#let fa-business-front = fa-icon.with("\u{e45c}") +#let fa-party-back = fa-icon.with("\u{e45c}") +#let fa-trian-balbot = fa-icon.with("\u{e45c}") +#let fa-user-headset = fa-icon.with("\u{f82d}") +#let fa-user-helmet-safety = fa-icon.with("\u{f82c}") +#let fa-user-construction = fa-icon.with("\u{f82c}") +#let fa-user-hard-hat = fa-icon.with("\u{f82c}") +#let fa-user-hoodie = fa-icon.with("\u{e68a}") +#let fa-user-injured = fa-icon.with("\u{f728}") +#let fa-user-large = fa-icon.with("\u{f406}") +#let fa-user-alt = fa-icon.with("\u{f406}") +#let fa-user-large-slash = fa-icon.with("\u{f4fa}") +#let fa-user-alt-slash = fa-icon.with("\u{f4fa}") +#let fa-user-lock = fa-icon.with("\u{f502}") +#let fa-user-magnifying-glass = fa-icon.with("\u{e5c5}") +#let fa-user-minus = fa-icon.with("\u{f503}") +#let fa-user-music = fa-icon.with("\u{f8eb}") +#let fa-user-ninja = fa-icon.with("\u{f504}") +#let fa-user-nurse = fa-icon.with("\u{f82f}") +#let fa-user-nurse-hair = fa-icon.with("\u{e45d}") +#let fa-user-nurse-hair-long = fa-icon.with("\u{e45e}") +#let fa-user-pen = fa-icon.with("\u{f4ff}") +#let fa-user-edit = fa-icon.with("\u{f4ff}") +#let fa-user-pilot = fa-icon.with("\u{e2c0}") +#let fa-user-pilot-tie = fa-icon.with("\u{e2c1}") +#let fa-user-plus = fa-icon.with("\u{f234}") +#let fa-user-police = fa-icon.with("\u{e333}") +#let fa-user-police-tie = fa-icon.with("\u{e334}") +#let fa-user-robot = fa-icon.with("\u{e04b}") +#let fa-user-robot-xmarks = fa-icon.with("\u{e4a7}") +#let fa-users = fa-icon.with("\u{f0c0}") +#let fa-users-between-lines = fa-icon.with("\u{e591}") +#let fa-user-secret = fa-icon.with("\u{f21b}") +#let fa-users-gear = fa-icon.with("\u{f509}") +#let fa-users-cog = fa-icon.with("\u{f509}") +#let fa-user-shakespeare = fa-icon.with("\u{e2c2}") +#let fa-user-shield = fa-icon.with("\u{f505}") +#let fa-user-slash = fa-icon.with("\u{f506}") +#let fa-users-line = fa-icon.with("\u{e592}") +#let fa-users-medical = fa-icon.with("\u{f830}") +#let fa-users-rays = fa-icon.with("\u{e593}") +#let fa-users-rectangle = fa-icon.with("\u{e594}") +#let fa-users-slash = fa-icon.with("\u{e073}") +#let fa-users-viewfinder = fa-icon.with("\u{e595}") +#let fa-user-tag = fa-icon.with("\u{f507}") +#let fa-user-tie = fa-icon.with("\u{f508}") +#let fa-user-tie-hair = fa-icon.with("\u{e45f}") +#let fa-user-tie-hair-long = fa-icon.with("\u{e460}") +#let fa-user-unlock = fa-icon.with("\u{e058}") +#let fa-user-visor = fa-icon.with("\u{e04c}") +#let fa-user-vneck = fa-icon.with("\u{e461}") +#let fa-user-vneck-hair = fa-icon.with("\u{e462}") +#let fa-user-vneck-hair-long = fa-icon.with("\u{e463}") +#let fa-user-xmark = fa-icon.with("\u{f235}") +#let fa-user-times = fa-icon.with("\u{f235}") +#let fa-usps = fa-icon.with("\u{f7e1}") +#let fa-ussunnah = fa-icon.with("\u{f407}") +#let fa-utensils = fa-icon.with("\u{f2e7}") +#let fa-cutlery = fa-icon.with("\u{f2e7}") +#let fa-utensils-slash = fa-icon.with("\u{e464}") +#let fa-utility-pole = fa-icon.with("\u{e2c3}") +#let fa-utility-pole-double = fa-icon.with("\u{e2c4}") +#let fa-v = fa-icon.with("\u{56}") +#let fa-vaadin = fa-icon.with("\u{f408}") +#let fa-vacuum = fa-icon.with("\u{e04d}") +#let fa-vacuum-robot = fa-icon.with("\u{e04e}") +#let fa-value-absolute = fa-icon.with("\u{f6a6}") +#let fa-van-shuttle = fa-icon.with("\u{f5b6}") +#let fa-shuttle-van = fa-icon.with("\u{f5b6}") +#let fa-vault = fa-icon.with("\u{e2c5}") +#let fa-vector-circle = fa-icon.with("\u{e2c6}") +#let fa-vector-polygon = fa-icon.with("\u{e2c7}") +#let fa-vector-square = fa-icon.with("\u{f5cb}") +#let fa-vent-damper = fa-icon.with("\u{e465}") +#let fa-venus = fa-icon.with("\u{f221}") +#let fa-venus-double = fa-icon.with("\u{f226}") +#let fa-venus-mars = fa-icon.with("\u{f228}") +#let fa-vest = fa-icon.with("\u{e085}") +#let fa-vest-patches = fa-icon.with("\u{e086}") +#let fa-viacoin = fa-icon.with("\u{f237}") +#let fa-viadeo = fa-icon.with("\u{f2a9}") +#let fa-vial = fa-icon.with("\u{f492}") +#let fa-vial-circle-check = fa-icon.with("\u{e596}") +#let fa-vials = fa-icon.with("\u{f493}") +#let fa-vial-virus = fa-icon.with("\u{e597}") +#let fa-viber = fa-icon.with("\u{f409}") +#let fa-video = fa-icon.with("\u{f03d}") +#let fa-video-camera = fa-icon.with("\u{f03d}") +#let fa-video-arrow-down-left = fa-icon.with("\u{e2c8}") +#let fa-video-arrow-up-right = fa-icon.with("\u{e2c9}") +#let fa-video-plus = fa-icon.with("\u{f4e1}") +#let fa-video-slash = fa-icon.with("\u{f4e2}") +#let fa-vihara = fa-icon.with("\u{f6a7}") +#let fa-vimeo = fa-icon.with("\u{f40a}") +#let fa-vimeo-v = fa-icon.with("\u{f27d}") +#let fa-vine = fa-icon.with("\u{f1ca}") +#let fa-violin = fa-icon.with("\u{f8ed}") +#let fa-virus = fa-icon.with("\u{e074}") +#let fa-virus-covid = fa-icon.with("\u{e4a8}") +#let fa-virus-covid-slash = fa-icon.with("\u{e4a9}") +#let fa-viruses = fa-icon.with("\u{e076}") +#let fa-virus-slash = fa-icon.with("\u{e075}") +#let fa-vk = fa-icon.with("\u{f189}") +#let fa-vnv = fa-icon.with("\u{f40b}") +#let fa-voicemail = fa-icon.with("\u{f897}") +#let fa-volcano = fa-icon.with("\u{f770}") +#let fa-volleyball = fa-icon.with("\u{f45f}") +#let fa-volleyball-ball = fa-icon.with("\u{f45f}") +#let fa-volume = fa-icon.with("\u{f6a8}") +#let fa-volume-medium = fa-icon.with("\u{f6a8}") +#let fa-volume-high = fa-icon.with("\u{f028}") +#let fa-volume-up = fa-icon.with("\u{f028}") +#let fa-volume-low = fa-icon.with("\u{f027}") +#let fa-volume-down = fa-icon.with("\u{f027}") +#let fa-volume-off = fa-icon.with("\u{f026}") +#let fa-volume-slash = fa-icon.with("\u{f2e2}") +#let fa-volume-xmark = fa-icon.with("\u{f6a9}") +#let fa-volume-mute = fa-icon.with("\u{f6a9}") +#let fa-volume-times = fa-icon.with("\u{f6a9}") +#let fa-vr-cardboard = fa-icon.with("\u{f729}") +#let fa-vuejs = fa-icon.with("\u{f41f}") +#let fa-w = fa-icon.with("\u{57}") +#let fa-waffle = fa-icon.with("\u{e466}") +#let fa-wagon-covered = fa-icon.with("\u{f8ee}") +#let fa-walker = fa-icon.with("\u{f831}") +#let fa-walkie-talkie = fa-icon.with("\u{f8ef}") +#let fa-wallet = fa-icon.with("\u{f555}") +#let fa-wand = fa-icon.with("\u{f72a}") +#let fa-wand-magic = fa-icon.with("\u{f0d0}") +#let fa-magic = fa-icon.with("\u{f0d0}") +#let fa-wand-magic-sparkles = fa-icon.with("\u{e2ca}") +#let fa-magic-wand-sparkles = fa-icon.with("\u{e2ca}") +#let fa-wand-sparkles = fa-icon.with("\u{f72b}") +#let fa-warehouse = fa-icon.with("\u{f494}") +#let fa-warehouse-full = fa-icon.with("\u{f495}") +#let fa-warehouse-alt = fa-icon.with("\u{f495}") +#let fa-washing-machine = fa-icon.with("\u{f898}") +#let fa-washer = fa-icon.with("\u{f898}") +#let fa-watch = fa-icon.with("\u{f2e1}") +#let fa-watch-apple = fa-icon.with("\u{e2cb}") +#let fa-watch-calculator = fa-icon.with("\u{f8f0}") +#let fa-watch-fitness = fa-icon.with("\u{f63e}") +#let fa-watchman-monitoring = fa-icon.with("\u{e087}") +#let fa-watch-smart = fa-icon.with("\u{e2cc}") +#let fa-water = fa-icon.with("\u{f773}") +#let fa-water-arrow-down = fa-icon.with("\u{f774}") +#let fa-water-lower = fa-icon.with("\u{f774}") +#let fa-water-arrow-up = fa-icon.with("\u{f775}") +#let fa-water-rise = fa-icon.with("\u{f775}") +#let fa-water-ladder = fa-icon.with("\u{f5c5}") +#let fa-ladder-water = fa-icon.with("\u{f5c5}") +#let fa-swimming-pool = fa-icon.with("\u{f5c5}") +#let fa-watermelon-slice = fa-icon.with("\u{e337}") +#let fa-wave = fa-icon.with("\u{e65b}") +#let fa-waveform = fa-icon.with("\u{f8f1}") +#let fa-waveform-lines = fa-icon.with("\u{f8f2}") +#let fa-waveform-path = fa-icon.with("\u{f8f2}") +#let fa-wave-pulse = fa-icon.with("\u{f5f8}") +#let fa-heart-rate = fa-icon.with("\u{f5f8}") +#let fa-wave-sine = fa-icon.with("\u{f899}") +#let fa-wave-square = fa-icon.with("\u{f83e}") +#let fa-waves-sine = fa-icon.with("\u{e65d}") +#let fa-wave-triangle = fa-icon.with("\u{f89a}") +#let fa-waze = fa-icon.with("\u{f83f}") +#let fa-web-awesome = fa-icon.with("\u{e682}") +#let fa-webflow = fa-icon.with("\u{e65c}") +#let fa-webhook = fa-icon.with("\u{e5d5}") +#let fa-weebly = fa-icon.with("\u{f5cc}") +#let fa-weibo = fa-icon.with("\u{f18a}") +#let fa-weight-hanging = fa-icon.with("\u{f5cd}") +#let fa-weight-scale = fa-icon.with("\u{f496}") +#let fa-weight = fa-icon.with("\u{f496}") +#let fa-weixin = fa-icon.with("\u{f1d7}") +#let fa-whale = fa-icon.with("\u{f72c}") +#let fa-whatsapp = fa-icon.with("\u{f232}") +#let fa-wheat = fa-icon.with("\u{f72d}") +#let fa-wheat-awn = fa-icon.with("\u{e2cd}") +#let fa-wheat-alt = fa-icon.with("\u{e2cd}") +#let fa-wheat-awn-circle-exclamation = fa-icon.with("\u{e598}") +#let fa-wheat-awn-slash = fa-icon.with("\u{e338}") +#let fa-wheat-slash = fa-icon.with("\u{e339}") +#let fa-wheelchair = fa-icon.with("\u{f193}") +#let fa-wheelchair-move = fa-icon.with("\u{e2ce}") +#let fa-wheelchair-alt = fa-icon.with("\u{e2ce}") +#let fa-whiskey-glass = fa-icon.with("\u{f7a0}") +#let fa-glass-whiskey = fa-icon.with("\u{f7a0}") +#let fa-whiskey-glass-ice = fa-icon.with("\u{f7a1}") +#let fa-glass-whiskey-rocks = fa-icon.with("\u{f7a1}") +#let fa-whistle = fa-icon.with("\u{f460}") +#let fa-whmcs = fa-icon.with("\u{f40d}") +#let fa-wifi = fa-icon.with("\u{f1eb}") +#let fa-wifi-3 = fa-icon.with("\u{f1eb}") +#let fa-wifi-strong = fa-icon.with("\u{f1eb}") +#let fa-wifi-exclamation = fa-icon.with("\u{e2cf}") +#let fa-wifi-fair = fa-icon.with("\u{f6ab}") +#let fa-wifi-2 = fa-icon.with("\u{f6ab}") +#let fa-wifi-slash = fa-icon.with("\u{f6ac}") +#let fa-wifi-weak = fa-icon.with("\u{f6aa}") +#let fa-wifi-1 = fa-icon.with("\u{f6aa}") +#let fa-wikipedia-w = fa-icon.with("\u{f266}") +#let fa-wind = fa-icon.with("\u{f72e}") +#let fa-window = fa-icon.with("\u{f40e}") +#let fa-window-flip = fa-icon.with("\u{f40f}") +#let fa-window-alt = fa-icon.with("\u{f40f}") +#let fa-window-frame = fa-icon.with("\u{e04f}") +#let fa-window-frame-open = fa-icon.with("\u{e050}") +#let fa-window-maximize = fa-icon.with("\u{f2d0}") +#let fa-window-minimize = fa-icon.with("\u{f2d1}") +#let fa-window-restore = fa-icon.with("\u{f2d2}") +#let fa-windows = fa-icon.with("\u{f17a}") +#let fa-windsock = fa-icon.with("\u{f777}") +#let fa-wind-turbine = fa-icon.with("\u{f89b}") +#let fa-wind-warning = fa-icon.with("\u{f776}") +#let fa-wind-circle-exclamation = fa-icon.with("\u{f776}") +#let fa-wine-bottle = fa-icon.with("\u{f72f}") +#let fa-wine-glass = fa-icon.with("\u{f4e3}") +#let fa-wine-glass-crack = fa-icon.with("\u{f4bb}") +#let fa-fragile = fa-icon.with("\u{f4bb}") +#let fa-wine-glass-empty = fa-icon.with("\u{f5ce}") +#let fa-wine-glass-alt = fa-icon.with("\u{f5ce}") +#let fa-wirsindhandwerk = fa-icon.with("\u{e2d0}") +#let fa-wsh = fa-icon.with("\u{e2d0}") +#let fa-wix = fa-icon.with("\u{f5cf}") +#let fa-wizards-of-the-coast = fa-icon.with("\u{f730}") +#let fa-wodu = fa-icon.with("\u{e088}") +#let fa-wolf-pack-battalion = fa-icon.with("\u{f514}") +#let fa-won-sign = fa-icon.with("\u{f159}") +#let fa-krw = fa-icon.with("\u{f159}") +#let fa-won = fa-icon.with("\u{f159}") +#let fa-wordpress = fa-icon.with("\u{f19a}") +#let fa-wordpress-simple = fa-icon.with("\u{f411}") +#let fa-worm = fa-icon.with("\u{e599}") +#let fa-wpbeginner = fa-icon.with("\u{f297}") +#let fa-wpexplorer = fa-icon.with("\u{f2de}") +#let fa-wpforms = fa-icon.with("\u{f298}") +#let fa-wpressr = fa-icon.with("\u{f3e4}") +#let fa-rendact = fa-icon.with("\u{f3e4}") +#let fa-wreath = fa-icon.with("\u{f7e2}") +#let fa-wreath-laurel = fa-icon.with("\u{e5d2}") +#let fa-wrench = fa-icon.with("\u{f0ad}") +#let fa-wrench-simple = fa-icon.with("\u{e2d1}") +#let fa-x = fa-icon.with("\u{58}") +#let fa-xbox = fa-icon.with("\u{f412}") +#let fa-xing = fa-icon.with("\u{f168}") +#let fa-xmark = fa-icon.with("\u{f00d}") +#let fa-close = fa-icon.with("\u{f00d}") +#let fa-multiply = fa-icon.with("\u{f00d}") +#let fa-remove = fa-icon.with("\u{f00d}") +#let fa-times = fa-icon.with("\u{f00d}") +#let fa-xmark-large = fa-icon.with("\u{e59b}") +#let fa-xmarks-lines = fa-icon.with("\u{e59a}") +#let fa-xmark-to-slot = fa-icon.with("\u{f771}") +#let fa-times-to-slot = fa-icon.with("\u{f771}") +#let fa-vote-nay = fa-icon.with("\u{f771}") +#let fa-x-ray = fa-icon.with("\u{f497}") +#let fa-x-twitter = fa-icon.with("\u{e61b}") +#let fa-y = fa-icon.with("\u{59}") +#let fa-yahoo = fa-icon.with("\u{f19e}") +#let fa-yammer = fa-icon.with("\u{f840}") +#let fa-yandex = fa-icon.with("\u{f413}") +#let fa-yandex-international = fa-icon.with("\u{f414}") +#let fa-yarn = fa-icon.with("\u{f7e3}") +#let fa-y-combinator = fa-icon.with("\u{f23b}") +#let fa-yelp = fa-icon.with("\u{f1e9}") +#let fa-yen-sign = fa-icon.with("\u{f157}") +#let fa-cny = fa-icon.with("\u{f157}") +#let fa-jpy = fa-icon.with("\u{f157}") +#let fa-rmb = fa-icon.with("\u{f157}") +#let fa-yen = fa-icon.with("\u{f157}") +#let fa-yin-yang = fa-icon.with("\u{f6ad}") +#let fa-yoast = fa-icon.with("\u{f2b1}") +#let fa-youtube = fa-icon.with("\u{f167}") +#let fa-z = fa-icon.with("\u{5a}") +#let fa-zhihu = fa-icon.with("\u{f63f}") diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-impl.typ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-impl.typ new file mode 100644 index 00000000000..c4ecba0b0ce --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib-impl.typ @@ -0,0 +1,61 @@ +// Currently, we assume there is no need to enable Pro sets for only a part of the document, +// so no method is provided to disable Pro sets +#let _fa_use_pro = state("_fa_use_pro", false) +#let fa-use-pro() = { + _fa_use_pro.update(true) +} + +/// Render a Font Awesome icon by its name or unicode +/// +/// Parameters: +/// - `name`: The name of the icon +/// - This can be name in string or unicode of the icon +/// - `solid`: Whether to use the solid version of the icon +/// - `fa-icon-map`: The map of icon names to unicode +/// - Default is a map generated from FontAwesome metadata +/// - *Not recommended* You can provide your own map to override it +/// - `..args`: Additional arguments to pass to the `text` function +/// +/// Returns: The rendered icon as a `text` element +#let fa-icon( + name, + solid: false, + fa-icon-map: (:), + ..args, +) = ( + context { + let default_fonts = ( + "Font Awesome 6 Free" + if solid { + " Solid" + }, + "Font Awesome 6 Brands", + ) + + if _fa_use_pro.get() { + // TODO: Help needed to test following fonts + default_fonts += ( + "Font Awesome 6 Pro" + if solid { + " Solid" + }, + "Font Awesome 6 Duotone", + "Font Awesome 6 Sharp" + if solid { + " Solid" + }, + "Font Awesome 6 Sharp Duotone" + if solid { + " Solid" + }, + ) + } + + text( + font: default_fonts, // If you see warning here, please check whether the FA font is installed + + // TODO: We might need to check whether this is needed + weight: if solid { 900 } else { 400 }, + // If the name is in the map, use the unicode from the map + // If not, pass the name and let the ligature feature handle it + fa-icon-map.at(name, default: name), + ..args, + ) + } +) diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib.typ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib.typ new file mode 100644 index 00000000000..4ceec243d21 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/lib.typ @@ -0,0 +1,81 @@ +//! typst-fontawesome +//! +//! https://github.com/duskmoon314/typst-fontawesome + +// Implementation of `fa-icon` +#import "lib-impl.typ": fa-icon, fa-use-pro + +// Generated icons +#import "lib-gen.typ": * + +// Re-export the `fa-icon` function +// The following doc comment is needed for lsp to show the documentation + +/// Render a Font Awesome icon by its name or unicode +/// +/// Parameters: +/// - `name`: The name of the icon +/// - This can be name in string or unicode of the icon +/// - `solid`: Whether to use the solid version of the icon +/// - `fa-icon-map`: The map of icon names to unicode +/// - Default is a map generated from FontAwesome metadata +/// - *Not recommended* You can provide your own map to override it +/// - `..args`: Additional arguments to pass to the `text` function +/// +/// Returns: The rendered icon as a `text` element +#let fa-icon = fa-icon.with(fa-icon-map: fa-icon-map) + +/// Render multiple Font Awesome icons together +/// +/// Parameters: +/// - `icons`: The list of icons to render +/// - Multiple types are supported: +/// - `str`: The name of the icon, e.g. `"square"` +/// - `array`: A tuple of the name and additional arguments, e.g. `("chess-queen", (solid: true, fill: white))` +/// - `arguments`: Arguments to pass to the `fa-icon` function, e.g. `arguments("chess-queen", solid: true, fill: white)` +/// - `content`: Any other content you want to render, e.g. `fa-chess-queen(solid: true, fill: white)` +/// - `box-args`: Additional arguments to pass to the `box` function +/// - `grid-args`: Additional arguments to pass to the `grid` function +/// - `fa-icon-args`: Additional arguments to pass to all `fa-icon` function +#let fa-stack( + box-args: (:), + grid-args: (:), + fa-icon-args: (:), + ..icons, +) = ( + context { + let icons = icons.pos().map(icon => { + if type(icon) == str { + fa-icon(icon, ..fa-icon-args) + } else if type(icon) == array { + let (name, args) = icon + fa-icon(name, ..fa-icon-args, ..args) + } else if type(icon) == arguments { + fa-icon(..icon.pos(), ..fa-icon-args, ..icon.named()) + } else if type(icon) == content { + icon + } else { + panic("Unsupported content. Please submit an issue for your use case.") + } + }) + + // Get the maximum width of the icons + let max-width = calc.max( + ..icons.map(icon => { + measure(icon).width + }), + ) + + box( + ..box-args, + grid( + align: center + horizon, + columns: icons.len() * (max-width,), + column-gutter: -max-width, + rows: 1, + ..grid-args, + ..icons + ), + ) + } +) \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/typst.toml b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/typst.toml new file mode 100644 index 00000000000..0917fae2a8e --- /dev/null +++ b/src/resources/formats/typst/packages/preview/fontawesome/0.5.0/typst.toml @@ -0,0 +1,8 @@ +[package] +name = "fontawesome" +version = "0.5.0" +entrypoint = "lib.typ" +authors = ["duskmoon (Campbell He) "] +license = "MIT" +description = "A Typst library for Font Awesome icons through the desktop fonts." +repository = "https://github.com/duskmoon314/typst-fontawesome" diff --git a/src/resources/formats/typst/packages/preview/octique/0.1.1/LICENSE b/src/resources/formats/typst/packages/preview/octique/0.1.1/LICENSE new file mode 100644 index 00000000000..f3d1311e2ea --- /dev/null +++ b/src/resources/formats/typst/packages/preview/octique/0.1.1/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 0x6b + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/resources/formats/typst/packages/preview/octique/0.1.1/README.md b/src/resources/formats/typst/packages/preview/octique/0.1.1/README.md new file mode 100644 index 00000000000..2b21567dcb0 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/octique/0.1.1/README.md @@ -0,0 +1,356 @@ +# typst-octique + +GitHub [Octicons](https://primer.style/foundations/icons/) for Typst. + +## Installation + +```typst +#import "@preview/octique:0.1.0": * +``` + +## Usage + +```typst +// Returns an image for the given name. +octique(name, color: rgb("#000000"), width: 1em, height: 1em) + +// Returns a boxed image for the given name. +octique-inline(name, color: rgb("#000000"), width: 1em, height: 1em, baseline: 25%) + +// Returns an SVG text for the given name. +octique-svg(name) +``` + +## List of Available Icons + +See also [`sample/sample.pdf`](sample/sample.pdf). + +| Code | Icon | +| ---- | :--: | +|`#octique("accessibility-inset")`| ![accessibility-inset](https://github.com/0x6b/typst-octique/wiki/assets/accessibility-inset.svg) | +|`#octique("accessibility")`| ![accessibility](https://github.com/0x6b/typst-octique/wiki/assets/accessibility.svg) | +|`#octique("alert-fill")`| ![alert-fill](https://github.com/0x6b/typst-octique/wiki/assets/alert-fill.svg) | +|`#octique("alert")`| ![alert](https://github.com/0x6b/typst-octique/wiki/assets/alert.svg) | +|`#octique("apps")`| ![apps](https://github.com/0x6b/typst-octique/wiki/assets/apps.svg) | +|`#octique("archive")`| ![archive](https://github.com/0x6b/typst-octique/wiki/assets/archive.svg) | +|`#octique("arrow-both")`| ![arrow-both](https://github.com/0x6b/typst-octique/wiki/assets/arrow-both.svg) | +|`#octique("arrow-down-left")`| ![arrow-down-left](https://github.com/0x6b/typst-octique/wiki/assets/arrow-down-left.svg) | +|`#octique("arrow-down-right")`| ![arrow-down-right](https://github.com/0x6b/typst-octique/wiki/assets/arrow-down-right.svg) | +|`#octique("arrow-down")`| ![arrow-down](https://github.com/0x6b/typst-octique/wiki/assets/arrow-down.svg) | +|`#octique("arrow-left")`| ![arrow-left](https://github.com/0x6b/typst-octique/wiki/assets/arrow-left.svg) | +|`#octique("arrow-right")`| ![arrow-right](https://github.com/0x6b/typst-octique/wiki/assets/arrow-right.svg) | +|`#octique("arrow-switch")`| ![arrow-switch](https://github.com/0x6b/typst-octique/wiki/assets/arrow-switch.svg) | +|`#octique("arrow-up-left")`| ![arrow-up-left](https://github.com/0x6b/typst-octique/wiki/assets/arrow-up-left.svg) | +|`#octique("arrow-up-right")`| ![arrow-up-right](https://github.com/0x6b/typst-octique/wiki/assets/arrow-up-right.svg) | +|`#octique("arrow-up")`| ![arrow-up](https://github.com/0x6b/typst-octique/wiki/assets/arrow-up.svg) | +|`#octique("beaker")`| ![beaker](https://github.com/0x6b/typst-octique/wiki/assets/beaker.svg) | +|`#octique("bell-fill")`| ![bell-fill](https://github.com/0x6b/typst-octique/wiki/assets/bell-fill.svg) | +|`#octique("bell-slash")`| ![bell-slash](https://github.com/0x6b/typst-octique/wiki/assets/bell-slash.svg) | +|`#octique("bell")`| ![bell](https://github.com/0x6b/typst-octique/wiki/assets/bell.svg) | +|`#octique("blocked")`| ![blocked](https://github.com/0x6b/typst-octique/wiki/assets/blocked.svg) | +|`#octique("bold")`| ![bold](https://github.com/0x6b/typst-octique/wiki/assets/bold.svg) | +|`#octique("book")`| ![book](https://github.com/0x6b/typst-octique/wiki/assets/book.svg) | +|`#octique("bookmark-slash")`| ![bookmark-slash](https://github.com/0x6b/typst-octique/wiki/assets/bookmark-slash.svg) | +|`#octique("bookmark")`| ![bookmark](https://github.com/0x6b/typst-octique/wiki/assets/bookmark.svg) | +|`#octique("briefcase")`| ![briefcase](https://github.com/0x6b/typst-octique/wiki/assets/briefcase.svg) | +|`#octique("broadcast")`| ![broadcast](https://github.com/0x6b/typst-octique/wiki/assets/broadcast.svg) | +|`#octique("browser")`| ![browser](https://github.com/0x6b/typst-octique/wiki/assets/browser.svg) | +|`#octique("bug")`| ![bug](https://github.com/0x6b/typst-octique/wiki/assets/bug.svg) | +|`#octique("cache")`| ![cache](https://github.com/0x6b/typst-octique/wiki/assets/cache.svg) | +|`#octique("calendar")`| ![calendar](https://github.com/0x6b/typst-octique/wiki/assets/calendar.svg) | +|`#octique("check-circle-fill")`| ![check-circle-fill](https://github.com/0x6b/typst-octique/wiki/assets/check-circle-fill.svg) | +|`#octique("check-circle")`| ![check-circle](https://github.com/0x6b/typst-octique/wiki/assets/check-circle.svg) | +|`#octique("check")`| ![check](https://github.com/0x6b/typst-octique/wiki/assets/check.svg) | +|`#octique("checkbox")`| ![checkbox](https://github.com/0x6b/typst-octique/wiki/assets/checkbox.svg) | +|`#octique("checklist")`| ![checklist](https://github.com/0x6b/typst-octique/wiki/assets/checklist.svg) | +|`#octique("chevron-down")`| ![chevron-down](https://github.com/0x6b/typst-octique/wiki/assets/chevron-down.svg) | +|`#octique("chevron-left")`| ![chevron-left](https://github.com/0x6b/typst-octique/wiki/assets/chevron-left.svg) | +|`#octique("chevron-right")`| ![chevron-right](https://github.com/0x6b/typst-octique/wiki/assets/chevron-right.svg) | +|`#octique("chevron-up")`| ![chevron-up](https://github.com/0x6b/typst-octique/wiki/assets/chevron-up.svg) | +|`#octique("circle-slash")`| ![circle-slash](https://github.com/0x6b/typst-octique/wiki/assets/circle-slash.svg) | +|`#octique("circle")`| ![circle](https://github.com/0x6b/typst-octique/wiki/assets/circle.svg) | +|`#octique("clock-fill")`| ![clock-fill](https://github.com/0x6b/typst-octique/wiki/assets/clock-fill.svg) | +|`#octique("clock")`| ![clock](https://github.com/0x6b/typst-octique/wiki/assets/clock.svg) | +|`#octique("cloud-offline")`| ![cloud-offline](https://github.com/0x6b/typst-octique/wiki/assets/cloud-offline.svg) | +|`#octique("cloud")`| ![cloud](https://github.com/0x6b/typst-octique/wiki/assets/cloud.svg) | +|`#octique("code-of-conduct")`| ![code-of-conduct](https://github.com/0x6b/typst-octique/wiki/assets/code-of-conduct.svg) | +|`#octique("code-review")`| ![code-review](https://github.com/0x6b/typst-octique/wiki/assets/code-review.svg) | +|`#octique("code")`| ![code](https://github.com/0x6b/typst-octique/wiki/assets/code.svg) | +|`#octique("code-square")`| ![code-square](https://github.com/0x6b/typst-octique/wiki/assets/code-square.svg) | +|`#octique("codescan-checkmark")`| ![codescan-checkmark](https://github.com/0x6b/typst-octique/wiki/assets/codescan-checkmark.svg) | +|`#octique("codescan")`| ![codescan](https://github.com/0x6b/typst-octique/wiki/assets/codescan.svg) | +|`#octique("codespaces")`| ![codespaces](https://github.com/0x6b/typst-octique/wiki/assets/codespaces.svg) | +|`#octique("columns")`| ![columns](https://github.com/0x6b/typst-octique/wiki/assets/columns.svg) | +|`#octique("command-palette")`| ![command-palette](https://github.com/0x6b/typst-octique/wiki/assets/command-palette.svg) | +|`#octique("comment-discussion")`| ![comment-discussion](https://github.com/0x6b/typst-octique/wiki/assets/comment-discussion.svg) | +|`#octique("comment")`| ![comment](https://github.com/0x6b/typst-octique/wiki/assets/comment.svg) | +|`#octique("container")`| ![container](https://github.com/0x6b/typst-octique/wiki/assets/container.svg) | +|`#octique("copilot-error")`| ![copilot-error](https://github.com/0x6b/typst-octique/wiki/assets/copilot-error.svg) | +|`#octique("copilot")`| ![copilot](https://github.com/0x6b/typst-octique/wiki/assets/copilot.svg) | +|`#octique("copilot-warning")`| ![copilot-warning](https://github.com/0x6b/typst-octique/wiki/assets/copilot-warning.svg) | +|`#octique("copy")`| ![copy](https://github.com/0x6b/typst-octique/wiki/assets/copy.svg) | +|`#octique("cpu")`| ![cpu](https://github.com/0x6b/typst-octique/wiki/assets/cpu.svg) | +|`#octique("credit-card")`| ![credit-card](https://github.com/0x6b/typst-octique/wiki/assets/credit-card.svg) | +|`#octique("cross-reference")`| ![cross-reference](https://github.com/0x6b/typst-octique/wiki/assets/cross-reference.svg) | +|`#octique("dash")`| ![dash](https://github.com/0x6b/typst-octique/wiki/assets/dash.svg) | +|`#octique("database")`| ![database](https://github.com/0x6b/typst-octique/wiki/assets/database.svg) | +|`#octique("dependabot")`| ![dependabot](https://github.com/0x6b/typst-octique/wiki/assets/dependabot.svg) | +|`#octique("desktop-download")`| ![desktop-download](https://github.com/0x6b/typst-octique/wiki/assets/desktop-download.svg) | +|`#octique("device-camera")`| ![device-camera](https://github.com/0x6b/typst-octique/wiki/assets/device-camera.svg) | +|`#octique("device-camera-video")`| ![device-camera-video](https://github.com/0x6b/typst-octique/wiki/assets/device-camera-video.svg) | +|`#octique("device-desktop")`| ![device-desktop](https://github.com/0x6b/typst-octique/wiki/assets/device-desktop.svg) | +|`#octique("device-mobile")`| ![device-mobile](https://github.com/0x6b/typst-octique/wiki/assets/device-mobile.svg) | +|`#octique("devices")`| ![devices](https://github.com/0x6b/typst-octique/wiki/assets/devices.svg) | +|`#octique("diamond")`| ![diamond](https://github.com/0x6b/typst-octique/wiki/assets/diamond.svg) | +|`#octique("diff-added")`| ![diff-added](https://github.com/0x6b/typst-octique/wiki/assets/diff-added.svg) | +|`#octique("diff-ignored")`| ![diff-ignored](https://github.com/0x6b/typst-octique/wiki/assets/diff-ignored.svg) | +|`#octique("diff-modified")`| ![diff-modified](https://github.com/0x6b/typst-octique/wiki/assets/diff-modified.svg) | +|`#octique("diff-removed")`| ![diff-removed](https://github.com/0x6b/typst-octique/wiki/assets/diff-removed.svg) | +|`#octique("diff-renamed")`| ![diff-renamed](https://github.com/0x6b/typst-octique/wiki/assets/diff-renamed.svg) | +|`#octique("diff")`| ![diff](https://github.com/0x6b/typst-octique/wiki/assets/diff.svg) | +|`#octique("discussion-closed")`| ![discussion-closed](https://github.com/0x6b/typst-octique/wiki/assets/discussion-closed.svg) | +|`#octique("discussion-duplicate")`| ![discussion-duplicate](https://github.com/0x6b/typst-octique/wiki/assets/discussion-duplicate.svg) | +|`#octique("discussion-outdated")`| ![discussion-outdated](https://github.com/0x6b/typst-octique/wiki/assets/discussion-outdated.svg) | +|`#octique("dot-fill")`| ![dot-fill](https://github.com/0x6b/typst-octique/wiki/assets/dot-fill.svg) | +|`#octique("dot")`| ![dot](https://github.com/0x6b/typst-octique/wiki/assets/dot.svg) | +|`#octique("download")`| ![download](https://github.com/0x6b/typst-octique/wiki/assets/download.svg) | +|`#octique("duplicate")`| ![duplicate](https://github.com/0x6b/typst-octique/wiki/assets/duplicate.svg) | +|`#octique("ellipsis")`| ![ellipsis](https://github.com/0x6b/typst-octique/wiki/assets/ellipsis.svg) | +|`#octique("eye-closed")`| ![eye-closed](https://github.com/0x6b/typst-octique/wiki/assets/eye-closed.svg) | +|`#octique("eye")`| ![eye](https://github.com/0x6b/typst-octique/wiki/assets/eye.svg) | +|`#octique("feed-discussion")`| ![feed-discussion](https://github.com/0x6b/typst-octique/wiki/assets/feed-discussion.svg) | +|`#octique("feed-forked")`| ![feed-forked](https://github.com/0x6b/typst-octique/wiki/assets/feed-forked.svg) | +|`#octique("feed-heart")`| ![feed-heart](https://github.com/0x6b/typst-octique/wiki/assets/feed-heart.svg) | +|`#octique("feed-issue-closed")`| ![feed-issue-closed](https://github.com/0x6b/typst-octique/wiki/assets/feed-issue-closed.svg) | +|`#octique("feed-issue-draft")`| ![feed-issue-draft](https://github.com/0x6b/typst-octique/wiki/assets/feed-issue-draft.svg) | +|`#octique("feed-issue-open")`| ![feed-issue-open](https://github.com/0x6b/typst-octique/wiki/assets/feed-issue-open.svg) | +|`#octique("feed-issue-reopen")`| ![feed-issue-reopen](https://github.com/0x6b/typst-octique/wiki/assets/feed-issue-reopen.svg) | +|`#octique("feed-merged")`| ![feed-merged](https://github.com/0x6b/typst-octique/wiki/assets/feed-merged.svg) | +|`#octique("feed-person")`| ![feed-person](https://github.com/0x6b/typst-octique/wiki/assets/feed-person.svg) | +|`#octique("feed-plus")`| ![feed-plus](https://github.com/0x6b/typst-octique/wiki/assets/feed-plus.svg) | +|`#octique("feed-public")`| ![feed-public](https://github.com/0x6b/typst-octique/wiki/assets/feed-public.svg) | +|`#octique("feed-pull-request-closed")`| ![feed-pull-request-closed](https://github.com/0x6b/typst-octique/wiki/assets/feed-pull-request-closed.svg) | +|`#octique("feed-pull-request-draft")`| ![feed-pull-request-draft](https://github.com/0x6b/typst-octique/wiki/assets/feed-pull-request-draft.svg) | +|`#octique("feed-pull-request-open")`| ![feed-pull-request-open](https://github.com/0x6b/typst-octique/wiki/assets/feed-pull-request-open.svg) | +|`#octique("feed-repo")`| ![feed-repo](https://github.com/0x6b/typst-octique/wiki/assets/feed-repo.svg) | +|`#octique("feed-rocket")`| ![feed-rocket](https://github.com/0x6b/typst-octique/wiki/assets/feed-rocket.svg) | +|`#octique("feed-star")`| ![feed-star](https://github.com/0x6b/typst-octique/wiki/assets/feed-star.svg) | +|`#octique("feed-tag")`| ![feed-tag](https://github.com/0x6b/typst-octique/wiki/assets/feed-tag.svg) | +|`#octique("feed-trophy")`| ![feed-trophy](https://github.com/0x6b/typst-octique/wiki/assets/feed-trophy.svg) | +|`#octique("file-added")`| ![file-added](https://github.com/0x6b/typst-octique/wiki/assets/file-added.svg) | +|`#octique("file-badge")`| ![file-badge](https://github.com/0x6b/typst-octique/wiki/assets/file-badge.svg) | +|`#octique("file-binary")`| ![file-binary](https://github.com/0x6b/typst-octique/wiki/assets/file-binary.svg) | +|`#octique("file-code")`| ![file-code](https://github.com/0x6b/typst-octique/wiki/assets/file-code.svg) | +|`#octique("file-diff")`| ![file-diff](https://github.com/0x6b/typst-octique/wiki/assets/file-diff.svg) | +|`#octique("file-directory-fill")`| ![file-directory-fill](https://github.com/0x6b/typst-octique/wiki/assets/file-directory-fill.svg) | +|`#octique("file-directory-open-fill")`| ![file-directory-open-fill](https://github.com/0x6b/typst-octique/wiki/assets/file-directory-open-fill.svg) | +|`#octique("file-directory")`| ![file-directory](https://github.com/0x6b/typst-octique/wiki/assets/file-directory.svg) | +|`#octique("file-directory-symlink")`| ![file-directory-symlink](https://github.com/0x6b/typst-octique/wiki/assets/file-directory-symlink.svg) | +|`#octique("file-moved")`| ![file-moved](https://github.com/0x6b/typst-octique/wiki/assets/file-moved.svg) | +|`#octique("file-removed")`| ![file-removed](https://github.com/0x6b/typst-octique/wiki/assets/file-removed.svg) | +|`#octique("file")`| ![file](https://github.com/0x6b/typst-octique/wiki/assets/file.svg) | +|`#octique("file-submodule")`| ![file-submodule](https://github.com/0x6b/typst-octique/wiki/assets/file-submodule.svg) | +|`#octique("file-symlink-file")`| ![file-symlink-file](https://github.com/0x6b/typst-octique/wiki/assets/file-symlink-file.svg) | +|`#octique("file-zip")`| ![file-zip](https://github.com/0x6b/typst-octique/wiki/assets/file-zip.svg) | +|`#octique("filter")`| ![filter](https://github.com/0x6b/typst-octique/wiki/assets/filter.svg) | +|`#octique("fiscal-host")`| ![fiscal-host](https://github.com/0x6b/typst-octique/wiki/assets/fiscal-host.svg) | +|`#octique("flame")`| ![flame](https://github.com/0x6b/typst-octique/wiki/assets/flame.svg) | +|`#octique("fold-down")`| ![fold-down](https://github.com/0x6b/typst-octique/wiki/assets/fold-down.svg) | +|`#octique("fold")`| ![fold](https://github.com/0x6b/typst-octique/wiki/assets/fold.svg) | +|`#octique("fold-up")`| ![fold-up](https://github.com/0x6b/typst-octique/wiki/assets/fold-up.svg) | +|`#octique("gear")`| ![gear](https://github.com/0x6b/typst-octique/wiki/assets/gear.svg) | +|`#octique("gift")`| ![gift](https://github.com/0x6b/typst-octique/wiki/assets/gift.svg) | +|`#octique("git-branch")`| ![git-branch](https://github.com/0x6b/typst-octique/wiki/assets/git-branch.svg) | +|`#octique("git-commit")`| ![git-commit](https://github.com/0x6b/typst-octique/wiki/assets/git-commit.svg) | +|`#octique("git-compare")`| ![git-compare](https://github.com/0x6b/typst-octique/wiki/assets/git-compare.svg) | +|`#octique("git-merge-queue")`| ![git-merge-queue](https://github.com/0x6b/typst-octique/wiki/assets/git-merge-queue.svg) | +|`#octique("git-merge")`| ![git-merge](https://github.com/0x6b/typst-octique/wiki/assets/git-merge.svg) | +|`#octique("git-pull-request-closed")`| ![git-pull-request-closed](https://github.com/0x6b/typst-octique/wiki/assets/git-pull-request-closed.svg) | +|`#octique("git-pull-request-draft")`| ![git-pull-request-draft](https://github.com/0x6b/typst-octique/wiki/assets/git-pull-request-draft.svg) | +|`#octique("git-pull-request")`| ![git-pull-request](https://github.com/0x6b/typst-octique/wiki/assets/git-pull-request.svg) | +|`#octique("globe")`| ![globe](https://github.com/0x6b/typst-octique/wiki/assets/globe.svg) | +|`#octique("goal")`| ![goal](https://github.com/0x6b/typst-octique/wiki/assets/goal.svg) | +|`#octique("grabber")`| ![grabber](https://github.com/0x6b/typst-octique/wiki/assets/grabber.svg) | +|`#octique("graph")`| ![graph](https://github.com/0x6b/typst-octique/wiki/assets/graph.svg) | +|`#octique("hash")`| ![hash](https://github.com/0x6b/typst-octique/wiki/assets/hash.svg) | +|`#octique("heading")`| ![heading](https://github.com/0x6b/typst-octique/wiki/assets/heading.svg) | +|`#octique("heart-fill")`| ![heart-fill](https://github.com/0x6b/typst-octique/wiki/assets/heart-fill.svg) | +|`#octique("heart")`| ![heart](https://github.com/0x6b/typst-octique/wiki/assets/heart.svg) | +|`#octique("history")`| ![history](https://github.com/0x6b/typst-octique/wiki/assets/history.svg) | +|`#octique("home")`| ![home](https://github.com/0x6b/typst-octique/wiki/assets/home.svg) | +|`#octique("horizontal-rule")`| ![horizontal-rule](https://github.com/0x6b/typst-octique/wiki/assets/horizontal-rule.svg) | +|`#octique("hourglass")`| ![hourglass](https://github.com/0x6b/typst-octique/wiki/assets/hourglass.svg) | +|`#octique("hubot")`| ![hubot](https://github.com/0x6b/typst-octique/wiki/assets/hubot.svg) | +|`#octique("id-badge")`| ![id-badge](https://github.com/0x6b/typst-octique/wiki/assets/id-badge.svg) | +|`#octique("image")`| ![image](https://github.com/0x6b/typst-octique/wiki/assets/image.svg) | +|`#octique("inbox")`| ![inbox](https://github.com/0x6b/typst-octique/wiki/assets/inbox.svg) | +|`#octique("infinity")`| ![infinity](https://github.com/0x6b/typst-octique/wiki/assets/infinity.svg) | +|`#octique("info")`| ![info](https://github.com/0x6b/typst-octique/wiki/assets/info.svg) | +|`#octique("issue-closed")`| ![issue-closed](https://github.com/0x6b/typst-octique/wiki/assets/issue-closed.svg) | +|`#octique("issue-draft")`| ![issue-draft](https://github.com/0x6b/typst-octique/wiki/assets/issue-draft.svg) | +|`#octique("issue-opened")`| ![issue-opened](https://github.com/0x6b/typst-octique/wiki/assets/issue-opened.svg) | +|`#octique("issue-reopened")`| ![issue-reopened](https://github.com/0x6b/typst-octique/wiki/assets/issue-reopened.svg) | +|`#octique("issue-tracked-by")`| ![issue-tracked-by](https://github.com/0x6b/typst-octique/wiki/assets/issue-tracked-by.svg) | +|`#octique("issue-tracks")`| ![issue-tracks](https://github.com/0x6b/typst-octique/wiki/assets/issue-tracks.svg) | +|`#octique("italic")`| ![italic](https://github.com/0x6b/typst-octique/wiki/assets/italic.svg) | +|`#octique("iterations")`| ![iterations](https://github.com/0x6b/typst-octique/wiki/assets/iterations.svg) | +|`#octique("kebab-horizontal")`| ![kebab-horizontal](https://github.com/0x6b/typst-octique/wiki/assets/kebab-horizontal.svg) | +|`#octique("key-asterisk")`| ![key-asterisk](https://github.com/0x6b/typst-octique/wiki/assets/key-asterisk.svg) | +|`#octique("key")`| ![key](https://github.com/0x6b/typst-octique/wiki/assets/key.svg) | +|`#octique("law")`| ![law](https://github.com/0x6b/typst-octique/wiki/assets/law.svg) | +|`#octique("light-bulb")`| ![light-bulb](https://github.com/0x6b/typst-octique/wiki/assets/light-bulb.svg) | +|`#octique("link-external")`| ![link-external](https://github.com/0x6b/typst-octique/wiki/assets/link-external.svg) | +|`#octique("link")`| ![link](https://github.com/0x6b/typst-octique/wiki/assets/link.svg) | +|`#octique("list-ordered")`| ![list-ordered](https://github.com/0x6b/typst-octique/wiki/assets/list-ordered.svg) | +|`#octique("list-unordered")`| ![list-unordered](https://github.com/0x6b/typst-octique/wiki/assets/list-unordered.svg) | +|`#octique("location")`| ![location](https://github.com/0x6b/typst-octique/wiki/assets/location.svg) | +|`#octique("lock")`| ![lock](https://github.com/0x6b/typst-octique/wiki/assets/lock.svg) | +|`#octique("log")`| ![log](https://github.com/0x6b/typst-octique/wiki/assets/log.svg) | +|`#octique("logo-gist")`| ![logo-gist](https://github.com/0x6b/typst-octique/wiki/assets/logo-gist.svg) | +|`#octique("logo-github")`| ![logo-github](https://github.com/0x6b/typst-octique/wiki/assets/logo-github.svg) | +|`#octique("mail")`| ![mail](https://github.com/0x6b/typst-octique/wiki/assets/mail.svg) | +|`#octique("mark-github")`| ![mark-github](https://github.com/0x6b/typst-octique/wiki/assets/mark-github.svg) | +|`#octique("markdown")`| ![markdown](https://github.com/0x6b/typst-octique/wiki/assets/markdown.svg) | +|`#octique("megaphone")`| ![megaphone](https://github.com/0x6b/typst-octique/wiki/assets/megaphone.svg) | +|`#octique("mention")`| ![mention](https://github.com/0x6b/typst-octique/wiki/assets/mention.svg) | +|`#octique("meter")`| ![meter](https://github.com/0x6b/typst-octique/wiki/assets/meter.svg) | +|`#octique("milestone")`| ![milestone](https://github.com/0x6b/typst-octique/wiki/assets/milestone.svg) | +|`#octique("mirror")`| ![mirror](https://github.com/0x6b/typst-octique/wiki/assets/mirror.svg) | +|`#octique("moon")`| ![moon](https://github.com/0x6b/typst-octique/wiki/assets/moon.svg) | +|`#octique("mortar-board")`| ![mortar-board](https://github.com/0x6b/typst-octique/wiki/assets/mortar-board.svg) | +|`#octique("move-to-bottom")`| ![move-to-bottom](https://github.com/0x6b/typst-octique/wiki/assets/move-to-bottom.svg) | +|`#octique("move-to-end")`| ![move-to-end](https://github.com/0x6b/typst-octique/wiki/assets/move-to-end.svg) | +|`#octique("move-to-start")`| ![move-to-start](https://github.com/0x6b/typst-octique/wiki/assets/move-to-start.svg) | +|`#octique("move-to-top")`| ![move-to-top](https://github.com/0x6b/typst-octique/wiki/assets/move-to-top.svg) | +|`#octique("multi-select")`| ![multi-select](https://github.com/0x6b/typst-octique/wiki/assets/multi-select.svg) | +|`#octique("mute")`| ![mute](https://github.com/0x6b/typst-octique/wiki/assets/mute.svg) | +|`#octique("no-entry")`| ![no-entry](https://github.com/0x6b/typst-octique/wiki/assets/no-entry.svg) | +|`#octique("north-star")`| ![north-star](https://github.com/0x6b/typst-octique/wiki/assets/north-star.svg) | +|`#octique("note")`| ![note](https://github.com/0x6b/typst-octique/wiki/assets/note.svg) | +|`#octique("number")`| ![number](https://github.com/0x6b/typst-octique/wiki/assets/number.svg) | +|`#octique("organization")`| ![organization](https://github.com/0x6b/typst-octique/wiki/assets/organization.svg) | +|`#octique("package-dependencies")`| ![package-dependencies](https://github.com/0x6b/typst-octique/wiki/assets/package-dependencies.svg) | +|`#octique("package-dependents")`| ![package-dependents](https://github.com/0x6b/typst-octique/wiki/assets/package-dependents.svg) | +|`#octique("package")`| ![package](https://github.com/0x6b/typst-octique/wiki/assets/package.svg) | +|`#octique("paintbrush")`| ![paintbrush](https://github.com/0x6b/typst-octique/wiki/assets/paintbrush.svg) | +|`#octique("paper-airplane")`| ![paper-airplane](https://github.com/0x6b/typst-octique/wiki/assets/paper-airplane.svg) | +|`#octique("paperclip")`| ![paperclip](https://github.com/0x6b/typst-octique/wiki/assets/paperclip.svg) | +|`#octique("passkey-fill")`| ![passkey-fill](https://github.com/0x6b/typst-octique/wiki/assets/passkey-fill.svg) | +|`#octique("paste")`| ![paste](https://github.com/0x6b/typst-octique/wiki/assets/paste.svg) | +|`#octique("pencil")`| ![pencil](https://github.com/0x6b/typst-octique/wiki/assets/pencil.svg) | +|`#octique("people")`| ![people](https://github.com/0x6b/typst-octique/wiki/assets/people.svg) | +|`#octique("person-add")`| ![person-add](https://github.com/0x6b/typst-octique/wiki/assets/person-add.svg) | +|`#octique("person-fill")`| ![person-fill](https://github.com/0x6b/typst-octique/wiki/assets/person-fill.svg) | +|`#octique("person")`| ![person](https://github.com/0x6b/typst-octique/wiki/assets/person.svg) | +|`#octique("pin-slash")`| ![pin-slash](https://github.com/0x6b/typst-octique/wiki/assets/pin-slash.svg) | +|`#octique("pin")`| ![pin](https://github.com/0x6b/typst-octique/wiki/assets/pin.svg) | +|`#octique("pivot-column")`| ![pivot-column](https://github.com/0x6b/typst-octique/wiki/assets/pivot-column.svg) | +|`#octique("play")`| ![play](https://github.com/0x6b/typst-octique/wiki/assets/play.svg) | +|`#octique("plug")`| ![plug](https://github.com/0x6b/typst-octique/wiki/assets/plug.svg) | +|`#octique("plus-circle")`| ![plus-circle](https://github.com/0x6b/typst-octique/wiki/assets/plus-circle.svg) | +|`#octique("plus")`| ![plus](https://github.com/0x6b/typst-octique/wiki/assets/plus.svg) | +|`#octique("project-roadmap")`| ![project-roadmap](https://github.com/0x6b/typst-octique/wiki/assets/project-roadmap.svg) | +|`#octique("project")`| ![project](https://github.com/0x6b/typst-octique/wiki/assets/project.svg) | +|`#octique("project-symlink")`| ![project-symlink](https://github.com/0x6b/typst-octique/wiki/assets/project-symlink.svg) | +|`#octique("project-template")`| ![project-template](https://github.com/0x6b/typst-octique/wiki/assets/project-template.svg) | +|`#octique("pulse")`| ![pulse](https://github.com/0x6b/typst-octique/wiki/assets/pulse.svg) | +|`#octique("question")`| ![question](https://github.com/0x6b/typst-octique/wiki/assets/question.svg) | +|`#octique("quote")`| ![quote](https://github.com/0x6b/typst-octique/wiki/assets/quote.svg) | +|`#octique("read")`| ![read](https://github.com/0x6b/typst-octique/wiki/assets/read.svg) | +|`#octique("redo")`| ![redo](https://github.com/0x6b/typst-octique/wiki/assets/redo.svg) | +|`#octique("rel-file-path")`| ![rel-file-path](https://github.com/0x6b/typst-octique/wiki/assets/rel-file-path.svg) | +|`#octique("reply")`| ![reply](https://github.com/0x6b/typst-octique/wiki/assets/reply.svg) | +|`#octique("repo-clone")`| ![repo-clone](https://github.com/0x6b/typst-octique/wiki/assets/repo-clone.svg) | +|`#octique("repo-deleted")`| ![repo-deleted](https://github.com/0x6b/typst-octique/wiki/assets/repo-deleted.svg) | +|`#octique("repo-forked")`| ![repo-forked](https://github.com/0x6b/typst-octique/wiki/assets/repo-forked.svg) | +|`#octique("repo-locked")`| ![repo-locked](https://github.com/0x6b/typst-octique/wiki/assets/repo-locked.svg) | +|`#octique("repo-pull")`| ![repo-pull](https://github.com/0x6b/typst-octique/wiki/assets/repo-pull.svg) | +|`#octique("repo-push")`| ![repo-push](https://github.com/0x6b/typst-octique/wiki/assets/repo-push.svg) | +|`#octique("repo")`| ![repo](https://github.com/0x6b/typst-octique/wiki/assets/repo.svg) | +|`#octique("repo-template")`| ![repo-template](https://github.com/0x6b/typst-octique/wiki/assets/repo-template.svg) | +|`#octique("report")`| ![report](https://github.com/0x6b/typst-octique/wiki/assets/report.svg) | +|`#octique("rocket")`| ![rocket](https://github.com/0x6b/typst-octique/wiki/assets/rocket.svg) | +|`#octique("rows")`| ![rows](https://github.com/0x6b/typst-octique/wiki/assets/rows.svg) | +|`#octique("rss")`| ![rss](https://github.com/0x6b/typst-octique/wiki/assets/rss.svg) | +|`#octique("ruby")`| ![ruby](https://github.com/0x6b/typst-octique/wiki/assets/ruby.svg) | +|`#octique("screen-full")`| ![screen-full](https://github.com/0x6b/typst-octique/wiki/assets/screen-full.svg) | +|`#octique("screen-normal")`| ![screen-normal](https://github.com/0x6b/typst-octique/wiki/assets/screen-normal.svg) | +|`#octique("search")`| ![search](https://github.com/0x6b/typst-octique/wiki/assets/search.svg) | +|`#octique("server")`| ![server](https://github.com/0x6b/typst-octique/wiki/assets/server.svg) | +|`#octique("share-android")`| ![share-android](https://github.com/0x6b/typst-octique/wiki/assets/share-android.svg) | +|`#octique("share")`| ![share](https://github.com/0x6b/typst-octique/wiki/assets/share.svg) | +|`#octique("shield-check")`| ![shield-check](https://github.com/0x6b/typst-octique/wiki/assets/shield-check.svg) | +|`#octique("shield-lock")`| ![shield-lock](https://github.com/0x6b/typst-octique/wiki/assets/shield-lock.svg) | +|`#octique("shield-slash")`| ![shield-slash](https://github.com/0x6b/typst-octique/wiki/assets/shield-slash.svg) | +|`#octique("shield")`| ![shield](https://github.com/0x6b/typst-octique/wiki/assets/shield.svg) | +|`#octique("shield-x")`| ![shield-x](https://github.com/0x6b/typst-octique/wiki/assets/shield-x.svg) | +|`#octique("sidebar-collapse")`| ![sidebar-collapse](https://github.com/0x6b/typst-octique/wiki/assets/sidebar-collapse.svg) | +|`#octique("sidebar-expand")`| ![sidebar-expand](https://github.com/0x6b/typst-octique/wiki/assets/sidebar-expand.svg) | +|`#octique("sign-in")`| ![sign-in](https://github.com/0x6b/typst-octique/wiki/assets/sign-in.svg) | +|`#octique("sign-out")`| ![sign-out](https://github.com/0x6b/typst-octique/wiki/assets/sign-out.svg) | +|`#octique("single-select")`| ![single-select](https://github.com/0x6b/typst-octique/wiki/assets/single-select.svg) | +|`#octique("skip-fill")`| ![skip-fill](https://github.com/0x6b/typst-octique/wiki/assets/skip-fill.svg) | +|`#octique("skip")`| ![skip](https://github.com/0x6b/typst-octique/wiki/assets/skip.svg) | +|`#octique("sliders")`| ![sliders](https://github.com/0x6b/typst-octique/wiki/assets/sliders.svg) | +|`#octique("smiley")`| ![smiley](https://github.com/0x6b/typst-octique/wiki/assets/smiley.svg) | +|`#octique("sort-asc")`| ![sort-asc](https://github.com/0x6b/typst-octique/wiki/assets/sort-asc.svg) | +|`#octique("sort-desc")`| ![sort-desc](https://github.com/0x6b/typst-octique/wiki/assets/sort-desc.svg) | +|`#octique("sparkle-fill")`| ![sparkle-fill](https://github.com/0x6b/typst-octique/wiki/assets/sparkle-fill.svg) | +|`#octique("sponsor-tiers")`| ![sponsor-tiers](https://github.com/0x6b/typst-octique/wiki/assets/sponsor-tiers.svg) | +|`#octique("square-fill")`| ![square-fill](https://github.com/0x6b/typst-octique/wiki/assets/square-fill.svg) | +|`#octique("square")`| ![square](https://github.com/0x6b/typst-octique/wiki/assets/square.svg) | +|`#octique("squirrel")`| ![squirrel](https://github.com/0x6b/typst-octique/wiki/assets/squirrel.svg) | +|`#octique("stack")`| ![stack](https://github.com/0x6b/typst-octique/wiki/assets/stack.svg) | +|`#octique("star-fill")`| ![star-fill](https://github.com/0x6b/typst-octique/wiki/assets/star-fill.svg) | +|`#octique("star")`| ![star](https://github.com/0x6b/typst-octique/wiki/assets/star.svg) | +|`#octique("stop")`| ![stop](https://github.com/0x6b/typst-octique/wiki/assets/stop.svg) | +|`#octique("stopwatch")`| ![stopwatch](https://github.com/0x6b/typst-octique/wiki/assets/stopwatch.svg) | +|`#octique("strikethrough")`| ![strikethrough](https://github.com/0x6b/typst-octique/wiki/assets/strikethrough.svg) | +|`#octique("sun")`| ![sun](https://github.com/0x6b/typst-octique/wiki/assets/sun.svg) | +|`#octique("sync")`| ![sync](https://github.com/0x6b/typst-octique/wiki/assets/sync.svg) | +|`#octique("tab-external")`| ![tab-external](https://github.com/0x6b/typst-octique/wiki/assets/tab-external.svg) | +|`#octique("table")`| ![table](https://github.com/0x6b/typst-octique/wiki/assets/table.svg) | +|`#octique("tag")`| ![tag](https://github.com/0x6b/typst-octique/wiki/assets/tag.svg) | +|`#octique("tasklist")`| ![tasklist](https://github.com/0x6b/typst-octique/wiki/assets/tasklist.svg) | +|`#octique("telescope-fill")`| ![telescope-fill](https://github.com/0x6b/typst-octique/wiki/assets/telescope-fill.svg) | +|`#octique("telescope")`| ![telescope](https://github.com/0x6b/typst-octique/wiki/assets/telescope.svg) | +|`#octique("terminal")`| ![terminal](https://github.com/0x6b/typst-octique/wiki/assets/terminal.svg) | +|`#octique("three-bars")`| ![three-bars](https://github.com/0x6b/typst-octique/wiki/assets/three-bars.svg) | +|`#octique("thumbsdown")`| ![thumbsdown](https://github.com/0x6b/typst-octique/wiki/assets/thumbsdown.svg) | +|`#octique("thumbsup")`| ![thumbsup](https://github.com/0x6b/typst-octique/wiki/assets/thumbsup.svg) | +|`#octique("tools")`| ![tools](https://github.com/0x6b/typst-octique/wiki/assets/tools.svg) | +|`#octique("tracked-by-closed-completed")`| ![tracked-by-closed-completed](https://github.com/0x6b/typst-octique/wiki/assets/tracked-by-closed-completed.svg) | +|`#octique("tracked-by-closed-not-planned")`| ![tracked-by-closed-not-planned](https://github.com/0x6b/typst-octique/wiki/assets/tracked-by-closed-not-planned.svg) | +|`#octique("trash")`| ![trash](https://github.com/0x6b/typst-octique/wiki/assets/trash.svg) | +|`#octique("triangle-down")`| ![triangle-down](https://github.com/0x6b/typst-octique/wiki/assets/triangle-down.svg) | +|`#octique("triangle-left")`| ![triangle-left](https://github.com/0x6b/typst-octique/wiki/assets/triangle-left.svg) | +|`#octique("triangle-right")`| ![triangle-right](https://github.com/0x6b/typst-octique/wiki/assets/triangle-right.svg) | +|`#octique("triangle-up")`| ![triangle-up](https://github.com/0x6b/typst-octique/wiki/assets/triangle-up.svg) | +|`#octique("trophy")`| ![trophy](https://github.com/0x6b/typst-octique/wiki/assets/trophy.svg) | +|`#octique("typography")`| ![typography](https://github.com/0x6b/typst-octique/wiki/assets/typography.svg) | +|`#octique("undo")`| ![undo](https://github.com/0x6b/typst-octique/wiki/assets/undo.svg) | +|`#octique("unfold")`| ![unfold](https://github.com/0x6b/typst-octique/wiki/assets/unfold.svg) | +|`#octique("unlink")`| ![unlink](https://github.com/0x6b/typst-octique/wiki/assets/unlink.svg) | +|`#octique("unlock")`| ![unlock](https://github.com/0x6b/typst-octique/wiki/assets/unlock.svg) | +|`#octique("unmute")`| ![unmute](https://github.com/0x6b/typst-octique/wiki/assets/unmute.svg) | +|`#octique("unread")`| ![unread](https://github.com/0x6b/typst-octique/wiki/assets/unread.svg) | +|`#octique("unverified")`| ![unverified](https://github.com/0x6b/typst-octique/wiki/assets/unverified.svg) | +|`#octique("upload")`| ![upload](https://github.com/0x6b/typst-octique/wiki/assets/upload.svg) | +|`#octique("verified")`| ![verified](https://github.com/0x6b/typst-octique/wiki/assets/verified.svg) | +|`#octique("versions")`| ![versions](https://github.com/0x6b/typst-octique/wiki/assets/versions.svg) | +|`#octique("video")`| ![video](https://github.com/0x6b/typst-octique/wiki/assets/video.svg) | +|`#octique("webhook")`| ![webhook](https://github.com/0x6b/typst-octique/wiki/assets/webhook.svg) | +|`#octique("workflow")`| ![workflow](https://github.com/0x6b/typst-octique/wiki/assets/workflow.svg) | +|`#octique("x-circle-fill")`| ![x-circle-fill](https://github.com/0x6b/typst-octique/wiki/assets/x-circle-fill.svg) | +|`#octique("x-circle")`| ![x-circle](https://github.com/0x6b/typst-octique/wiki/assets/x-circle.svg) | +|`#octique("x")`| ![x](https://github.com/0x6b/typst-octique/wiki/assets/x.svg) | +|`#octique("zap")`| ![zap](https://github.com/0x6b/typst-octique/wiki/assets/zap.svg) | +|`#octique("zoom-in")`| ![zoom-in](https://github.com/0x6b/typst-octique/wiki/assets/zoom-in.svg) | +|`#octique("zoom-out")`| ![zoom-out](https://github.com/0x6b/typst-octique/wiki/assets/zoom-out.svg) | + + +## License + +MIT. See [LICENSE](LICENSE) for detail. + +Octicons are (c) GitHub, Inc. When using the GitHub logos, you should follow the [GitHub logo guidelines](https://github.com/logos). diff --git a/src/resources/formats/typst/packages/preview/octique/0.1.1/impl/octique.typ b/src/resources/formats/typst/packages/preview/octique/0.1.1/impl/octique.typ new file mode 100644 index 00000000000..94975a781bb --- /dev/null +++ b/src/resources/formats/typst/packages/preview/octique/0.1.1/impl/octique.typ @@ -0,0 +1,342 @@ +// Private implementation details +// You shouldn't include or import this file directly + +// SVG path data for the icons +#let _data = ( + accessibility-inset: "", + accessibility: "", + alert-fill: "", + alert: "", + apps: "", + archive: "", + arrow-both: "", + arrow-down-left: "", + arrow-down-right: "", + arrow-down: "", + arrow-left: "", + arrow-right: "", + arrow-switch: "", + arrow-up-left: "", + arrow-up-right: "", + arrow-up: "", + beaker: "", + bell-fill: "", + bell-slash: "", + bell: "", + blocked: "", + bold: "", + book: "", + bookmark-slash: "", + bookmark: "", + briefcase: "", + broadcast: "", + browser: "", + bug: "", + cache: "", + calendar: "", + check-circle-fill: "", + check-circle: "", + check: "", + checkbox: "", + checklist: "", + chevron-down: "", + chevron-left: "", + chevron-right: "", + chevron-up: "", + circle-slash: "", + circle: "", + clock-fill: "", + clock: "", + cloud-offline: "", + cloud: "", + code-of-conduct: "", + code-review: "", + code: "", + code-square: "", + codescan-checkmark: "", + codescan: "", + codespaces: "", + columns: "", + command-palette: "", + comment-discussion: "", + comment: "", + container: "", + copilot-error: "", + copilot: "", + copilot-warning: "", + copy: "", + cpu: "", + credit-card: "", + cross-reference: "", + dash: "", + database: "", + dependabot: "", + desktop-download: "", + device-camera: "", + device-camera-video: "", + device-desktop: "", + device-mobile: "", + devices: "", + diamond: "", + diff-added: "", + diff-ignored: "", + diff-modified: "", + diff-removed: "", + diff-renamed: "", + diff: "", + discussion-closed: "", + discussion-duplicate: "", + discussion-outdated: "", + dot-fill: "", + dot: "", + download: "", + duplicate: "", + ellipsis: "", + eye-closed: "", + eye: "", + feed-discussion: "", + feed-forked: "", + feed-heart: "", + feed-issue-closed: "", + feed-issue-draft: "", + feed-issue-open: "", + feed-issue-reopen: "", + feed-merged: "", + feed-person: "", + feed-plus: "", + feed-public: "", + feed-pull-request-closed: "", + feed-pull-request-draft: "", + feed-pull-request-open: "", + feed-repo: "", + feed-rocket: "", + feed-star: "", + feed-tag: "", + feed-trophy: "", + file-added: "", + file-badge: "", + file-binary: "", + file-code: "", + file-diff: "", + file-directory-fill: "", + file-directory-open-fill: "", + file-directory: "", + file-directory-symlink: "", + file-moved: "", + file-removed: "", + file: "", + file-submodule: "", + file-symlink-file: "", + file-zip: "", + filter: "", + fiscal-host: "", + flame: "", + fold-down: "", + fold: "", + fold-up: "", + gear: "", + gift: "", + git-branch: "", + git-commit: "", + git-compare: "", + git-merge-queue: "", + git-merge: "", + git-pull-request-closed: "", + git-pull-request-draft: "", + git-pull-request: "", + globe: "", + goal: "", + grabber: "", + graph: "", + hash: "", + heading: "", + heart-fill: "", + heart: "", + history: "", + home: "", + horizontal-rule: "", + hourglass: "", + hubot: "", + id-badge: "", + image: "", + inbox: "", + infinity: "", + info: "", + issue-closed: "", + issue-draft: "", + issue-opened: "", + issue-reopened: "", + issue-tracked-by: "", + issue-tracks: "", + italic: "", + iterations: "", + kebab-horizontal: "", + key-asterisk: "", + key: "", + law: "", + light-bulb: "", + link-external: "", + link: "", + list-ordered: "", + list-unordered: "", + location: "", + lock: "", + log: "", + logo-gist: "", + logo-github: "", + mail: "", + mark-github: "", + markdown: "", + megaphone: "", + mention: "", + meter: "", + milestone: "", + mirror: "", + moon: "", + mortar-board: "", + move-to-bottom: "", + move-to-end: "", + move-to-start: "", + move-to-top: "", + multi-select: "", + mute: "", + no-entry: "", + north-star: "", + note: "", + number: "", + organization: "", + package-dependencies: "", + package-dependents: "", + package: "", + paintbrush: "", + paper-airplane: "", + paperclip: "", + passkey-fill: "", + paste: "", + pencil: "", + people: "", + person-add: "", + person-fill: "", + person: "", + pin-slash: "", + pin: "", + pivot-column: "", + play: "", + plug: "", + plus-circle: "", + plus: "", + project-roadmap: "", + project: "", + project-symlink: "", + project-template: "", + pulse: "", + question: "", + quote: "", + read: "", + redo: "", + rel-file-path: "", + reply: "", + repo-clone: "", + repo-deleted: "", + repo-forked: "", + repo-locked: "", + repo-pull: "", + repo-push: "", + repo: "", + repo-template: "", + report: "", + rocket: "", + rows: "", + rss: "", + ruby: "", + screen-full: "", + screen-normal: "", + search: "", + server: "", + share-android: "", + share: "", + shield-check: "", + shield-lock: "", + shield-slash: "", + shield: "", + shield-x: "", + sidebar-collapse: "", + sidebar-expand: "", + sign-in: "", + sign-out: "", + single-select: "", + skip-fill: "", + skip: "", + sliders: "", + smiley: "", + sort-asc: "", + sort-desc: "", + sparkle-fill: "", + sponsor-tiers: "", + square-fill: "", + square: "", + squirrel: "", + stack: "", + star-fill: "", + star: "", + stop: "", + stopwatch: "", + strikethrough: "", + sun: "", + sync: "", + tab-external: "", + table: "", + tag: "", + tasklist: "", + telescope-fill: "", + telescope: "", + terminal: "", + three-bars: "", + thumbsdown: "", + thumbsup: "", + tools: "", + tracked-by-closed-completed: "", + tracked-by-closed-not-planned: "", + trash: "", + triangle-down: "", + triangle-left: "", + triangle-right: "", + triangle-up: "", + trophy: "", + typography: "", + undo: "", + unfold: "", + unlink: "", + unlock: "", + unmute: "", + unread: "", + unverified: "", + upload: "", + verified: "", + versions: "", + video: "", + webhook: "", + workflow: "", + x-circle-fill: "", + x-circle: "", + x: "", + zap: "", + zoom-in: "", + zoom-out: "", +) + +// Wrap path data into SVG +#let _octique-svg(name) = { + "" + _data.at(name) + "" +} + +// Returns decoded image for name +#let _octique-image(name, color: rgb("#000000"), width: 1em, height: 1em) = { + image( + bytes(_octique-svg(name).replace("#000000", color.to-hex())), + width: width, + height: height, + alt: name, + format: "svg", + ) +} diff --git a/src/resources/formats/typst/packages/preview/octique/0.1.1/octique.typ b/src/resources/formats/typst/packages/preview/octique/0.1.1/octique.typ new file mode 100644 index 00000000000..a36776a6a7e --- /dev/null +++ b/src/resources/formats/typst/packages/preview/octique/0.1.1/octique.typ @@ -0,0 +1,12 @@ +#import "impl/octique.typ": _octique-svg, _octique-image + +// Returns an image for the given name. +#let octique(name, color: rgb("#000000"), width: 1em, height: 1em) = _octique-image(name, color: color, width: width, height: width) + +// Returns a boxed image for the given name. +#let octique-inline(name, color: rgb("#000000"), width: 1em, height: 1em, baseline: 25%) = { + box(baseline: baseline, octique(name, color: color, width: width, height: height)) +} + +// Returns an SVG text for the given name. +#let octique-svg(name) = _octique-svg(name) diff --git a/src/resources/formats/typst/packages/preview/octique/0.1.1/typst.toml b/src/resources/formats/typst/packages/preview/octique/0.1.1/typst.toml new file mode 100644 index 00000000000..7b604ff48c4 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/octique/0.1.1/typst.toml @@ -0,0 +1,10 @@ +[package] +name = "octique" +version = "0.1.1" +entrypoint = "octique.typ" +authors = ["0x6b", "python33r"] +license = "MIT" +description = "GitHub Octicons for Typst." +repository = "https://github.com/0x6b/typst-octique" +keywords = ["icon", "github", "octicons"] +exclude = ["sample"] diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/LICENSE b/src/resources/formats/typst/packages/preview/showybox/2.0.4/LICENSE new file mode 100644 index 00000000000..19a5ce9e2c0 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023-2024 Pablo González Calderón and Showybox Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/README.md b/src/resources/formats/typst/packages/preview/showybox/2.0.4/README.md new file mode 100644 index 00000000000..4569aa9c573 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/README.md @@ -0,0 +1,268 @@ +# Showybox (v2.0.4) + +**Showybox** is a Typst package for creating colorful and customizable boxes. + +## Usage + +To use this library through the Typst package manager (for Typst 0.6.0 or greater), write `#import "@preview/showybox:2.0.4": showybox` at the beginning of your Typst file. + +Once imported, you can create an empty showybox by using the function `showybox()` and giving a default body content inside the parenthesis or outside them using squared brackets `[]`. + +By default a `showybox` with these properties will be created: + +- No title +- No shadow +- Not breakable +- Black borders +- White background +- `5pt` of border radius +- `1pt` of border thickness + +```typst +#import "@preview/showybox:2.0.4": showybox + +#showybox( + [Hello world!] +) +``` +

+ Hello world! example +

+ +Looks quite simple, but the "magic" starts when adding a title, color and shadows. The following code creates two "unique" boxes with defined colors and custom borders: +```typst +// First showybox +#showybox( + frame: ( + border-color: red.darken(50%), + title-color: red.lighten(60%), + body-color: red.lighten(80%) + ), + title-style: ( + color: black, + weight: "regular", + align: center + ), + shadow: ( + offset: 3pt, + ), + title: "Red-ish showybox with separated sections!", + lorem(20), + lorem(12) +) + +// Second showybox +#showybox( + frame: ( + dash: "dashed", + border-color: red.darken(40%) + ), + body-style: ( + align: center + ), + sep: ( + dash: "dashed" + ), + shadow: ( + offset: (x: 2pt, y: 3pt), + color: yellow.lighten(70%) + ), + [This is an important message!], + [Be careful outside. There are dangerous bananas!] +) +``` +

+ Further examples +

+ +## Reference + +The `showybox()` function can receive the following parameters: +- `title`: A string used as the title of the showybox +- `footer`: A string used as the footer of the showybox +- `frame`: A dictionary containing the frame's properties +- `title-style`: A dictionary containing the title's styles +- `body-style`: A dictionary containing the body's styles +- `footer-style`: A dictionary containing the footer's styles +- `sep`: A dictionary containing the separator's properties +- `shadow`: A dictionary containing the shadow's properties +- `width`: A relative length indicating the showybox's width +- `align`: An unidimensional alignement for the showybox in the page +- `breakable`: A boolean indicating whether a showybox can break if it reached an end of page +- `spacing`: Space above and below the showybox +- `above`: Space above the showybox +- `below`: Space below the showybox +- `body`: The content of the showybox + +### Frame properties +- `title-color`: Color used as background color where the title goes (default is `black`) +- `body-color`: Color used as background color where the body goes (default is `white`) +- `footer-color`: Color used as background color where the footer goes (default is `luma(85)`) +- `border-color`: Color used for the showybox's border (default is `black`) +- `inset`: Inset used for title, body and footer elements (default is `(x: 1em, y: 0.65em)`) if none of the followings are given: + - `title-inset`: Inset used for the title + - `body-inset`: Inset used for the body + - `footer-inset`: Inset used for the body +- `radius`: Showybox's radius (default is `5pt`) +- `thickness`: Border thickness of the showybox (default is `1pt`) +- `dash`: Showybox's border style (default is `solid`) + +### Title styles +- `color`: Text color (default is `white`) +- `weight`: Text weight (default is `bold`) +- `align`: Text align (default is `start`) +- `sep-thickness`: Thickness of the separator between title and body (default is `1pt`) +- `boxed-style`: If it's a dictionary of properties, indicates that the title must appear like a "floating box" above the showybox. If it's ``none``, the title appears normally (default is `none`) + +#### Boxed styles + +- `anchor`: Anchor of the boxed title + - `y`: Vertical anchor (`top`, `horizon` or `bottom` -- default is `horizon`) + - `x`: Horizontal anchor (`left`, `start`, `center`, `right`, `end` -- default is `start`) +- `offset`: How much to offset the boxed title in x and y direction as a dictionary with keys `x` and `y` (default is `0pt`) +- ``radius``: Boxed title radius as a dictionary or relative length (default is `5pt`) + +### Body styles +- `color`: Text color (default is `black`) +- `align`: Text align (default is `start`) + +### Footer styles +- `color`: Text color (default is `luma(85)`) +- `weight`: Text weight (default is `regular`) +- `align`: Text align (default is `start`) +- `sep-thickness`: Thickness of the separator between body and footer (default is `1pt`) + +### Separator properties +- `thickness`: Separator's thickness (default is `1pt`) +- `dash`: Separator's style (as a `line` dash style, default is `"solid"`) +- `gutter`: Separator's space above and below (defalut is `0.65em`) + +### Shadow properties +- `color`: Shadow color (default is `black`) +- `offset`: How much to offset the shadow in x and y direction either as a length or a dictionary with keys `x` and `y` (default is `4pt`) + + +## Gallery + +### Colors for title, body and footer example (Stokes' theorem) + +

+ Encapsulation +

+ +### Boxed-title example (Clairaut's theorem) + +

+ Encapsulation +

+ +### Encapsulation example + +

+ Encapsulation +

+ +### Breakable showybox example (Newton's second law) +

+ Enabling breakable +

+ +### Custom radius and title's separator thickness example (Carnot's cycle efficency) +

+ Custom radius +

+ +### Custom border dash and inset example (Gauss's law) +

+ Custom radius +

+ +### Custom footer's separator thickness example (Divergence's theorem) +

+ Custom radius +

+ +### Colorful shadow example (Coulomb's law) +

+ Custom radius +

+ +## Changelog + +### Version 2.0.4 + +_Special thanks to enklht (https://github.com/enklht) and PgBiel (https://github.com/PgBiel) for their collaboration with this version's changes_ + +- Change default alignments to ``start``, instead of ``left`` +- Fix pre-rendering logic while creating boxed-titles + - This fixes a reported bug occurring while creating a ``counter`` inside a showybox declaration + +### Version 2.0.3 +- Revert fix breakable box empty before new page. Layout didn't converge + +### Version 2.0.2 +- Remove deprecated functions in Typst 0.12.0 +- Fix breakable box empty before new page + +### Version 2.0.1 + +- Fix bad behaviours of boxed-titles ``anchor`` inside a ``figure`` +- Fix wrong ``breakable`` behaviour of showyboxes inside a ``figure`` +- Fix Manual and README's Stokes theorem example + +### Version 2.0.0 + +_Special thanks to Andrew Voynov () for the feedback while creating the new behaviours for boxed-titles_ + +- Update ``type()`` conditionals to Typst 0.8.0 standards +- Add ``boxed-style`` property, with ``anchor``, ``offset`` and ``radius`` properties. +- Refactor ``showy-inset()`` for being general-purpose. Now it's called ``showy-value-in-direction()`` and has a default value for handling properties defaults +- Now sharp corners can be set by giving a dictionary to frame ``radius`` (e.g. ``radius: (top: 5pt, bottom: 0pt)``). Before this only was possible for untitled showyboxes. +- Refactor shadow functions to be in a separated file. +- Fix bug of bad behaviour while writing too long titles. +- Fix bug while rendering separators with custom thickness. Now the thickness is gotten properly. +- Fix bad shadow drawing in showyboxes with a boxed-title that has a "extreme" `offset` value. +- Fix bad sizing while creating showyboxes with a `width` of less than `100%`, and a shadow. + +### Version 1.1.0 +- Added `boxed` option in title styles +- Added `boxed-align` in title styles +- Added `sep-thickness` for title and footer +- Refactored repository's files layout + +### Version 1.0.0 + +- Fixed shadow displacement + - **Details:** Instead of displacing the showybox's body from the shadow, now the shadow is displaced from the body. + +_Changes below were performed by Jonas Neugebauer ()_ + +- Added `title-inset`, `body-inset`, `footer-inset` and `inset` options + - **Details:** `title-inset`, `body-inset` and `footer-inset` will set the inset of the title, body and footer area respectively. `inset` is a fallback for those areas. +- Added a `sep.gutter` option to set the spacing around separator lines +- Added option `width` to set the width of a showybox +- Added option `align` to move a showybox with `width` < 100% along the x-axis + - **Details:** A showybox is now wrapped in another block to allow alignment. This also makes it possible to pass the spacing options `spacing`, `above` and `below` to `#showybox()`. +- Added `footer` and `footer-style` options + - **Details:** The optional footer is added at the bottom of the box. + +### Version 0.2.1 + +_All changes listed here were performed by Jonas Neugebauer ()_ + +- Added the `shadow` option +- Enabled auto-break (`breakable`) functionality for titled showyboxes +- Removed a thin line that appears in showyboxes with no borders or dashed borders + +### Version 0.2.0 +- Improved code documentation +- Enabled an auto-break functionality for non-titled showyboxes +- Created a separator functionality to separate content inside a showybox with a horizontal line + +### Version 0.1.1 +- Changed package name from colorbox to showybox +- Fixed a spacing bug in encapsulated showyboxes + - **Details:** When a showybox was encapsulated inside another, the spacing after that showybox was `0pt`, probably due to some "fixes" improved to manage default spacing between `rect` elements. The issue was solved by avoiding `#set` statements and adding a `#v(-1.1em)` to correct extra spacing between the title `rect` and the body `rect`. + +### Version 0.1.0 +- Initial release \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/func.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/func.typ new file mode 100644 index 00000000000..22619063e9a --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/func.typ @@ -0,0 +1,143 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023 + * + * lib/func.typ -- The package's file containing all the + * internal functions used by showybox() + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +/* + * Function: showy-value-in-direction() + * + * Description: Helper function to get a value + * in a specific direction inside a dictionary or value + * + * Parameters: + * + direction: Direction as an alignement or string + * + value: Dictionary or value to search in + * + default: Default value if nothing is found + */ +#let showy-value-in-direction(direction, value, default) = { + if type(direction) != str { + direction = repr(direction) + } + if type(value) == dictionary { + if direction in value { + value.at(direction) + } else if direction in ("left", "right") and "x" in value { + value.x + } else if direction in ("top", "bottom") and "y" in value { + value.y + } else if direction in ("top-left", "top-right") and "top" in value { + value.top + } else if direction in ("bottom-left", "bottom-right") and "bottom" in value { + value.bottom + } else if "rest" in value { + value.rest + } else { + default + } + } else if value == none { + default + } else { + value + } +} + +/* + * Function: showy-section-inset() + * + * Description: Gets the inset value for the given + * section ("title", "body", "footer"), checking if + * it's declared in `title-inset`, `body-inset` or + * `footer-inset` instead of `inset` + * + * Parameters: + * + section: Section to retrieve the inset ("title", "body" or "footer") + * + frame: The dictionary with frame settings + */ +#let showy-section-inset(section, frame) = { + return frame.at( + section + "-inset", + default: frame.inset + ) +} + +/* + * Function: showy-line() + * + * Description: Creates a modified `#line()` function + * to draw a separator line with start and end points + * adjusted to insets. + * + * Parameters: + * + frame: The dictionary with frame settings + */ +#let showy-line(frame) = { + let inset = showy-section-inset("body", frame) + let inset = ( + left: showy-value-in-direction(left, inset, 0pt), + right: showy-value-in-direction(right, inset, 0pt) + ) + let (start, end) = (0%, 0%) + + // For relative insets the original width needs to be calculated + if type(inset.left) == ratio and type(inset.right) == ratio { + let full = 100% / (1 - float(inset.right) - float(inset.left)) + start = -inset.left * full + end = full + start + } else if type(inset.left) == ratio { + let full = (100% + inset.right) / (1 - float(inset.left)) + (start, end) = (-inset.left * full, 100% + inset.right) + } else if type(inset.right) == ratio { + let full = (100% + inset.left) / (1 - float(inset.right)) + (start, end) = (-inset.left, full - inset.left) + } else { + (start, end) = (-inset.left, 100% + inset.right) + } + + line.with( + start: (start, 0%), + end: (end, 0%) + ) +} +/* + * Function: showy-stroke() + * + * Description: Creates a stroke or set of strokes + * to use as borders. + * + * Parameters: + * + frame: The dictionary with frame settings + */ +#let showy-stroke(frame, ..overrides) = { + let (paint, dash, width) = ( + frame.border-color, + frame.dash, + frame.thickness + ) + + let strokes = (:) + if type(width) != dictionary { // Set all borders at once + for side in ("top", "bottom", "left", "right") { + strokes.insert(side, (paint: paint, dash: dash, thickness: width)) + } + } else { // Set each border individually + for pair in width { + strokes.insert( + pair.first(), // key + (paint: paint, dash: dash, thickness: pair.last()) + ) + } + } + for pair in overrides.named() { + strokes.insert( + pair.first(), + (paint: paint, dash: dash, thickness: pair.last()) + ) + } + return strokes +} \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/id.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/id.typ new file mode 100644 index 00000000000..7d6132ed474 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/id.typ @@ -0,0 +1,12 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023-2024 + * + * lib/id.typ -- The package's file containing all the + * internal functions used to handle showybox id + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +#let _showy-id = counter("showybox-id") \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/pre-rendering.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/pre-rendering.typ new file mode 100644 index 00000000000..cdccacea4fe --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/pre-rendering.typ @@ -0,0 +1,50 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023-2024 + * + * lib/pre-rendering.typ -- The package's file containing all + * the internal functions used for pre-rendering some components + * to get their dimensions or properties. + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +#import "id.typ": * +#import "sections.typ": * + +/* + * Function: showy-pre-render-title() + * + * Description: Pre-renders the title emulating the conditions of + * the final container. + * + * Parameters: + * + sbox-props: Showybox properties + */ +#let showy-pre-render-title(sbox-props, id) = context { + let my-state = state("showybox-" + id, 0pt) + + layout(size => { + // Get full container's width in a length type + let container-width = if type(sbox-props.width) == ratio { + sbox-props.width * size.width + } else { + sbox-props.width + } + + let pre-rendered = block( + spacing: 0pt, + width: container-width, + fill: yellow, + inset: (x: 1em), + showy-title(sbox-props), + ) + + let rendered-size = measure(pre-rendered, ..size) + + // Store the height in the state + my-state.update(rendered-size.height) + }) + //v(-(my-state.final(loc) + sbox-props.frame.thickness)/2) +} diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/sections.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/sections.typ new file mode 100644 index 00000000000..0199a053759 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/sections.typ @@ -0,0 +1,142 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023 + * + * lib/sections.typ -- The package's file containing all the + * internal functions for drawing sections. + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +#import "func.typ": * + +/* + * Function: showy-get-title-props() + * + * Description: Returns the title's properties + * + * Parameters: + * + sbox-props: Showybox properties + */ +#let showy-get-title-props(sbox-props) = { + /* + * Properties independent of `boxed` + */ + let props = ( + spacing: 0pt, + fill: sbox-props.frame.title-color, + inset: showy-section-inset("title", sbox-props.frame) + ) + + /* + * Properties dependent of `boxed` + */ + if sbox-props.title-style.boxed-style != none { + props = props + ( + width: auto, + radius: sbox-props.title-style.boxed-style.radius, + stroke: showy-stroke(sbox-props.frame), + ) + } else { + props = props + ( + width: 100%, + radius: ( + top-left: showy-value-in-direction("top-left", sbox-props.frame.radius, 5pt), + top-right: showy-value-in-direction("top-right", sbox-props.frame.radius, 5pt), + bottom: 0pt + ), + stroke: showy-stroke(sbox-props.frame, bottom: sbox-props.title-style.sep-thickness) + ) + } + return props +} + +/* + * Function: showy-title() + * + * Description: Returns the title's block + * + * Parameters: + * + sbox-props: Showybox properties + */ +#let showy-title(sbox-props) = block( + ..showy-get-title-props(sbox-props), + align( + sbox-props.title-style.align, + text( + sbox-props.title-style.color, + weight: sbox-props.title-style.weight, + sbox-props.title + ) + ) +) + +/* + * Function: showy-body() + * + * Description: Returns the body's block + * + * Parameters: + * + sbox-props: Showybox properties + * + body: Body content + */ +#let showy-body(sbox-props, ..body) = block( + width: 100%, + spacing: 0pt, + breakable: sbox-props.breakable, + inset: showy-section-inset("body", sbox-props.frame), + align( + sbox-props.body-style.align, + text( + sbox-props.body-style.color, + body.pos() + .map(block.with(spacing:0pt, width: 100%, breakable: sbox-props.breakable)) + .join( + block( + spacing: sbox-props.sep.gutter, + align( + left, // Avoid alignment errors + showy-line(sbox-props.frame)( + stroke: ( + paint: sbox-props.frame.border-color, + dash: sbox-props.sep.dash, + thickness: sbox-props.sep.thickness + ) + ) + ) + ) + ) + ) + ) +) + +/* + * Function: showy-footer() + * + * Description: Returns the footer's block + * + * Parameters: + * + sbox-props: Showybox properties + * + body: Body content + */ +#let showy-footer(sbox-props, footer) = block( + width: 100%, + spacing: 0pt, + inset: showy-section-inset("footer", sbox-props.frame), + fill: sbox-props.frame.footer-color, + stroke: showy-stroke(sbox-props.frame, top: sbox-props.footer-style.sep-thickness), + radius: ( + bottom-left: showy-value-in-direction("bottom-left", sbox-props.frame.radius, 5pt), + bottom-right: showy-value-in-direction("bottom-right", sbox-props.frame.radius, 5pt), + top: 0pt + ), + align( + sbox-props.footer-style.align, + text( + sbox-props.footer-style.color, + weight: sbox-props.footer-style.weight, + footer + ) + ) +) \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/shadows.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/shadows.typ new file mode 100644 index 00000000000..d772c20c5a4 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/lib/shadows.typ @@ -0,0 +1,118 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023-2024 + * + * lib/shadows.typ -- The package's file containing all the + * internal functions for drawing shadows. + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +#import "func.typ": * +#import "id.typ": * +#import "sections.typ": * + +/* + * Function: showy-shadow() + * + * Description: Draws the showybox main shadow + * (excludes boxed title shadows). + * + * Parameters: + * + sbox-props: Showybox properties + * + sbox: Pre-rendered showybox + */ +#let showy-shadow(sbox-props, sbox, id) = context { + if sbox-props.shadow == none { + return sbox + } + let my-state = state("showybox-" + id, 0pt) + + /* If it has a boxed sbox-props.title, leave some space + * to avoid collisions with other elements next to the + * showybox */ + if sbox-props.title != "" and sbox-props.title-style.boxed-style != none { + if sbox-props.title-style.boxed-style.anchor.y == bottom { + v(my-state.at(here())) + } else if sbox-props.title-style.boxed-style.anchor.y == horizon{ + v(my-state.at(here())/2) + } // Otherwise, no space is needed + + } + + block( + breakable: sbox-props.breakable, + radius: sbox-props.frame.radius, + fill: sbox-props.shadow.color, + width: sbox-props.width, + spacing: 0pt, + outset: ( + left: -sbox-props.shadow.offset.x, + right: sbox-props.shadow.offset.x, + bottom: sbox-props.shadow.offset.y, + top: -sbox-props.shadow.offset.y + ), + /* If it have a boxed title, substract some space to + avoid the shadow to be body + title height, and only + body height */ + if sbox-props.title != "" and sbox-props.title-style.boxed-style != none { + if sbox-props.title-style.boxed-style.anchor.y == bottom { + v(-my-state.at(here())) + } else if sbox-props.title-style.boxed-style.anchor.y == horizon { + v(-my-state.at(here())/2) + } // Otherwise do nothing + + sbox + } else { + sbox + } + ) +} + +/* + * Function: showy-boxed-title-shadow() + * + * Description: Draws the showybox's boxed title shadow + * + * Parameters: + * + sbox-props: Showybox properties + * + tbox: Pre-rendered boxed-title + */ +#let showy-boxed-title-shadow(sbox-props, id) = context { + if sbox-props.shadow == none { + return + } else if sbox-props.title == "" or sbox-props.title-style.boxed-style == none { + return + } + + let my-state = state("showybox-" + id, 0pt) + + return place( + top + sbox-props.title-style.boxed-style.anchor.x, + dx: sbox-props.title-style.boxed-style.offset.x, + dy: sbox-props.title-style.boxed-style.offset.y + if sbox-props.title-style.boxed-style.anchor.y == bottom { + -my-state.final() + } else if sbox-props.title-style.boxed-style.anchor.y == horizon { + -my-state.final()/2 + }, + block( + spacing: 0pt, + inset: (x: 1em), + block( + breakable: sbox-props.breakable, + radius: sbox-props.title-style.boxed-style.radius, + fill: sbox-props.shadow.color, + spacing: 0pt, + outset: ( + left: -sbox-props.shadow.offset.x, + right: sbox-props.shadow.offset.x, + top: -sbox-props.shadow.offset.y, + bottom: sbox-props.shadow.offset.y + ), + hide(showy-title(sbox-props)) + ) + ) + ) +} + diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/showy.typ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/showy.typ new file mode 100644 index 00000000000..a9383f42a4d --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/showy.typ @@ -0,0 +1,268 @@ +/* + * ShowyBox - A package for Typst + * Pablo González Calderón and Showybox Contributors (c) 2023-2024 + * + * Main Contributors: + * - Jonas Neugebauer () + * + * showy.typ -- The package's main file containing the + * public and (more) useful functions + * + * This file is under the MIT license. For more + * information see LICENSE on the package's main folder. + */ + +/* + * Import functions + */ +#import "lib/func.typ": * +#import "lib/sections.typ": * +#import "lib/shadows.typ": * +#import "lib/id.typ": * +#import "lib/pre-rendering.typ": * + +/* + * Function: showybox() + * + * Description: Creates a showybox + * + */ +#let showybox( + frame: (:), + title-style: (:), + boxed-style: (:), + body-style: (:), + footer-style: (:), + sep: (:), + shadow: none, + width: 100%, + breakable: false, + /* align: none, / collides with align-function */ + /* spacing, above, and below are by default what's set for all `block`s */ + title: "", + footer: "", + ..body, +) = { + /* + * Complete and store all the dictionary-like-properties inside a + * single dictionary. This will improve readability and avoids to + * constantly have a default option while accessing + */ + let props = ( + frame: ( + title-color: frame.at("title-color", default: black), + body-color: frame.at("body-color", default: white), + border-color: frame.at("border-color", default: black), + footer-color: frame.at("footer-color", default: luma(220)), + inset: frame.at("inset", default: (x: 1em, y: .65em)), + radius: frame.at("radius", default: 5pt), + thickness: frame.at("thickness", default: 1pt), + dash: frame.at("dash", default: "solid"), + ), + title-style: ( + color: title-style.at("color", default: white), + weight: title-style.at("weight", default: "regular"), + align: title-style.at("align", default: start), + sep-thickness: title-style.at("sep-thickness", default: 1pt), + boxed-style: if title-style.at("boxed-style", default: none) != none and type(title-style.at("boxed-style", default: none)) == dictionary { + ( + anchor: ( + y: title-style.boxed-style.at("anchor", default: (:)).at("y", default: horizon), + x: title-style.boxed-style.at("anchor", default: (:)).at("x", default: start), + ), + offset: ( + x: title-style.boxed-style.at("offset", default: (:)).at("x", default: 0pt), + y: title-style.boxed-style.at("offset", default: (:)).at("y", default: 0pt), + ), + radius: title-style.boxed-style.at("radius", default: 5pt), + ) + } else { + none + }, + ), + body-style: ( + color: body-style.at("color", default: black), + align: body-style.at("align", default: start), + ), + footer-style: ( + color: footer-style.at("color", default: luma(85)), + weight: footer-style.at("weight", default: "regular"), + align: footer-style.at("align", default: start), + sep-thickness: footer-style.at("sep-thickness", default: 1pt), + ), + sep: ( + thickness: sep.at("thickness", default: 1pt), + dash: sep.at("dash", default: "solid"), + gutter: sep.at("gutter", default: 0.65em), + ), + shadow: if shadow != none { + if type(shadow.at("offset", default: 4pt)) != dictionary { + (offset: ( + x: shadow.at("offset", default: 4pt), + y: shadow.at("offset", default: 4pt), + ), color: shadow.at("color", default: luma(128))) + } else { + (offset: ( + x: shadow.at("offset").at("x", default: 4pt), + y: shadow.at("offset").at("y", default: 4pt), + ), color: shadow.at("color", default: luma(128))) + } + } else { + none + }, + breakable: breakable, + width: width, + title: title, + ) + // Add title, body and footer inset (if present) + for section-inset in ("title-inset", "body-inset", "footer-inset") { + let value = frame.at(section-inset, default: none) + if value != none { + props.frame.insert(section-inset, value) + } + } + + _showy-id.step() + context { + let id = str(_showy-id.get().first()) + + /* + * Update title height in state. + * + * NOTE: Although a `place` and `hide` are used in the pre-render + * function, for avoiding nesting components inside unaccesible + * containers, we must call this function inside another `place`. + */ + + if title != "" and props.title-style.boxed-style != none { + place(top, showy-pre-render-title(props, id)) + } + + /* + * Alignment wrapper + */ + let alignprops = (:) + for prop in ("spacing", "above", "below") { + if prop in body.named() { + alignprops.insert(prop, body.named().at(prop)) + } + } + let alignwrap(content) = block( + ..alignprops, + breakable: breakable, + width: 100%, + if "align" in body.named() and body.named().align != none { + align(body.named().align, content) + } else { + content + }, + ) + + let showyblock = context { + let my-state = state("showybox-" + id, 0pt) + + // /* + // * Decide wheter add a page break or not, based on the remaining + // * space in the page. For calculating it, we substract the page + // * margin to the page size. Later, we estimate a minimum size of + // * the showybox, adding the frame thickness, the frame inset, + // * and the size of 1 line of text. + // */ + // let abs-margin = if page.margin == auto { + // let small-side = calc.min(page.height, page.width) + // (2.5/21) * small-side // According to docs, this is the 'auto' margin + // } else { + // margin.at("y", default: margin.at("top", default: margin.rest)) + // } + + // let remaining = 0pt + // let to-use = 0pt + // remaining = page.height - location.position(here()).y - abs-margin + // to-use += text.size.to-absolute() + + // if type(props.frame.thickness) == dictionary { + // to-use += props.frame.thickness.at("y", default: props.frame.thickness.at("top", default: props.frame.inset.at("rest", default: .65em))).to-absolute() + // to-use += props.frame.thickness.at("y", default: props.frame.thickness.at("bottom", default: props.frame.inset.at("rest", default: .65em))).to-absolute() + // } else { + // to-use += 2*props.frame.thickness + // } + + // if type(props.frame.inset) == dictionary { + // to-use += 4*props.frame.inset.at("y", default: props.frame.inset.at("top", default: props.frame.inset.at("rest", default: .65em))).to-absolute() + // } else { + // to-use += 4*props.frame.inset.to-absolute() + // } + + // // Since we cannot add a pagebreak directly, add the to-use space, + // // which would be greater than the remaining space. + // if remaining - to-use <= 0pt { + // v(to-use) + // } + + if title != "" and props.title-style.boxed-style != none { + if props.title-style.boxed-style.anchor.y == bottom { + v(my-state.final()) + } else if props.title-style.boxed-style.anchor.y == horizon { + v(my-state.final() / 2) + } // Otherwise don't add extra space + + // Add the boxed-title shadow before rendering the body + if props.shadow != none { + showy-boxed-title-shadow(props, id) + } + } + + block( + width: if props.shadow == none { + width + } else { + 100% + }, + fill: props.frame.body-color, + radius: props.frame.radius, + inset: 0pt, + spacing: 0pt, + breakable: breakable, + stroke: showy-stroke(props.frame), + )[ + /* + * Title of the showybox + */ + #if title != "" and props.title-style.boxed-style == none { + showy-title(props) + } else if title != "" and props.title-style.boxed-style != none { + if props.title-style.boxed-style.anchor.y == top { + v(my-state.final()) + } else if props.title-style.boxed-style.anchor.y == horizon { + v(my-state.final() / 2) + } + + place( + top + props.title-style.boxed-style.anchor.x, + dx: props.title-style.boxed-style.offset.x, + dy: props.title-style.boxed-style.offset.y + if props.title-style.boxed-style.anchor.y == bottom { + -my-state.final() + } else if props.title-style.boxed-style.anchor.y == horizon { + -my-state.final() / 2 + }, + block(spacing: 0pt, inset: (x: 1em), showy-title(props)), + ) + } + + /* + * Body of the showybox + */ + #showy-body(props, ..body) + + /* + * Footer of the showybox + */ + #if footer != "" { + showy-footer(props, footer) + } + ] + } + + alignwrap(showy-shadow(props, showyblock, id)) + } +} \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/showybox/2.0.4/typst.toml b/src/resources/formats/typst/packages/preview/showybox/2.0.4/typst.toml new file mode 100644 index 00000000000..d2c753ff720 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/showybox/2.0.4/typst.toml @@ -0,0 +1,12 @@ +[package] +name = "showybox" +version = "2.0.4" +entrypoint = "showy.typ" +authors = ["Pablo González Calderón", "Showybox Contributors"] +license = "MIT" +categories = ["components"] +keywords = ["boxes", "colorful"] +compiler = "0.12.0" +description = "Colorful and customizable boxes for Typst" +repository = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package" +exclude = ["assets", "Showybox's Manual.pdf", "examples", "manual"] \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/LICENSE b/src/resources/formats/typst/packages/preview/theorion/0.4.1/LICENSE new file mode 100644 index 00000000000..148b340d776 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2025 OrangeX4 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/README.md b/src/resources/formats/typst/packages/preview/theorion/0.4.1/README.md new file mode 100644 index 00000000000..4cb88ab8615 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/README.md @@ -0,0 +1,468 @@ +# 🌌 Theorion + +[![Typst Universe](https://img.shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftypst.app%2Funiverse%2Fpackage%2Ftheorion&query=%2Fhtml%2Fbody%2Fdiv%2Fmain%2Fdiv%5B2%5D%2Faside%2Fsection%5B2%5D%2Fdl%2Fdd%5B3%5D&logo=typst&label=universe&color=%2339cccc)](https://typst.app/universe/package/theorion) +![GitHub](https://img.shields.io/github/license/OrangeX4/typst-theorion) +![GitHub Repo stars](https://img.shields.io/github/stars/OrangeX4/typst-theorion) +![Cosmos badge](https://img.shields.io/badge/cosmos-4-aqua) + +[Theorion](https://github.com/OrangeX4/typst-theorion) (The Orion) is an out-of-the-box, customizable and multilingual **theorem** environment package for [Typst](https://typst.app/docs/). + +- **Out-of-the-box styles** 🎨 +- **Built-in multilingual support** 🌐 +- **Experimental HTML Support** 📑 +- **Highly customizable** ⚙️: + - Custom separate counters and numbering styles + - Configurable inheritance levels from headings or math equation + - Custom theorem environments + - Custom separate rendering functions +- **Rich theorem environments** 📚: theorem, definition, lemma, corollary, example, proof, and many more presets for note-taking +- **Theorem restatement** 🔄: `#theorion-restate(filter: it => it.outlined and it.identifier == "theorem")` +- **Additional features** 📑: + - Theorem table of contents + - Appendix numbering adjustments + - Complete label and reference system + - Optional outline and numbering display + - [Touying](https://github.com/touying-typ/touying) animation support + +## Quick Start + +Just import and use theorion. + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.fancy: * +// #import cosmos.rainbow: * +// #import cosmos.clouds: * +#show: show-theorion + +#theorem(title: "Euclid's Theorem")[ + There are infinitely many prime numbers. +] + +#theorem-box(title: "Theorem without numbering", outlined: false)[ + This theorem is not numbered. +] +``` + +![image](./examples/simple.png) + +## Customization + +```typst +// 1. Change the counters and numbering: +#set-inherited-levels(1) +#set-zero-fill(true) +#set-leading-zero(true) +#set-theorion-numbering("1.1") + +// 2. Other options: +#set-result("noanswer") +#set-qed-symbol[#math.qed] + +// 3. Custom theorem environment for yourself +#let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( + "theorem", + "Theorem", // supplement, string or dictionary like `(en: "Theorem")`, or `theorion-i18n-map.at("theorem")` for built-in i18n support + counter: theorem-counter, // inherit the old counter, `none` by default + inherited-levels: 2, // useful when you need a new counter + inherited-from: heading, // heading or just another counter + render: (prefix: none, title: "", full-title: auto, body) => [#strong[#full-title.]#sym.space#emph(body)], +) +#show: show-theorem + +// 4. Just use it. +#theorem(title: "Euclid's Theorem")[ + There are infinitely many prime numbers. +] +#theorem-box(title: "Theorem without numbering", outlined: false)[ + This theorem is not numbered. +] + +// 5. Example of appendix +#counter(heading).update(0) +#set heading(numbering: "A.1") +#set-theorion-numbering("A.1") + +// 6. Table of contents +#outline(title: none, target: figure.where(kind: "theorem")) + +// 7. Specify a number or supplement +#theorem(title: "Euclid's Theorem", number: "233", supplement: [Theorion])[ + There are infinitely many prime numbers. +] +``` + +## Restate Theorems + +```typst +// 1. Restate all theorems +#theorion-restate(filter: it => it.outlined and it.identifier == "theorem", render: it => it.render) +// 2. Restate all theorems with custom render function +#theorion-restate( + filter: it => it.outlined and it.identifier == "theorem", + render: it => (prefix: none, title: "", full-title: auto, body) => block[#strong[#full-title.]#sym.space#emph(body)], +) +// 3. Restate a specific theorem +#theorion-restate(filter: it => it.label == ) +// or we can use +#theorion-restate(filter: ) +``` + +## Example + +[Source code](examples/example.typ) + +![example](examples/example.png) + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.fancy: * +// #import cosmos.rainbow: * +// #import cosmos.clouds: * +#show: show-theorion + +#set page(height: auto) +#set heading(numbering: "1.1") +#set text(lang: "en") + +/// 1. Change the counters and numbering: +// #set-inherited-levels(1) +// #set-zero-fill(true) +// #set-leading-zero(true) +// #set-theorion-numbering("1.1") + +/// 2. Other options: +// #set-result("noanswer") +// #set-qed-symbol[#math.qed] + +/// 3. Custom theorem environment for yourself +// #let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( +// "theorem", +// "Theorem", // supplement, string or dictionary like `(en: "Theorem")`, or `theorion-i18n-map.at("theorem")` for built-in i18n support +// counter: theorem-counter, // inherit the counter, `none` by default +// inherited-levels: 2, // useful when you need a new counter +// inherited-from: heading, // heading or another counter +// render: (prefix: none, title: "", full-title: auto, body) => [#strong[#full-title.]#sym.space#emph(body)], +// ) +// #show: show-theorem + +/// 4. Just use it. +// #theorem(title: "Euclid's Theorem")[ +// There are infinitely many prime numbers. +// ] +// #theorem-box(title: "Theorem without numbering", outlined: false)[ +// This theorem is not numbered. +// ] + +/// 5. Example of appendix +// #counter(heading).update(0) +// #set heading(numbering: "A.1") +// #set-theorion-numbering("A.1") + +/// 6. Table of contents +// #outline(title: none, target: figure.where(kind: "theorem")) + += Theorion Environments + +== Table of Theorems + +#outline(title: none, target: figure.where(kind: "theorem")) + +== Basic Theorem Environments + +Let's start with the most fundamental definition. + +#definition[ + A natural number is called a #highlight[_prime number_] if it is greater than 1 + and cannot be written as the product of two smaller natural numbers. +] + +#example[ + The numbers $2$, $3$, and $17$ are prime. As proven in @cor:infinite-prime, + this list is far from complete! See @thm:euclid for the full proof. +] + +#theorem(title: "Euclid's Theorem")[ + There are infinitely many prime numbers. +] + +#proof[ + By contradiction: Suppose $p_1, p_2, dots, p_n$ is a finite enumeration of all primes. + Let $P = p_1 p_2 dots p_n$. Since $P + 1$ is not in our list, + it cannot be prime. Thus, some prime $p_j$ divides $P + 1$. + Since $p_j$ also divides $P$, it must divide their difference $(P + 1) - P = 1$, + a contradiction. +] + +#corollary[ + There is no largest prime number. +] + +#lemma[ + There are infinitely many composite numbers. +] + +== Functions and Continuity + +#theorem(title: "Continuity Theorem")[ + If a function $f$ is differentiable at every point, then $f$ is continuous. +] + +#tip-box[ + @thm:continuous tells us that differentiability implies continuity, + but not vice versa. For example, $f(x) = |x|$ is continuous but not differentiable at $x = 0$. + For a deeper understanding of continuous functions, see @thm:max-value in the appendix. +] + +== Geometric Theorems + +#theorem(title: "Pythagorean Theorem")[ + In a right triangle, the square of the hypotenuse equals the sum of squares of the other two sides: + $x^2 + y^2 = z^2$ +] + +#important-box[ + @thm:pythagoras is one of the most fundamental and important theorems in plane geometry, + bridging geometry and algebra. +] + +#corollary[ + There exists no right triangle with sides measuring 3cm, 4cm, and 6cm. + This directly follows from @thm:pythagoras. +] + +#lemma[ + Given two line segments of lengths $a$ and $b$, there exists a real number $r$ + such that $b = r a$. +] + +== Algebraic Structures + +#definition(title: "Ring")[ + Let $R$ be a non-empty set with two binary operations $+$ and $dot$, satisfying: + 1. $(R, +)$ is an abelian group + 2. $(R, dot)$ is a semigroup + 3. The distributive laws hold + Then $(R, +, dot)$ is called a ring. +] + +#proposition[ + Every field is a ring, but not every ring is a field. This concept builds upon @def:ring. +] + +#example[ + Consider @def:ring. The ring of integers $ZZ$ is not a field, as no elements except $plus.minus 1$ + have multiplicative inverses. +] + +/// Appendix +#counter(heading).update(0) +#set heading(numbering: "A.1") +#set-theorion-numbering("A.1") + += Theorion Appendices + +== Advanced Analysis + +#theorem(title: "Maximum Value Theorem")[ + A continuous function on a closed interval must attain both a maximum and a minimum value. +] + +#warning-box[ + Both conditions of this theorem are essential: + - The function must be continuous + - The domain must be a closed interval +] + +== Advanced Algebra Supplements + +#axiom(title: "Group Axioms")[ + A group $(G, \cdot)$ must satisfy: + 1. Closure + 2. Associativity + 3. Identity element exists + 4. Inverse elements exist +] + +#postulate(title: "Fundamental Theorem of Algebra")[ + Every non-zero polynomial with complex coefficients has a complex root. +] + +#remark[ + This theorem is also known as Gauss's theorem, as it was first rigorously proved by Gauss. +] + +== Common Problems and Solutions + +#problem[ + Prove: For any integer $n > 1$, there exists a sequence of $n$ consecutive composite numbers. +] + +#solution[ + Consider the sequence: $n! + 2, n! + 3, ..., n! + n$ + + For any $2 <= k <= n$, $n! + k$ is divisible by $k$ because: + $n! + k = k(n! / k + 1)$ + + Thus, this forms a sequence of $n-1$ consecutive composite numbers. +] + +#exercise[ + 1. Prove: The twin prime conjecture remains unproven. + 2. Try to explain why this problem is so difficult. +] + +#conclusion[ + Number theory contains many unsolved problems that appear deceptively simple + yet are profoundly complex. +] + +== Important Notes + +#note-box[ + Remember that mathematical proofs should be both rigorous and clear. + Clarity without rigor is insufficient, and rigor without clarity is ineffective. +] + +#caution-box[ + When dealing with infinite series, always verify convergence before discussing other properties. +] + +#quote-box[ + Mathematics is the queen of sciences, and number theory is the queen of mathematics. + — Gauss +] + +#emph-box[ + Chapter Summary: + - We introduced basic number theory concepts + - Proved several important theorems + - Demonstrated different types of mathematical environments +] + +== Restated Theorems + +// 1. Restate all theorems +#theorion-restate(filter: it => it.outlined and it.identifier == "theorem", render: it => it.render) +// 2. Restate all theorems with custom render function +// #theorion-restate( +// filter: it => it.outlined and it.identifier == "theorem", +// render: it => (prefix: none, title: "", full-title: auto, body) => block[#strong[#full-title.]#sym.space#emph(body)], +// ) +// 3. Restate a specific theorem +// #theorion-restate(filter: it => it.label == ) +``` + +## All Cosmos + +### 📄 Simple + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.simple: * +#show: show-theorion +``` + +[Customize from source code](cosmos/simple.typ) + +![image](https://github.com/user-attachments/assets/f1876cfb-1bc9-4edb-a19a-a1922a8babc0) + +### 🌈 Rainbow + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.rainbow: * +#show: show-theorion +``` + +[Customize from source code](cosmos/rainbow.typ) + +```typst +/// Custom color +#let theorem = theorem.with(fill: blue.darken(10%)) +#let theorem-box = theorem-box.with(fill: blue.darken(10%)) +``` + +![image](https://github.com/user-attachments/assets/5e6e29f9-c493-4e21-b14a-347f3ca83b99) + +### ☁️ Clouds + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.clouds: * +#show: show-theorion +``` + +[Customize from source code](cosmos/clouds.typ) + +```typst +/// Custom color +#let theorem = theorem.with(fill: blue.lighten(85%)) +#let theorem-box = theorem-box.with(fill: blue.lighten(85%)) + +/// Custom block style +#let theorem = theorem.with(radius: 0pt) +#let theorem-box = theorem-box.with(radius: 0pt) +``` + +![image](https://github.com/user-attachments/assets/1f0f280b-94f5-43b7-b685-d2998d867b58) + +### ✨ Fancy + +```typst +#import "@preview/theorion:0.4.1": * +#import cosmos.fancy: * +#show: show-theorion +``` + +[Customize from source code](cosmos/fancy.typ) + +```typst +/// Custom color +#set-primary-border-color(red) +#set-primary-body-color(red.lighten(95%)) +#set-primary-symbol[#sym.suit.diamond.filled] +``` + +![image](https://github.com/user-attachments/assets/a8938339-9510-4371-ae23-7f73a828c17d) + +### Contributing your cosmos + +Welcome to [open a pull request](htps://github.com/OrangeX4/typst-theorion/pulls) and contribute your beautiful cosmos to Theorion! + +## Experimental HTML Support + +Theorion provides experimental support for HTML rendering, allowing you to embed HTML elements within Typst documents. This feature is still under active development, and the external API is not exposed at this time. It is subject to change without notice and may have compatibility issues. + +![HTML Example](./examples/html.png) + +## Changelog + +### 0.4.1 + +- **URGENT FIX: fix display-number and support typst 0.14** +- feat(i18n): add polish translation [#21](https://github.com/OrangeX4/typst-theorion/pull/21) +- fix: add lower fn to fix upper-case text region [#22](https://github.com/OrangeX4/typst-theorion/pull/22) +- fix: bump octique version to 0.1.1 +- fix: allow multiple outline targets [#19](https://github.com/OrangeX4/typst-theorion/pull/19) + + + +### 0.4.0 + +- **feat: (Highlight): Experimental HTML Support** +- feat: `number` and `supplement` arguments to manually specify the number of a theorem/definition/... +- refactor: (Small breaking change) refactor `get-prefix(get-loc)` to `get-prefix(get-loc, number: auto, supplement: auto)` and refactor `get-full-title(get-loc, title)` to `get-full-title(prefix, title)`. +- feat: add Dutch translation +- feat: add direct label filter for theorion-restate +- fix: 100% width to center equations +- fix(fancy): feat some bugs for fancy cosmos + + +## Acknowledgements + +- Thanks [Johann Birnick](https://github.com/jbirnick) for [rich-counters](https://github.com/jbirnick/typst-rich-counters) +- Thanks [Satvik Saha](https://github.com/sahasatvik) for [ctheorems](https://github.com/sahasatvik/typst-theorems) +- Thanks [s15n](https://github.com/s15n) for [typst-thmbox](https://github.com/s15n/typst-thmbox) +- Thanks [0x6b](https://github.com/0x6b) for [octique](https://github.com/0x6b/typst-octique) +- Thanks [Pablo González Calderón](https://github.com/Pablo-Gonzalez-Calderon) for [showybox](https://github.com/Pablo-Gonzalez-Calderon/showybox-package) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/core.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/core.typ new file mode 100644 index 00000000000..a21eb61d4ae --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/core.typ @@ -0,0 +1,456 @@ +#import "i18n.typ": theorion-i18n, theorion-i18n-map + +/// A simple wrapper for the `state` function, inspired by React Hook. +#let use-state(key, init) = { + let used-state = state(key, init) + return ( + (..args) => { + let arg = args.pos().at(0, default: none) + if arg == none { + used-state.final() + } else if type(arg) == function { + used-state.at(arg()) + } else { + used-state.at(arg) + } + }, + value => used-state.update(value), + ) +} + +/// Global theorion numbering +#let (get-theorion-numbering, set-theorion-numbering) = use-state("theorion-numbering", "1.1") + +/// Code from: [jbirnick](https://github.com/jbirnick/typst-rich-counters) +/// Modified by: [OrangeX4](https://github.com/OrangeX4) +/// License: MIT +/// I need a patched version of `rich-counter` to support the `zero-fill` and `leading-zero` options. And we can update the arguments by set-inherited-levels, set-inherited-from, set-zero-fill, and set-leading-zero functions. + +/// Create a richer counter that can inherit from other counters and display the counter value. Returns a dictionary of functions to interact with the counter like `at`, `get-inherited-levels` and `set-inherited-levels`. +/// +/// - identifier (string): Unique identifier for the counter. +/// - inherited-levels (integer): Number of heading levels to inherit from. Default is 0, which will inherit from the inherited-from counter if it is a dictionary. +/// - inherited-from (counter): Counter to inherit from. Default is heading. +/// - zero-fill (boolean): Whether to zero-fill the numbering. Default is false. +/// - leading-zero (boolean): Whether to remove the leading zero. Default is false. +#let richer-counter( + identifier: none, + inherited-levels: 0, + inherited-from: heading, + zero-fill: false, + leading-zero: false, +) = { + // this can equip `headings` and similar objects with the richer-counter functions + // that are needed for recursive evaluation + let richer-wrapper(key) = { + let at(loc) = { + let cntr = counter(key) + if loc == none { cntr.final() } else { cntr.at(loc) } + } + let last-update-location(level, before-key) = { + if key == heading { + let occurrences = if before-key == none { query(selector(key)) } else { + query(selector(key).before(before-key)) + } + for occurrence in occurrences.rev() { + if occurrence.level <= level { + return occurrence.location() + } + } + } else { + // best guess: just take the last occurrence of the element + // WARNING: this can be wrong for certain elements, especially if Typst introduces more queryable/locatable elements + let occurrences = if before-key == none { query(selector(key)) } else { + query(selector(key).before(before-key)) + } + if occurrences.len() == 0 { + return none + } else { + return occurrences.last().location() + } + } + } + + return (at: at, get-inherited-levels: () => 0, last-update-location: last-update-location) + } + + // oop-style state management + let (get-inherited-from, set-inherited-from) = use-state("richer-inherited-from:" + identifier, inherited-from) + let richer-inherited-levels = state("richer-inherited-levels:" + identifier, inherited-levels) + let get-inherited-levels(..args) = { + // small hack to allow for inheritance of richer-counter + let arg = args.pos().at(0, default: none) + let value = if arg == none { + richer-inherited-levels.final() + } else { + richer-inherited-levels.at(arg) + } + if type(get-inherited-from()) == dictionary and value == 0 { + return (get-inherited-from().get-inherited-levels)() + 1 + } + return value + } + let set-inherited-levels(value) = richer-inherited-levels.update(value) + let (get-zero-fill, set-zero-fill) = use-state("richer-zero-fill:" + identifier, zero-fill) + let (get-leading-zero, set-leading-zero) = use-state("richer-leading-zero:" + identifier, leading-zero) + + // get the parent richer-counter + let parent-richer-counter() = if type(get-inherited-from(here())) == dictionary { + get-inherited-from(here()) + } else { + richer-wrapper(get-inherited-from(here())) + } + + // `step` method for this richer-counter + let step(depth: 1) = [ + #metadata(( + kind: "richer-counter:step", + identifier: identifier, + value: depth, + )) + #label("richer-counter:step:" + identifier) + ] + + // `update` method for this richer-counter + // only support array of integers as counter value + let update(counter-value) = [ + #metadata(( + kind: "richer-counter:update", + identifier: identifier, + value: counter-value, + )) + #label("richer-counter:update:" + identifier) + ] + + // find updates of own partial (!) counter in certain range + let updates-during(after-key, before-key) = { + let query-for = selector(label("richer-counter:step:" + identifier)).or(selector(label( + "richer-counter:update:" + identifier, + ))) + + if after-key == none and before-key == none { + return query(query-for) + } else if after-key == none { + return query(query-for.before(before-key)) + } else if before-key == none { + return query(query-for.after(after-key)) + } else { + return query(query-for.after(after-key).before(before-key)) + } + } + + // find last update of this total (!) counter up to a certain level and before a certain location + let last-update-location(level, before-key) = { + let parent-last-update-location = (parent-richer-counter().last-update-location)( + get-inherited-levels(here()), + before-key, + ) + let updates = updates-during(parent-last-update-location, before-key) + + for update in updates.rev() { + let kind = update.value.kind + if kind == "richer-counter:step" { + if update.value.value <= level - get-inherited-levels(here()) { + return update.location() + } + } else if kind == "richer-counter:update" { + if update.value.value.len() < level { + return update.location() + } + } + } + + return parent-last-update-location + } + + // compute value of the counter after the given updates, starting from 0 + let compute-counter(updates) = { + let value = (0,) + for update in updates { + let kind = update.value.kind + if kind == "richer-counter:step" { + let level = update.value.value + while value.len() < level { value.push(0) } + while value.len() > level { let _ = value.pop() } + value.at(level - 1) += 1 + } else if kind == "richer-counter:update" { + let inherited-levels = get-inherited-levels(here()) + let counter-value = update.value.value + counter-value = counter-value.slice(calc.min(inherited-levels, counter-value.len())) + value = if counter-value.len() == 0 { + (0,) + } else { + counter-value + } + } + } + + return value + } + + // `at` method for this richer-counter + let at(key) = { + // get inherited numbers + let num-parent = (parent-richer-counter().at)(key) + let inherited-levels = get-inherited-levels(here()) + while get-zero-fill(here()) and num-parent.len() < inherited-levels { num-parent.push(0) } + while num-parent.len() > inherited-levels { let _ = num-parent.pop() } + if not get-leading-zero(here()) and num-parent.at(0, default: none) == 0 { + num-parent = num-parent.slice(1) + } + + // get numbers of own partial counter + let updates = updates-during((parent-richer-counter().last-update-location)(inherited-levels, key), key) + let num-self = compute-counter(updates) + + return num-parent + num-self + } + + // `get` method for this richer-counter + let get() = { at(here()) } + + // `final` method for this richer-counter + let final() = { at(none) } + + // `display` method for this richer-counter + let display(..args) = { + if args.pos().len() == 0 { + numbering("1.1", ..get()) + } else { + numbering(args.pos().first(), ..get()) + } + } + + return ( + step: step, + update: update, + at: at, + get: get, + final: final, + display: display, + get-inherited-levels: get-inherited-levels, + set-inherited-levels: set-inherited-levels, + get-inherited-from: get-inherited-from, + set-inherited-from: set-inherited-from, + get-zero-fill: get-zero-fill, + set-zero-fill: set-zero-fill, + get-leading-zero: get-leading-zero, + set-leading-zero: set-leading-zero, + last-update-location: last-update-location, + ) +} + + +/// Display the numbering of a theorem environment +/// +/// - el (content): Figure element to display the numbering +#let theorion-display-number(el) = { + assert(type(el) == content and el.func() == figure, message: "The element must be a figure.") + // some magic to get the correct numbering + if el.numbering == none { + return "" + } else { + assert(type(el.numbering) == function, message: "The numbering must be a function with get-loc.") + let res = (el.numbering)(get-loc: () => el.location()) + if type(res) == dictionary { + assert( + "kind" in res and "value" in res and res.at("kind") == "static", + message: "The numbering function must return a dictionary with kind 'static'.", + ) + return res.at("value") + } else { + assert(type(res) == function, message: str(type(res))) + std.numbering(res) + } + } +} + + +/// Create a theorem environment based on richer-counter +/// +/// - identifier (string): Unique identifier for the counter and the kind of the frame +/// - supplement-map (string|dict): Label text or dictionary of labels for different languages +/// - counter (counter): Counter to use. Default is none, which creates a new counter based on the identifier +/// - inherited-levels (integer): Number of heading levels to inherit from. Default is 0 +/// - inherited-from (counter): Counter to inherit from. Default is heading +/// - numbering (string): Numbering format. Default is get-theorion-numbering +/// - render (function): Custom rendering function +/// -> (counter, render-fn, frame-fn, show-fn) +#let make-frame( + identifier, + supplement-map, + counter: none, + inherited-levels: 0, + inherited-from: heading, + numbering: get-theorion-numbering, + render: (prefix: none, title: "", full-title: "", body) => block[*#full-title*: #body], +) = { + let get-numbering = if type(numbering) != function { (..args) => numbering } else { numbering } + /// Counter for the frame. + let frame-counter = if counter != none { counter } else { + richer-counter( + identifier: identifier, + inherited-levels: inherited-levels, + inherited-from: inherited-from, + ) + } + let supplement-i18n = theorion-i18n(supplement-map) + let display-number(get-loc: here, .._args) = (counter: frame-counter, ..args) => context { + let loc = get-loc() + // We need to add 1 to the counter value. + let counter-value = if type(counter) == dictionary { + (counter.at)(loc) + } else { + counter.at(loc) + } + counter-value = counter-value.slice(0, -1) + (counter-value.at(-1) + 1,) + std.numbering(get-numbering(get-loc()), ..counter-value) + } + + /// Useful functions for the frame. + let get-prefix(get-loc, number: auto, supplement: auto) = [#if supplement == auto { supplement-i18n } else { + supplement + } #if number == auto { display-number(get-loc: get-loc)() } else { number }] + let get-full-title(prefix, title) = [#prefix#{ if title != "" [ (#title)] }] + /// Frame with the counter. + let frame( + title: "", + outlined: true, + numbering: display-number, + number: auto, + supplement: auto, + get-prefix: get-prefix, + get-full-title: get-full-title, + ..args, + body, + ) = figure( + kind: identifier, + supplement: if supplement == auto { supplement-i18n } else { supplement }, + caption: title, + outlined: outlined, + numbering: if number == auto { numbering } else { (..args) => (kind: "static", value: number) }, + { + [#metadata(( + identifier: identifier, + number: number, + supplement: supplement, + supplement-map: supplement-map, + supplement-i18n: supplement-i18n, + kind: identifier, + counter: frame-counter, + title: title, + numbering: numbering, + outlined: outlined, + get-prefix: get-prefix, + get-full-title: get-full-title, + render: render, + args: args, + body: body, + )) ] + let prefix = get-prefix(here, number: number, supplement: supplement) + render( + prefix: prefix, + title: title, + full-title: get-full-title(prefix, title), + ..args, + body, + ) + // Update the counter. + if numbering != none and number == auto { + (frame-counter.step)() + } + }, + ) + /// Frame without the counter. + let frame-box = frame.with( + numbering: none, + outlined: false, + get-prefix: (get-loc, number: auto, supplement: auto) => none, + get-full-title: (prefix, title) => title, + ) + /// Show rule for the frame. + let show-frame(body) = { + // skip the default figure style. + show figure.where(kind: identifier): set align(start) + show figure.where(kind: identifier): set block(breakable: true) + show figure.where(kind: identifier): it => it.body + // Custom outline for the theorem environment. + show outline: it => { + show outline.entry: entry => { + let el = entry.element + if el.func() == figure and el.kind == identifier { + block(link(el.location(), entry.indented( + [#el.supplement #context theorion-display-number(el)], + { + entry.body() + box(width: 1fr, inset: (x: .25em), entry.fill) + entry.page() + }, + gap: .5em, + ))) + } else { + entry + } + } + it + } + // Custom reference for the theorem environment. + show ref: it => { + let el = it.element + if el != none and el.func() == figure and el.kind == identifier { + link(el.location(), { + if it.supplement == auto { el.supplement } else { it.supplement } + " " + context theorion-display-number(el) + }) + } else { + it + } + } + body + } + return (frame-counter, frame-box, frame, show-frame) +} + + +/// Restate the theorion frame with a custom filter and render function. +/// +/// - filter (function): Filter function to select the frames to restate, such as `it => it.identifier == "theorem"` +/// - render (function): Custom rendering function for the frames, such as `it => it.render` or `it => (prefix: none, title: "", full-title: auto, body) => block[#strong[#full-title.]#sym.space#emph(body)]` +#let theorion-restate(filter: it => true, render: it => it.render) = context { + for el in query() { + let figure-el = query(selector(figure).before(el.location())).last() + let get-loc = () => el.location() + let it = el.value + assert(type(it) == dictionary, message: "The metadata must be a dictionary.") + it.get-loc = get-loc + it.el = figure-el + it.label = if figure-el.has("label") { figure-el.label } else { none } + let filter = if type(filter) == label { + it => it.label == filter + } else { + filter + } + if filter(it) { + let prefix = (it.get-prefix)(get-loc, number: it.number, supplement: it.supplement) + (render(it))( + prefix: prefix, + title: it.title, + full-title: (it.get-full-title)(prefix, it.title), + it.body, + ) + } + } +} + +/// Create a dictionary (right/left: value) based on `text.lang` +/// +/// - value (string): left value for LTR text, right value for RTL text +/// -> dictionary +#let language-aware-start(value) = { + if text.lang == "ar" { + (right: value) + } else { + (left: value) + } +} diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/clouds.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/clouds.typ new file mode 100644 index 00000000000..27ce5dad546 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/clouds.typ @@ -0,0 +1,146 @@ +#import "../core.typ": * + +/// A simple render function with a colored left border +#let render-fn( + fill: red, + prefix: none, + title: "", + full-title: auto, + ..args, + body, +) = { + // Main rendering + let rendered = block(inset: 1em, fill: fill, radius: .4em, width: 100%, ..args)[ + #if full-title != "" { + strong(full-title) + sym.space + } + #body + ] + if "html" in dictionary(std) { + // HTML rendering + context if target() == "html" { + html.elem("div", attrs: ( + style: "background: " + + fill.to-hex() + + "; border-radius: .4em; padding: 1em; width: 100%; box-sizing: border-box; margin-bottom: .5em;", + ))[ + #if full-title != "" { + strong(full-title) + sym.space.nobreak + sym.space.nobreak + } + #body + ] + } else { + rendered + } + } else { + rendered + } +} + + +// Core theorems +#let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( + "theorem", + theorion-i18n-map.at("theorem"), + inherited-levels: 2, + render: render-fn.with(fill: red.lighten(85%)), +) + +#let (lemma-counter, lemma-box, lemma, show-lemma) = make-frame( + "lemma", + theorion-i18n-map.at("lemma"), + counter: theorem-counter, + render: render-fn.with(fill: teal.lighten(85%)), +) + +#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame( + "corollary", + theorion-i18n-map.at("corollary"), + inherited-from: theorem-counter, + render: render-fn.with(fill: navy.lighten(90%)), +) + +// Definitions and foundations +#let (definition-counter, definition-box, definition, show-definition) = make-frame( + "definition", + theorion-i18n-map.at("definition"), + counter: theorem-counter, + render: render-fn.with(fill: olive.lighten(85%)), +) + +#let (axiom-counter, axiom-box, axiom, show-axiom) = make-frame( + "axiom", + theorion-i18n-map.at("axiom"), + counter: theorem-counter, + render: render-fn.with(fill: green.lighten(85%)), +) + +#let (postulate-counter, postulate-box, postulate, show-postulate) = make-frame( + "postulate", + theorion-i18n-map.at("postulate"), + counter: theorem-counter, + render: render-fn.with(fill: maroon.lighten(85%)), +) + +// Important results +#let (proposition-counter, proposition-box, proposition, show-proposition) = make-frame( + "proposition", + theorion-i18n-map.at("proposition"), + counter: theorem-counter, + render: render-fn.with(fill: blue.lighten(85%)), +) + +#let (assumption-counter, assumption-box, assumption, show-assumption) = make-frame( + "assumption", + theorion-i18n-map.at("assumption"), + counter: theorem-counter, + render: render-fn.with(fill: purple.lighten(85%)), +) + +#let (property-counter, property-box, property, show-property) = make-frame( + "property", + theorion-i18n-map.at("property"), + counter: theorem-counter, + render: render-fn.with(fill: eastern.lighten(85%)), +) + +#let (conjecture-counter, conjecture-box, conjecture, show-conjecture) = make-frame( + "conjecture", + theorion-i18n-map.at("conjecture"), + counter: theorem-counter, + render: render-fn.with(fill: navy.lighten(85%)), +) + +/// Collection of show rules for all theorem environments +/// Applies all theorion-related show rules to the document +/// +/// - body (content): Content to apply the rules to +/// -> content +#let show-theorion(body) = { + show: show-theorem + show: show-lemma + show: show-corollary + show: show-axiom + show: show-postulate + show: show-definition + show: show-proposition + show: show-assumption + show: show-property + show: show-conjecture + body +} + +/// Set the number of inherited levels for theorem environments +/// +/// - value (integer): Number of levels to inherit +#let set-inherited-levels(value) = (theorem-counter.set-inherited-levels)(value) + +/// Set the zero-fill option for theorem environments +/// +/// - value (boolean): Whether to zero-fill the numbering +#let set-zero-fill(value) = (theorem-counter.set-zero-fill)(value) + +/// Set the leading-zero option for theorem environments +/// +/// - value (boolean): Whether to include leading zeros in the numbering +#let set-leading-zero(value) = (theorem-counter.set-leading-zero)(value) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/cosmos.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/cosmos.typ new file mode 100644 index 00000000000..d1b95fad663 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/cosmos.typ @@ -0,0 +1,5 @@ +#import "default.typ" +#import "simple.typ" +#import "fancy.typ" +#import "rainbow.typ" +#import "clouds.typ" \ No newline at end of file diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/default.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/default.typ new file mode 100644 index 00000000000..a1c99b71263 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/default.typ @@ -0,0 +1,260 @@ +#import "../core.typ": * +#import "../deps.typ": octique-inline, showybox + +/// Global result configuration to control visibility of proofs and solutions +/// Modified by `#set-result("noanswer")` +/// - "answer": Show proofs and solutions (default) +/// - "noanswer": Hide proofs and solutions +#let (get-result, set-result) = use-state("theorion-result", "answer") + +/// Global QED symbol configuration +/// Modified by `#set-qed-symbol(sym.square.stroked)` +/// Default is `sym.square` +#let (get-qed-symbol, set-qed-symbol) = use-state("theorion-qed-symbol", sym.square) + +/// Create an example environment with italic title +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Example" +/// - body (content): Content of the example +/// -> content +#let example( + title: theorion-i18n-map.at("example"), + body, +) = [#emph(theorion-i18n(title)).#sym.space#body] + + +/// Create a problem environment with italic title +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Problem" +/// - body (content): Content of the problem +/// -> content +#let problem( + title: theorion-i18n-map.at("problem"), + body, +) = [#emph(theorion-i18n(title)).#sym.space#body] + +/// Create a solution environment with italic title +/// Can be hidden using #set-result("noanswer") +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Solution" +/// - body (content): Content of the solution +/// -> content +#let solution( + title: theorion-i18n-map.at("solution"), + body, +) = context if get-result(here()) == "noanswer" { none } else [#emph(theorion-i18n(title)).#sym.space#body] + +/// Create a conclusion environment with italic title +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Conclusion" +/// - body (content): Content of the conclusion +/// -> content +#let conclusion( + title: theorion-i18n-map.at("conclusion"), + body, +) = [#emph(theorion-i18n(title)).#sym.space#body] + +/// Create an exercise environment with italic title +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Exercise" +/// - body (content): Content of the exercise +/// -> content +#let exercise( + title: theorion-i18n-map.at("exercise"), + body, +) = [#emph(theorion-i18n(title)).#sym.space#body] + +/// Create a proof environment with italic title and QED symbol +/// Can be hidden using #set-result("noanswer") +/// Uses global QED symbol set by #set-qed-symbol() +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Proof" +/// - qed (symbol): Symbol to use for end of proof. Default is from global setting +/// - body (content): Content of the proof +/// -> content +#let proof( + title: theorion-i18n-map.at("proof"), + qed: auto, + body, +) = context if get-result(here()) == "noanswer" { none } else { + let qed-symbol = if qed == auto { get-qed-symbol(here()) } else { qed } + [#emph(theorion-i18n(title)).#sym.space#body#box(width: 0em)#h(1fr)#sym.wj#sym.space.nobreak$#qed-symbol$] +} + +/// Create an emphasized box with yellow styling and dashed border +/// +/// - body (content): Content of the box +/// -> content +#let emph-box(body, breakable: false) = { + // Main rendering + let rendered = showybox( + frame: ( + dash: "dashed", + border-color: yellow.darken(30%), + body-color: yellow.lighten(90%), + ), + sep: (dash: "dashed"), + breakable: breakable, + body, + ) + if "html" in dictionary(std) { + // HTML rendering + context if target() == "html" { + html.elem( + "div", + attrs: ( + style: "background: #FFFDEB; border: .1em dashed #E3C000; border-radius: .4em; padding: .25em 1em; width: 100%; box-sizing: border-box; margin: .5em 0em;", + ), + body, + ) + } else { + rendered + } + } else { + rendered + } +} + +/// Create a quote box with start border styling in gray +/// +/// - body (content): Content to be quoted +/// -> content +#let quote-box(..args, body) = context { + // HTML rendering + if "html" in dictionary(std) and target() == "html" { + html.elem( + "div", + attrs: ( + style: "border-inline-start: .25em solid #C8C8C8; padding: .1em 1em; width: 100%; box-sizing: border-box; margin-bottom: .5em; color: #646464;", + ), + body, + ) + } else { + // Main rendering + block(stroke: language-aware-start(.25em + luma(200)), inset: language-aware-start(1em) + (y: .75em), ..args, text( + luma(100), + body, + )) + } +} + +/// Create a note box with customizable styling and icon +/// Base template for tip-box, important-box, warning-box, and caution-box +/// +/// - fill (color): Color of the border and icon. Default is `rgb("#0969DA")` +/// - title (string|dict): Title text or dictionary for i18n. Default is "Note" +/// - icon-name (string): Name of the icon to display from octicons set +/// - body (content): Content of the note +/// -> content +#let note-box( + fill: rgb("#0969DA"), + title: theorion-i18n-map.at("note"), + icon-name: "info", + ..args, + body, +) = context { + let title-i18n = theorion-i18n(title) + // HTML rendering + if "html" in dictionary(std) and target() == "html" { + html.elem( + "div", + attrs: ( + style: "border-inline-start: .25em solid " + + fill.to-hex() + + "; padding: .1em 1em; width: 100%; box-sizing: border-box; margin-bottom: .5em;", + ), + { + html.elem( + "p", + attrs: ( + style: "margin-top: .5em; font-weight: bold; color: " + + fill.to-hex() + + "; display: flex; align-items: center;", + ), + html.elem( + "span", + attrs: ( + style: "display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; vertical-align: middle; margin: 0em .5em 0em 0em;", + ), + html.frame(octique-inline( + height: 1.2em, + width: 1.2em, + color: fill, + baseline: .2em, + icon-name, + )), + ) + + title-i18n, + ) + body + }, + ) + } else { + // Main rendering + block( + stroke: language-aware-start(.25em + fill), + inset: language-aware-start(1em) + (top: .5em, bottom: .75em), + width: 100%, + ..args, + { + block(sticky: true, text( + fill: fill, + weight: "semibold", + octique-inline( + height: 1.2em, + width: 1.2em, + color: fill, + baseline: .2em, + icon-name, + ) + + h(.5em) + + title-i18n, + )) + body + }, + ) + } +} + +/// Create a tip box with green styling and light bulb icon +/// Useful for helpful suggestions and tips +#let tip-box = note-box.with( + fill: rgb("#1A7F37"), + title: theorion-i18n-map.at("tip"), + icon-name: "light-bulb", +) + +/// Create an important box with purple styling and report icon +/// Useful for highlighting key information +#let important-box = note-box.with( + fill: rgb("#8250DF"), + title: theorion-i18n-map.at("important"), + icon-name: "report", +) + +/// Create a warning box with amber styling and alert icon +/// Useful for potential issues or warnings +#let warning-box = note-box.with( + fill: rgb("#9A6700"), + title: theorion-i18n-map.at("warning"), + icon-name: "alert", +) + +/// Create a caution box with red styling and stop icon +/// Useful for serious warnings or dangerous situations +#let caution-box = note-box.with( + fill: rgb("#CF222E"), + title: theorion-i18n-map.at("caution"), + icon-name: "stop", +) + +/// Create a remark environment +/// +/// - title (string|dict): Title text or dictionary for i18n. Default is "Remark" +/// - body (content): Content of the remark +/// -> content +#let remark = note-box.with( + fill: rgb("#118D8D"), + title: theorion-i18n-map.at("remark"), + icon-name: "comment", +) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/fancy.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/fancy.typ new file mode 100644 index 00000000000..13a0ef56a44 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/fancy.typ @@ -0,0 +1,242 @@ +#import "../core.typ": * +#import "../deps.typ": showybox + +/// A fancy box design inspired by elegantbook style. +/// +/// - get-border-color (function): Color of the box border. Default is `loc => orange.darken(0%)`. +/// - get-body-color (function): Color of the box background. Default is `loc => orange.lighten(95%)`. +/// - get-symbol (function): Symbol to display at bottom right. Default is `loc => sym.suit.heart.stroked`. +/// - prefix (content): Prefix text before the title. Default is `none`. +/// - title (string): Title of the box. Default is empty string. +/// - full-title (auto|content): Complete title including prefix. Default is `auto`. +/// - body (content): Content of the box. +/// -> content +#let fancy-box( + get-border-color: loc => orange.darken(0%), + get-body-color: loc => orange.lighten(95%), + get-symbol: loc => sym.suit.heart.stroked, + prefix: none, + title: "", + full-title: auto, + breakable: false, + html-width: 720pt, + ..args, + body, +) = context { + // Main rendering + let rendered = showybox( + frame: ( + thickness: .05em, + radius: .3em, + inset: (x: 1.2em, top: if full-title != "" { .7em } else { 1.2em }, bottom: 1.2em), + border-color: get-border-color(here()), + title-color: get-border-color(here()), + body-color: get-body-color(here()), + title-inset: (x: 1em, y: .5em), + ), + title-style: ( + boxed-style: ( + anchor: (x: start, y: horizon), + radius: 0em, + ), + color: white, + weight: "semibold", + ), + breakable: breakable, + title: { + if full-title == auto { + if prefix != none { + [#prefix (#title)] + } else { + title + } + } else { + full-title + } + }, + ..args, + { + body + if get-symbol(here()) != none { + place(end + bottom, dy: .8em, dx: .9em, text(size: .6em, fill: get-border-color(here()), get-symbol(here()))) + } + }, + ) + if "html" in dictionary(std) and target() == "html" { + html.elem("div", attrs: (style: "margin-bottom: .5em;"), html.frame(block(width: html-width, rendered))) + } else { + rendered + } +} + +/// Register global colors. +#let (get-primary-border-color, set-primary-border-color) = use-state("fancy-primary-border-color", green.darken(30%)) +#let (get-primary-body-color, set-primary-body-color) = use-state("fancy-primary-body-color", green.lighten(95%)) +#let (get-secondary-border-color, set-secondary-border-color) = use-state("fancy-secondary-border-color", orange.darken( + 0%, +)) +#let (get-secondary-body-color, set-secondary-body-color) = use-state("fancy-secondary-body-color", orange.lighten(95%)) +#let (get-tertiary-border-color, set-tertiary-border-color) = use-state("fancy-tertiary-border-color", blue.darken(30%)) +#let (get-tertiary-body-color, set-tertiary-body-color) = use-state("fancy-tertiary-body-color", blue.lighten(95%)) + +/// Register global symbols. +#let (get-primary-symbol, set-primary-symbol) = use-state( + "fancy-primary-symbol", + sym.suit.club.filled, +) +#let (get-secondary-symbol, set-secondary-symbol) = use-state( + "fancy-secondary-symbol", + sym.suit.heart.stroked, +) +#let (get-tertiary-symbol, set-tertiary-symbol) = use-state( + "fancy-tertiary-symbol", + sym.suit.spade.filled, +) + + +/// Create corresponding theorem box. +#let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( + "theorem", + theorion-i18n-map.at("theorem"), + inherited-levels: 2, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +#let (lemma-counter, lemma-box, lemma, show-lemma) = make-frame( + "lemma", + theorion-i18n-map.at("lemma"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame( + "corollary", + theorion-i18n-map.at("corollary"), + inherited-from: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-symbol: get-secondary-symbol, + get-body-color: get-secondary-body-color, + ), +) + +#let (axiom-counter, axiom-box, axiom, show-axiom) = make-frame( + "axiom", + theorion-i18n-map.at("axiom"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +#let (postulate-counter, postulate-box, postulate, show-postulate) = make-frame( + "postulate", + theorion-i18n-map.at("postulate"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +#let (definition-counter, definition-box, definition, show-definition) = make-frame( + "definition", + theorion-i18n-map.at("definition"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-primary-border-color, + get-body-color: get-primary-body-color, + get-symbol: get-primary-symbol, + ), +) + +#let (proposition-counter, proposition-box, proposition, show-proposition) = make-frame( + "proposition", + theorion-i18n-map.at("proposition"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-tertiary-border-color, + get-body-color: get-tertiary-body-color, + get-symbol: get-tertiary-symbol, + ), +) + +#let (assumption-counter, assumption-box, assumption, show-assumption) = make-frame( + "assumption", + theorion-i18n-map.at("assumption"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +#let (property-counter, property-box, property, show-property) = make-frame( + "property", + theorion-i18n-map.at("property"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-tertiary-border-color, + get-body-color: get-tertiary-body-color, + get-symbol: get-tertiary-symbol, + ), +) + +#let (conjecture-counter, conjecture-box, conjecture, show-conjecture) = make-frame( + "conjecture", + theorion-i18n-map.at("conjecture"), + counter: theorem-counter, + render: fancy-box.with( + get-border-color: get-secondary-border-color, + get-body-color: get-secondary-body-color, + get-symbol: get-secondary-symbol, + ), +) + +/// Collection of show rules for all theorem environments +/// Applies all theorion-related show rules to the document +/// +/// - body (content): Content to apply the rules to +/// -> content +#let show-theorion(body) = { + show: show-theorem + show: show-lemma + show: show-corollary + show: show-axiom + show: show-postulate + show: show-definition + show: show-proposition + show: show-assumption + show: show-property + show: show-conjecture + body +} + + +/// Set the number of inherited levels for theorem environments +/// +/// - value (integer): Number of levels to inherit +#let set-inherited-levels(value) = (theorem-counter.set-inherited-levels)(value) + + +/// Set the zero-fill option for theorem environments +/// +/// - value (boolean): Whether to zero-fill the numbering +#let set-zero-fill(value) = (theorem-counter.set-zero-fill)(value) + +/// Set the leading-zero option for theorem environments +/// +/// - value (boolean): Whether to include leading zeros in the numbering +#let set-leading-zero(value) = (theorem-counter.set-leading-zero)(value) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/rainbow.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/rainbow.typ new file mode 100644 index 00000000000..1c5cb0d6378 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/rainbow.typ @@ -0,0 +1,152 @@ +#import "../core.typ": * + +/// A simple render function with a colored start border +#let render-fn( + fill: red, + prefix: none, + title: "", + full-title: auto, + ..args, + body, +) = context { + // HTML rendering + if "html" in dictionary(std) and target() == "html" { + html.elem("div", attrs: ( + style: "border-inline-start: .25em solid " + + fill.to-hex() + + "; padding: .1em 1em; width: 100%; box-sizing: border-box; margin-bottom: .5em;", + ))[ + #if full-title != "" { + html.elem( + "p", + attrs: ( + style: "margin-top: .5em; font-weight: bold; color: " + fill.to-hex() + ";", + ), + full-title, + ) + } + #body + ] + } else { + // Main rendering + block( + stroke: language-aware-start(.25em + fill), + inset: language-aware-start(1em) + (y: .75em), + width: 100%, + ..args, + [ + #if full-title != "" { + block(sticky: true, strong(text(fill: fill, full-title))) + } + #body + ], + ) + } +} + +// Core theorems +#let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( + "theorem", + theorion-i18n-map.at("theorem"), + inherited-levels: 2, + render: render-fn.with(fill: red.darken(20%)), +) + +#let (lemma-counter, lemma-box, lemma, show-lemma) = make-frame( + "lemma", + theorion-i18n-map.at("lemma"), + counter: theorem-counter, + render: render-fn.with(fill: teal.darken(10%)), +) + +#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame( + "corollary", + theorion-i18n-map.at("corollary"), + inherited-from: theorem-counter, + render: render-fn.with(fill: fuchsia.darken(10%)), +) + +// Definitions and foundations +#let (definition-counter, definition-box, definition, show-definition) = make-frame( + "definition", + theorion-i18n-map.at("definition"), + counter: theorem-counter, + render: render-fn.with(fill: orange), +) + +#let (axiom-counter, axiom-box, axiom, show-axiom) = make-frame( + "axiom", + theorion-i18n-map.at("axiom"), + counter: theorem-counter, + render: render-fn.with(fill: green.darken(20%)), +) + +#let (postulate-counter, postulate-box, postulate, show-postulate) = make-frame( + "postulate", + theorion-i18n-map.at("postulate"), + counter: theorem-counter, + render: render-fn.with(fill: maroon), +) + +// Important results +#let (proposition-counter, proposition-box, proposition, show-proposition) = make-frame( + "proposition", + theorion-i18n-map.at("proposition"), + counter: theorem-counter, + render: render-fn.with(fill: blue.darken(10%)), +) + +#let (assumption-counter, assumption-box, assumption, show-assumption) = make-frame( + "assumption", + theorion-i18n-map.at("assumption"), + counter: theorem-counter, + render: render-fn.with(fill: purple.darken(10%)), +) + +#let (property-counter, property-box, property, show-property) = make-frame( + "property", + theorion-i18n-map.at("property"), + counter: theorem-counter, + render: render-fn.with(fill: eastern.darken(10%)), +) + +#let (conjecture-counter, conjecture-box, conjecture, show-conjecture) = make-frame( + "conjecture", + theorion-i18n-map.at("conjecture"), + counter: theorem-counter, + render: render-fn.with(fill: navy.darken(10%)), +) + +/// Collection of show rules for all theorem environments +/// Applies all theorion-related show rules to the document +/// +/// - body (content): Content to apply the rules to +/// -> content +#let show-theorion(body) = { + show: show-theorem + show: show-lemma + show: show-corollary + show: show-axiom + show: show-postulate + show: show-definition + show: show-proposition + show: show-assumption + show: show-property + show: show-conjecture + body +} + +/// Set the number of inherited levels for theorem environments +/// +/// - value (integer): Number of levels to inherit +#let set-inherited-levels(value) = (theorem-counter.set-inherited-levels)(value) + +/// Set the zero-fill option for theorem environments +/// +/// - value (boolean): Whether to zero-fill the numbering +#let set-zero-fill(value) = (theorem-counter.set-zero-fill)(value) + +/// Set the leading-zero option for theorem environments +/// +/// - value (boolean): Whether to include leading zeros in the numbering +#let set-leading-zero(value) = (theorem-counter.set-leading-zero)(value) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/simple.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/simple.typ new file mode 100644 index 00000000000..d5c3d918e74 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/cosmos/simple.typ @@ -0,0 +1,122 @@ +#import "../core.typ": * + +/// A simple render function +#let render-fn( + prefix: none, + title: "", + full-title: auto, + body, +) = { + if full-title != "" { + strong[#full-title.] + sym.space + } + emph(body) + parbreak() +} + +/// Create corresponding theorem box. +#let (theorem-counter, theorem-box, theorem, show-theorem) = make-frame( + "theorem", + theorion-i18n-map.at("theorem"), + inherited-levels: 2, + render: render-fn, +) + +#let (lemma-counter, lemma-box, lemma, show-lemma) = make-frame( + "lemma", + theorion-i18n-map.at("lemma"), + counter: theorem-counter, + render: render-fn, +) + +#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame( + "corollary", + theorion-i18n-map.at("corollary"), + inherited-from: theorem-counter, + render: render-fn, +) + +#let (axiom-counter, axiom-box, axiom, show-axiom) = make-frame( + "axiom", + theorion-i18n-map.at("axiom"), + counter: theorem-counter, + render: render-fn, +) + +#let (postulate-counter, postulate-box, postulate, show-postulate) = make-frame( + "postulate", + theorion-i18n-map.at("postulate"), + counter: theorem-counter, + render: render-fn, +) + +#let (definition-counter, definition-box, definition, show-definition) = make-frame( + "definition", + theorion-i18n-map.at("definition"), + counter: theorem-counter, + render: render-fn, +) + +#let (proposition-counter, proposition-box, proposition, show-proposition) = make-frame( + "proposition", + theorion-i18n-map.at("proposition"), + counter: theorem-counter, + render: render-fn, +) + +#let (assumption-counter, assumption-box, assumption, show-assumption) = make-frame( + "assumption", + theorion-i18n-map.at("assumption"), + counter: theorem-counter, + render: render-fn, +) + +#let (property-counter, property-box, property, show-property) = make-frame( + "property", + theorion-i18n-map.at("property"), + counter: theorem-counter, + render: render-fn, +) + +#let (conjecture-counter, conjecture-box, conjecture, show-conjecture) = make-frame( + "conjecture", + theorion-i18n-map.at("conjecture"), + counter: theorem-counter, + render: render-fn, +) + +/// Collection of show rules for all theorem environments +/// Applies all theorion-related show rules to the document +/// +/// - body (content): Content to apply the rules to +/// -> content +#let show-theorion(body) = { + show: show-theorem + show: show-lemma + show: show-corollary + show: show-axiom + show: show-postulate + show: show-definition + show: show-proposition + show: show-assumption + show: show-property + show: show-conjecture + body +} + + +/// Set the number of inherited levels for theorem environments +/// +/// - value (integer): Number of levels to inherit +#let set-inherited-levels(value) = (theorem-counter.set-inherited-levels)(value) + + +/// Set the zero-fill option for theorem environments +/// +/// - value (boolean): Whether to zero-fill the numbering +#let set-zero-fill(value) = (theorem-counter.set-zero-fill)(value) + +/// Set the leading-zero option for theorem environments +/// +/// - value (boolean): Whether to include leading zeros in the numbering +#let set-leading-zero(value) = (theorem-counter.set-leading-zero)(value) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/deps.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/deps.typ new file mode 100644 index 00000000000..3cd44fe23ee --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/deps.typ @@ -0,0 +1,2 @@ +#import "@preview/showybox:2.0.4": showybox +#import "@preview/octique:0.1.1": octique-inline diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/i18n.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/i18n.typ new file mode 100644 index 00000000000..558a23160fa --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/i18n.typ @@ -0,0 +1,407 @@ +#let theorion-i18n(map) = { + if type(map) != dictionary { + return map + } + return context { + let value = map + if "en" in map { + if type(map.at("en")) != dictionary { + value = map.at("en") + } else { + value = map.at("en").values().at(0, default: value) + } + } + if text.lang == none { + return value + } + if text.lang in map { + if type(map.at(text.lang)) != dictionary { + value = map.at(text.lang) + } else { + if text.region != none and lower(text.region) in map.at(text.lang) { + value = map.at(text.lang).at(lower(text.region)) + } else { + value = map.at(text.lang).values().at(0, default: value) + } + } + } + return value + } +} + +#let theorion-i18n-map = ( + theorem: ( + en: (us: "Theorem", gb: "Theorem"), + zh: (cn: "定理", hk: "定理", tw: "定理"), + de: (de: "Theorem", at: "Theorem", ch: "Theorem"), + fr: (fr: "Théorème", ca: "Théorème", ch: "Théorème"), + es: (es: "Teorema", mx: "Teorema"), + pt: (pt: "Teorema", br: "Teorema"), + ca: "Teorema", + ja: "定理", + ko: "정리", + nl: "Stelling", // Theorema + ru: "Теорема", + ar: "مبرهنة", + it: "Teorema", + vi: "Định lý", + pl: "Twierdzenie", + ), + lemma: ( + en: (us: "Lemma", gb: "Lemma"), + zh: (cn: "引理", hk: "引理", tw: "引理"), + de: (de: "Lemma", at: "Lemma", ch: "Lemma"), + fr: (fr: "Lemme", ca: "Lemme", ch: "Lemme"), + es: (es: "Lema", mx: "Lema"), + pt: (pt: "Lema", br: "Lema"), + ca: "Lema", + ja: "補題", + ko: "보조정리", + nl: "Hulpstelling", // Lemma + ru: "Лемма", + ar: "تمهيدية", + it: "Lemma", + vi: "Bổ đề", + pl: "Lemat", + ), + corollary: ( + en: (us: "Corollary", gb: "Corollary"), + zh: (cn: "推论", hk: "推論", tw: "推論"), + de: (de: "Korollar", at: "Korollar", ch: "Korollar"), + fr: (fr: "Corollaire", ca: "Corollaire", ch: "Corollaire"), + es: (es: "Corolario", mx: "Corolario"), + pt: (pt: "Corolário", br: "Corolário"), + ca: "Corol·lari", + ja: "系", + ko: "따름정리", + nl: "Gevolg", // Corollarium + ru: "Следствие", + ar: "نتيجة", + it: "Corollario", + vi: "Hệ quả", + pl: "Wniosek", + ), + note: ( + en: (us: "Note", gb: "Note"), + zh: (cn: "注意", hk: "注意", tw: "注意"), + de: (de: "Anmerkung", at: "Anmerkung", ch: "Anmerkung"), + fr: (fr: "Note", ca: "Note", ch: "Note"), + es: (es: "Nota", mx: "Nota"), + pt: (pt: "Nota", br: "Nota"), + ca: "Nota", + ja: "注意", + ko: "주의", + nl: "Aantekening", // Toelichting, Noot, Merk op + ru: "Примечание", + ar: "ملاحظة", + it: "Osservazione", + vi: "Ghi chú", + pl: "Dopisek", + ), + warning: ( + en: (us: "Warning", gb: "Warning"), + zh: (cn: "警告", hk: "警告", tw: "警告"), + de: (de: "Warnung", at: "Warnung", ch: "Warnung"), + fr: (fr: "Avertissement", ca: "Avertissement", ch: "Avertissement"), + es: (es: "Advertencia", mx: "Advertencia"), + pt: (pt: "Aviso", br: "Aviso"), + ca: "Avís", + ja: "警告", + ko: "경고", + nl: "Waarschuwing", + ru: "Предупреждение", + ar: "تحذير", + it: "Avvertenza", + vi: "Cảnh báo", + pl: "Uwaga", + ), + definition: ( + en: (us: "Definition", gb: "Definition"), + zh: (cn: "定义", hk: "定義", tw: "定義"), + de: (de: "Definition", at: "Definition", ch: "Definition"), + fr: (fr: "Définition", ca: "Définition", ch: "Définition"), + es: (es: "Definición", mx: "Definición"), + pt: (pt: "Definição", br: "Definição"), + ca: "Definició", + ja: "定義", + ko: "정의", + nl: "Definitie", + ru: "Определение", + ar: "تعريف", + it: "Definizione", + vi: "Định nghĩa", + pl: "Definicja", + ), + axiom: ( + en: (us: "Axiom", gb: "Axiom"), + zh: (cn: "公理", hk: "公理", tw: "公理"), + de: (de: "Axiom", at: "Axiom", ch: "Axiom"), + fr: (fr: "Axiome", ca: "Axiome", ch: "Axiome"), + es: (es: "Axioma", mx: "Axioma"), + pt: (pt: "Axioma", br: "Axioma"), + ca: "Axioma", + ja: "公理", + ko: "공리", + nl: "Axioma", + ru: "Аксиома", + ar: "مسلمة", + it: "Assioma", + vi: "Tiên đề", + pl: "Aksjomat", + ), + postulate: ( + en: (us: "Postulate", gb: "Postulate"), + zh: (cn: "公设", hk: "公設", tw: "公設"), + de: (de: "Postulat", at: "Postulat", ch: "Postulat"), + fr: (fr: "Postulat", ca: "Postulat", ch: "Postulat"), + es: (es: "Postulado", mx: "Postulado"), + pt: (pt: "Postulado", br: "Postulado"), + ca: "Postulat", + ja: "要請", + ko: "공준", + nl: "Postulaat", + ru: "Постулат", + ar: "بديهية", + it: "Postulato", + vi: "Định đề", + pl: "Postulat", + ), + proposition: ( + en: (us: "Proposition", gb: "Proposition"), + zh: (cn: "命题", hk: "命題", tw: "命題"), + de: (de: "Proposition", at: "Proposition", ch: "Proposition"), + fr: (fr: "Proposition", ca: "Proposition", ch: "Proposition"), + es: (es: "Proposición", mx: "Proposición"), + pt: (pt: "Proposição", br: "Proposição"), + ca: "Proposició", + ja: "命題", + ko: "명제", + nl: "Propositie", // Bewering + ru: "Предложение", + ar: "مقترح", + it: "Proposizione", + vi: "Mệnh đề", + pl: "Propozycja", + ), + example: ( + en: (us: "Example", gb: "Example"), + zh: (cn: "例", hk: "例", tw: "例"), + de: (de: "Beispiel", at: "Beispiel", ch: "Beispiel"), + fr: (fr: "Exemple", ca: "Exemple", ch: "Exemple"), + es: (es: "Ejemplo", mx: "Ejemplo"), + pt: (pt: "Exemplo", br: "Exemplo"), + ca: "Exemple", + ja: "例", + ko: "예", + nl: "Voorbeeld", + ru: "Пример", + ar: "مثال", + it: "Esempio", + vi: "Ví dụ", + pl: "Przyklad", + ), + problem: ( + en: (us: "Problem", gb: "Problem"), + zh: (cn: "问题", hk: "問題", tw: "問題"), + de: (de: "Problem", at: "Problem", ch: "Problem"), + fr: (fr: "Problème", ca: "Problème", ch: "Problème"), + es: (es: "Problema", mx: "Problema"), + pt: (pt: "Problema", br: "Problema"), + ca: "Problema", + ja: "問題", + ko: "문제", + nl: "Probleemstelling", // Probleem, Vraagstuk, Opgave + ru: "Задача", + ar: "مسألة", + it: "Problema", + vi: "Bài toán", + pl: "Zadanie", + ), + exercise: ( + en: (us: "Exercise", gb: "Exercise"), + zh: (cn: "练习", hk: "練習", tw: "練習"), + de: (de: "Übung", at: "Übung", ch: "Übung"), + fr: (fr: "Exercice", ca: "Exercice", ch: "Exercice"), + es: (es: "Ejercicio", mx: "Ejercicio"), + pt: (pt: "Exercício", br: "Exercício"), + ca: "Exercici", + ja: "演習", + ko: "연습", + nl: "Oefening", + ru: "Упражнение", + ar: "تمرين", + it: "Esercizio", + vi: "Bài tập", + pl: "Ćwiczenie", + ), + conclusion: ( + en: (us: "Conclusion", gb: "Conclusion"), + zh: (cn: "结论", hk: "結論", tw: "結論"), + de: (de: "Schlussfolgerung", at: "Schlussfolgerung", ch: "Schlussfolgerung"), + fr: (fr: "Conclusion", ca: "Conclusion", ch: "Conclusion"), + es: (es: "Conclusión", mx: "Conclusión"), + pt: (pt: "Conclusão", br: "Conclusão"), + ca: "Conclusió", + ja: "結論", + ko: "결론", + nl: "Besluit", // Conclusie, Gevolgtrekking + ru: "Вывод", + ar: "استنتاج", + it: "Conclusione", + vi: "Kết luận", + pl: "Wniosek", + ), + assumption: ( + en: (us: "Assumption", gb: "Assumption"), + zh: (cn: "假设", hk: "假設", tw: "假設"), + de: (de: "Annahme", at: "Annahme", ch: "Annahme"), + fr: (fr: "Hypothèse", ca: "Hypothèse", ch: "Hypothèse"), + es: (es: "Suposición", mx: "Suposición"), + pt: (pt: "Suposição", br: "Suposição"), + ca: "Hipòtesi", + ja: "仮定", + ko: "가정", + nl: "Aanname", // Veronderstelling, Hypothese + ru: "Предположение", + ar: "فرضية", + it: "Ipotesi", + vi: "Giả sử", + pl: "Założenie", + ), + property: ( + en: (us: "Property", gb: "Property"), + zh: (cn: "性质", hk: "性質", tw: "性質"), + de: (de: "Eigenschaft", at: "Eigenschaft", ch: "Eigenschaft"), + fr: (fr: "Propriété", ca: "Propriété", ch: "Propriété"), + es: (es: "Propiedad", mx: "Propiedad"), + pt: (pt: "Propriedade", br: "Propriedade"), + ca: "Propietat", + ja: "性質", + ko: "성질", + nl: "Eigenschap", + ru: "Свойство", + ar: "خاصية", + it: "Proprietà", + vi: "Tính chất", + pl: "Własność", + ), + remark: ( + en: (us: "Remark", gb: "Remark"), + zh: (cn: "注解", hk: "注解", tw: "注解"), + de: (de: "Bemerkung", at: "Bemerkung", ch: "Bemerkung"), + fr: (fr: "Remarque", ca: "Remarque", ch: "Remarque"), + es: (es: "Observación", mx: "Observación"), + pt: (pt: "Observação", br: "Observação"), + ca: "Observació", + ja: "注意", + ko: "비고", + nl: "Opmerking", // Merk op, Bemerk, Kanttekening + ru: "Замечание", + ar: "ملاحظة", + it: "Osservazione", + vi: "Nhận xét", + pl: "Obserwacja", + ), + solution: ( + en: (us: "Solution", gb: "Solution"), + zh: (cn: "解", hk: "解", tw: "解"), + de: (de: "Lösung", at: "Lösung", ch: "Lösung"), + fr: (fr: "Solution", ca: "Solution", ch: "Solution"), + es: (es: "Solución", mx: "Solución"), + pt: (pt: "Solução", br: "Solução"), + ca: "Solució", + ja: "解", + ko: "풀이", + nl: "Oplossing", + ru: "Решение", + ar: "حل", + it: "Soluzione", + vi: "Lời giải", + pl: "Rozwiązanie", + ), + proof: ( + en: (us: "Proof", gb: "Proof"), + zh: (cn: "证明", hk: "證明", tw: "證明"), + de: (de: "Beweis", at: "Beweis", ch: "Beweis"), + fr: (fr: "Démonstration", ca: "Démonstration", ch: "Démonstration"), + es: (es: "Demostración", mx: "Demostración"), + pt: (pt: "Demonstração", br: "Demonstração"), + ca: "Demostració", + ja: "証明", + ko: "증명", + nl: "Bewijs", + ru: "Доказательство", + ar: "برهان", + it: "Dimostrazione", + vi: "Chứng minh", + pl: "Dowód", + ), + tip: ( + en: (us: "Tip", gb: "Tip"), + zh: (cn: "提示", hk: "提示", tw: "提示"), + de: (de: "Hinweis", at: "Hinweis", ch: "Hinweis"), + fr: (fr: "Conseil", ca: "Conseil", ch: "Conseil"), + es: (es: "Consejo", mx: "Consejo"), + pt: (pt: "Dica", br: "Dica"), + ca: "Consell", + ja: "ヒント", + ko: "팁", + nl: "Hint", // Tip + ru: "Подсказка", + ar: "نصيحة", + it: "Suggerimento", + vi: "Mẹo", + pl: "Wskazówka", + ), + important: ( + en: (us: "Important", gb: "Important"), + zh: (cn: "重要", hk: "重要", tw: "重要"), + de: (de: "Wichtig", at: "Wichtig", ch: "Wichtig"), + fr: (fr: "Important", ca: "Important", ch: "Important"), + es: (es: "Importante", mx: "Importante"), + pt: (pt: "Importante", br: "Importante"), + ca: "Important", + ja: "重要", + ko: "중요", + nl: "Belangrijk", + ru: "Важно", + ar: "هام", + it: "Importante", + vi: "Quan trọng", + pl: "Ważne", + ), + conjecture: ( + en: (us: "Conjecture", gb: "Conjecture"), + zh: (cn: "猜想", hk: "猜想", tw: "猜想"), + de: (de: "Vermutung", at: "Vermutung", ch: "Vermutung"), + fr: (fr: "Conjecture", ca: "Conjecture", ch: "Conjecture"), + es: (es: "Conjetura", mx: "Conjetura"), + pt: (pt: "Conjectura", br: "Conjectura"), + ca: "Conjectura", + ja: "予想", + ko: "추측", + nl: "Conjectuur", + ru: "Гипотеза", + ar: "تخمين", + it: "Congettura", + vi: "Giả thuyết", + pl: "Przypuszczenie", + ), + caution: ( + en: (us: "Caution", gb: "Caution"), + zh: (cn: "小心", hk: "小心", tw: "小心"), + de: (de: "Vorsicht", at: "Vorsicht", ch: "Vorsicht"), + fr: (fr: "Attention", ca: "Attention", ch: "Attention"), + es: (es: "Precaución", mx: "Precaución"), + pt: (pt: "Cuidado", br: "Cuidado"), + ca: "Precaució", + ja: "注意", + ko: "주의", + nl: "Opgepast", // Aandacht, Voorzichting, Let op + ru: "Осторожно", + ar: "احتراس", + it: "Attenzione", + vi: "Chú ý", + pl: "Uwaga", + ), +) diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/lib.typ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/lib.typ new file mode 100644 index 00000000000..42e5be0d639 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/lib.typ @@ -0,0 +1,4 @@ +#import "core.typ": richer-counter, make-frame, theorion-i18n, theorion-i18n-map +#import "cosmos/cosmos.typ" +#import cosmos.default: * +#import cosmos.simple: * diff --git a/src/resources/formats/typst/packages/preview/theorion/0.4.1/typst.toml b/src/resources/formats/typst/packages/preview/theorion/0.4.1/typst.toml new file mode 100644 index 00000000000..ec8c9c3e7eb --- /dev/null +++ b/src/resources/formats/typst/packages/preview/theorion/0.4.1/typst.toml @@ -0,0 +1,13 @@ +[package] +name = "theorion" +version = "0.4.1" +entrypoint = "lib.typ" +authors = ["OrangeX4"] +license = "MIT" +description = "Out-of-the-box, customizable and multilingual theorem environment package." +repository = "https://github.com/OrangeX4/typst-theorion" +keywords = ["theorem", "corollary", "lemma", "html", "environment", "math", "box", "multilingual", "boxes", "colorful"] +disciplines = ["computer-science", "engineering", "mathematics", "physics", "education"] +categories = ["components"] +compiler = "0.13.0" +exclude = ["examples"] \ No newline at end of file diff --git a/src/resources/formats/typst/pandoc/quarto/definitions.typ b/src/resources/formats/typst/pandoc/quarto/definitions.typ index 49531d5da9d..161469dac46 100644 --- a/src/resources/formats/typst/pandoc/quarto/definitions.typ +++ b/src/resources/formats/typst/pandoc/quarto/definitions.typ @@ -78,7 +78,6 @@ label: none, supplement: str, position: none, - subrefnumbering: "1a", subcapnumbering: "(a)", body, ) = { @@ -91,7 +90,10 @@ supplement: supplement, caption: caption, { - show figure.where(kind: kind): set figure(numbering: _ => numbering(subrefnumbering, n-super, quartosubfloatcounter.get().first() + 1)) + show figure.where(kind: kind): set figure(numbering: _ => { + let subfloat-idx = quartosubfloatcounter.get().first() + 1 + subfloat-numbering(n-super, subfloat-idx) + }) show figure.where(kind: kind): set figure.caption(position: position) show figure: it => { @@ -139,10 +141,13 @@ } // TODO use custom separator if available + // Use the figure's counter display which handles chapter-based numbering + // (when numbering is a function that includes the heading counter) + let callout_num = it.counter.display(it.numbering) let new_title = if empty(old_title) { - [#kind #it.counter.display()] + [#kind #callout_num] } else { - [#kind #it.counter.display(): #old_title] + [#kind #callout_num: #old_title] } let new_title_block = block_with_new_content( diff --git a/src/resources/formats/typst/pandoc/quarto/numbering.typ b/src/resources/formats/typst/pandoc/quarto/numbering.typ new file mode 100644 index 00000000000..e65286bee6a --- /dev/null +++ b/src/resources/formats/typst/pandoc/quarto/numbering.typ @@ -0,0 +1,23 @@ +// Simple numbering for non-book documents +#let equation-numbering = "(1)" +#let callout-numbering = "1" +#let subfloat-numbering(n-super, subfloat-idx) = { + numbering("1a", n-super, subfloat-idx) +} + +// Theorem configuration for theorion +// Simple numbering for non-book documents (no heading inheritance) +#let theorem-inherited-levels = 0 + +// Theorem numbering format (can be overridden by extensions for appendix support) +// This function returns the numbering pattern to use +#let theorem-numbering(loc) = "1.1" + +// Default theorem render function +#let theorem-render(prefix: none, title: "", full-title: auto, body) = { + if full-title != "" and full-title != auto and full-title != none { + strong[#full-title.] + h(0.5em) + } + body +} diff --git a/src/resources/formats/typst/pandoc/quarto/template.typ b/src/resources/formats/typst/pandoc/quarto/template.typ index e6485ff8636..0c9d99e137f 100644 --- a/src/resources/formats/typst/pandoc/quarto/template.typ +++ b/src/resources/formats/typst/pandoc/quarto/template.typ @@ -1,3 +1,5 @@ +$numbering.typ()$ + $definitions.typ()$ $typst-template.typ()$ diff --git a/src/resources/lua-types/quarto/doc.lua b/src/resources/lua-types/quarto/doc.lua index 36f278813a2..3da0e8e5eae 100644 --- a/src/resources/lua-types/quarto/doc.lua +++ b/src/resources/lua-types/quarto/doc.lua @@ -107,3 +107,50 @@ if this render is in the context of a project (otherwise `nil`) ]] ---@return string|nil function quarto.doc.project_output_file() end + +--[[ +Returns the current file metadata state for book projects. + +This provides access to book-specific information like the current file's +role in the book structure. The returned table contains: +- `file`: Table with `bookItemType` ("chapter", "part", "appendix"), + `bookItemNumber`, `bookItemDepth`, and `appendix` (boolean) +- `appendix`: Boolean indicating if currently in appendix section +- `include_directory`: Directory for includes + +Note: This function requires `quarto.utils.file_metadata_filter()` to be +combined with your filter using `quarto.utils.combineFilters()` for the +metadata to be properly populated during traversal. +]] +---@return table|nil File metadata state or nil if not in a book context +function quarto.doc.file_metadata() end + +--[[ +Language settings for the current document. + +Provides access to localized strings for document elements like section titles. +For example, `quarto.doc.language["section-title-appendices"]` returns the +localized title for the appendices section (e.g., "Appendices" in English). + +Returns `nil` if no language settings are available. +]] +---@type table|nil +quarto.doc.language = nil + +--[[ +Cross-reference category definitions. + +Provides access to all crossref categories including built-in types (figures, +tables, equations) and custom types defined by the document. Each category +includes properties like `ref_type`, `kind` ("float" or "Block"), and `name`. + +Use `quarto.doc.crossref.categories.all` to iterate over all categories. + +This is useful for extensions that need to generate counter resets or +other category-specific code dynamically. +]] +---@type table +quarto.doc.crossref = {} + +---@type table[] +quarto.doc.crossref.categories = {} diff --git a/src/resources/lua-types/quarto/utils.lua b/src/resources/lua-types/quarto/utils.lua index c95135be6ab..cd92c02fbf7 100644 --- a/src/resources/lua-types/quarto/utils.lua +++ b/src/resources/lua-types/quarto/utils.lua @@ -37,3 +37,35 @@ syntax in the string. ---@param path string String to be converted ---@return pandoc.Blocks function quarto.utils.string_to_blocks(path) end + +--[[ +Returns a filter that parses book metadata markers during document traversal. + +When combined with your filter using `combineFilters()`, this enables access +to book-specific metadata like `bookItemType`, `bookItemNumber`, etc. through +`quarto.doc.file_metadata()`. + +This is primarily useful for Typst book extensions that need to handle +parts and appendices differently based on the book structure. +]] +---@return table Pandoc filter table +function quarto.utils.file_metadata_filter() end + +--[[ +Combines multiple Pandoc filters into a single filter for one traversal. + +This is useful when your extension filter needs to run alongside another +filter (like `file_metadata_filter()`) in a single document traversal, +ensuring proper state synchronization. + +Example: +```lua +return quarto.utils.combineFilters({ + quarto.utils.file_metadata_filter(), + my_header_filter +}) +``` +]] +---@param filters table[] Array of Pandoc filter tables to combine +---@return table Combined Pandoc filter table +function quarto.utils.combineFilters(filters) end diff --git a/src/resources/pandoc/datadir/init.lua b/src/resources/pandoc/datadir/init.lua index dd052fa1a76..28aaedfb3c2 100644 --- a/src/resources/pandoc/datadir/init.lua +++ b/src/resources/pandoc/datadir/init.lua @@ -959,7 +959,8 @@ quarto = { output_file = outputFile(), input_file = inputFile(), - crossref = {} + crossref = {}, + language = param("language", nil) }, project = { directory = projectDirectory(), diff --git a/src/resources/schema/definitions.yml b/src/resources/schema/definitions.yml index e1240ac3689..47027fbb646 100644 --- a/src/resources/schema/definitions.yml +++ b/src/resources/schema/definitions.yml @@ -27,6 +27,19 @@ values: [null] hidden: true +- id: filter-entry-point + enum: + [ + pre-ast, + post-ast, + pre-quarto, + post-quarto, + pre-render, + post-render, + pre-finalize, + post-finalize, + ] + - id: pandoc-format-filters arrayOf: anyOf: @@ -41,15 +54,7 @@ type: string path: path at: - enum: - [ - pre-ast, - post-ast, - pre-quarto, - post-quarto, - pre-render, - post-render, - ] + ref: filter-entry-point required: [path, at] - record: type: diff --git a/src/resources/schema/document-toc.yml b/src/resources/schema/document-toc.yml index 24b98717a6a..9f1c658ad26 100644 --- a/src/resources/schema/document-toc.yml +++ b/src/resources/schema/document-toc.yml @@ -71,12 +71,12 @@ schema: boolean default: false tags: - formats: [$pdf-all] + formats: [$pdf-all, typst] description: Print a list of figures in the document. - name: lot schema: boolean default: false tags: - formats: [$pdf-all] + formats: [$pdf-all, typst] description: Print a list of tables in the document. diff --git a/src/resources/schema/document-typst.yml b/src/resources/schema/document-typst.yml index 15ccc0f864d..ea867ac2dfe 100644 --- a/src/resources/schema/document-typst.yml +++ b/src/resources/schema/document-typst.yml @@ -28,3 +28,18 @@ use `margin` and `grid` options instead; these values are computed automatically. User-specified values override the computed defaults. + +- name: theorem-appearance + schema: + enum: [simple, fancy, clouds, rainbow] + default: simple + tags: + formats: [typst] + description: + short: "Visual style for theorem environments in Typst output." + long: | + Controls how theorems, lemmas, definitions, etc. are rendered: + - `simple`: Plain text with bold title and italic body (default) + - `fancy`: Colored boxes using brand colors + - `clouds`: Rounded colored background boxes + - `rainbow`: Colored left border with colored title diff --git a/src/resources/schema/extension.yml b/src/resources/schema/extension.yml index 0f0ce39ef15..04925ec691c 100644 --- a/src/resources/schema/extension.yml +++ b/src/resources/schema/extension.yml @@ -22,7 +22,17 @@ shortcodes: arrayOf: path filters: - arrayOf: path + arrayOf: + anyOf: + - path + - object: + properties: + path: + schema: path + at: + ref: filter-entry-point + required: + - path formats: schema: object engines: diff --git a/src/resources/schema/json-schemas.json b/src/resources/schema/json-schemas.json index 887f5c78248..d952c59e244 100644 --- a/src/resources/schema/json-schemas.json +++ b/src/resources/schema/json-schemas.json @@ -59,6 +59,18 @@ } ] }, + "FilterEntryPoint": { + "enum": [ + "pre-ast", + "post-ast", + "pre-quarto", + "post-quarto", + "pre-render", + "post-render", + "pre-finalize", + "post-finalize" + ] + }, "PandocFormatFilters": { "type": "array", "items": { @@ -88,14 +100,7 @@ "type": "string" }, "at": { - "enum": [ - "pre-ast", - "post-ast", - "pre-quarto", - "post-quarto", - "pre-render", - "post-render" - ] + "$ref": "#/$defs/FilterEntryPoint" } } } diff --git a/src/resources/types/schema-types.ts b/src/resources/types/schema-types.ts index ef248cf5459..323e2ee74f4 100644 --- a/src/resources/types/schema-types.ts +++ b/src/resources/types/schema-types.ts @@ -25,14 +25,18 @@ export type PandocFormatRequestHeaders = ((string)[])[]; export type PandocFormatOutputFile = string | null; +export type FilterEntryPoint = + | "pre-ast" + | "post-ast" + | "pre-quarto" + | "post-quarto" + | "pre-render" + | "post-render" + | "pre-finalize" + | "post-finalize"; + export type PandocFormatFilters = ((string | { path: string; type?: string } | { - at: - | "pre-ast" - | "post-ast" - | "pre-quarto" - | "post-quarto" - | "pre-render" - | "post-render"; + at: FilterEntryPoint; path: string; type?: string; } | { type: "citeproc" }))[]; diff --git a/src/resources/types/zod/schema-types.ts b/src/resources/types/zod/schema-types.ts index 1454047165d..be13d1e652c 100644 --- a/src/resources/types/zod/schema-types.ts +++ b/src/resources/types/zod/schema-types.ts @@ -38,6 +38,19 @@ export const ZodPandocFormatRequestHeaders = z.array(z.array(z.string())); export const ZodPandocFormatOutputFile = z.union([z.string(), z.literal(null)]); +export const ZodFilterEntryPoint = z.enum( + [ + "pre-ast", + "post-ast", + "pre-quarto", + "post-quarto", + "pre-render", + "post-render", + "pre-finalize", + "post-finalize", + ] as const, +); + export const ZodPandocFormatFilters = z.array( z.union([ z.string(), @@ -46,16 +59,7 @@ export const ZodPandocFormatFilters = z.array( z.object({ type: z.string(), path: z.string(), - at: z.enum( - [ - "pre-ast", - "post-ast", - "pre-quarto", - "post-quarto", - "pre-render", - "post-render", - ] as const, - ), + at: z.lazy(() => ZodFilterEntryPoint), }).passthrough().partial().required({ path: true, at: true }), z.object({ type: z.enum(["citeproc"] as const) }).strict(), ]), @@ -1833,6 +1837,8 @@ export type PandocFormatRequestHeaders = z.infer< export type PandocFormatOutputFile = z.infer; +export type FilterEntryPoint = z.infer; + export type PandocFormatFilters = z.infer; export type PandocShortcodes = z.infer; @@ -2079,6 +2085,7 @@ export const Zod = { MathMethods: ZodMathMethods, PandocFormatRequestHeaders: ZodPandocFormatRequestHeaders, PandocFormatOutputFile: ZodPandocFormatOutputFile, + FilterEntryPoint: ZodFilterEntryPoint, PandocFormatFilters: ZodPandocFormatFilters, PandocShortcodes: ZodPandocShortcodes, PageColumn: ZodPageColumn, diff --git a/tests/docs/books/simple/.gitignore b/tests/docs/books/simple/.gitignore index 075b2542afb..0e3521a7d0f 100644 --- a/tests/docs/books/simple/.gitignore +++ b/tests/docs/books/simple/.gitignore @@ -1 +1,3 @@ /.quarto/ + +**/*.quarto_ipynb diff --git a/tests/docs/books/visualization-curriculum/.gitignore b/tests/docs/books/visualization-curriculum/.gitignore index 075b2542afb..0e3521a7d0f 100644 --- a/tests/docs/books/visualization-curriculum/.gitignore +++ b/tests/docs/books/visualization-curriculum/.gitignore @@ -1 +1,3 @@ /.quarto/ + +**/*.quarto_ipynb diff --git a/tests/docs/smoke-all/crossrefs/equations/equations-alt.qmd b/tests/docs/smoke-all/crossrefs/equations/equations-alt.qmd index ec3a922f2b1..9a19db7c9fd 100644 --- a/tests/docs/smoke-all/crossrefs/equations/equations-alt.qmd +++ b/tests/docs/smoke-all/crossrefs/equations/equations-alt.qmd @@ -39,13 +39,13 @@ _quarto: typst: ensureTypstFileRegexMatches: - - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", \\[ \\$ E = m c\\^2 \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"Einsteins mass-energy equivalence equation\", \\[ \\$ E = m c\\^2 \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"Einsteins mass-energy equivalence equation\", \\[ \\$ E = m c\\^2 \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"Newton's second law of motion\", \\[ \\$ F = m a \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"The \\\\\"Pythagorean\\\\\" theorem\", \\[ \\$ a\\^2 \\+ b\\^2 = c\\^2 \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"This is using \\\\\"quotes\\\\\" but I'm sure it works\", \\[ \\$ x \\+ y = z \\$ \\]\\)" - - "#math\\.equation\\(block: true, numbering: \"\\(1\\)\", alt: \"This is using 'single quotes' around the \\\\\"quotes\\\\\" but I'm sure it works\", \\[ \\$ x \\+ y = z \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, \\[ \\$ E = m c\\^2 \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"Einsteins mass-energy equivalence equation\", \\[ \\$ E = m c\\^2 \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"Einsteins mass-energy equivalence equation\", \\[ \\$ E = m c\\^2 \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"Newton's second law of motion\", \\[ \\$ F = m a \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"The \\\\\"Pythagorean\\\\\" theorem\", \\[ \\$ a\\^2 \\+ b\\^2 = c\\^2 \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"This is using \\\\\"quotes\\\\\" but I'm sure it works\", \\[ \\$ x \\+ y = z \\$ \\]\\)" + - "#math\\.equation\\(block: true, numbering: equation-numbering, alt: \"This is using 'single quotes' around the \\\\\"quotes\\\\\" but I'm sure it works\", \\[ \\$ x \\+ y = z \\$ \\]\\)" - [] --- diff --git a/tests/docs/smoke-all/crossrefs/float/typst/typst-float-caption-formatting-1.qmd b/tests/docs/smoke-all/crossrefs/float/typst/typst-float-caption-formatting-1.qmd index 2da6ed36115..399d2734821 100644 --- a/tests/docs/smoke-all/crossrefs/float/typst/typst-float-caption-formatting-1.qmd +++ b/tests/docs/smoke-all/crossrefs/float/typst/typst-float-caption-formatting-1.qmd @@ -6,9 +6,9 @@ _quarto: tests: typst: ensureTypstFileRegexMatches: - - + - - "Customers #emph\\[query\\]" - - '#figure\(\[[\s]+#set align\(left\)' # FIXME: change if we manage center in typst's template + - '#show figure\.where\(kind: "quarto-float-lst"\): set align\(start\)' # Listings use show rule for alignment --- diff --git a/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-1.qmd b/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-1.qmd index 3ac30a4d8c9..b8f34b48b69 100644 --- a/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-1.qmd +++ b/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-1.qmd @@ -6,8 +6,10 @@ _quarto: tests: typst: ensureTypstFileRegexMatches: - - - - '#figure\(\[\s+#set align\(left\)\s+#Skylighting' + - + # Listings now use a show rule for alignment instead of inline #set align + - '#show figure\.where\(kind: "quarto-float-lst"\): set align\(start\)' + - '#figure\(\[\s*\n#Skylighting' - 'kind: "quarto-float-lst"' - '#ref\(, supplement: \[Listing\]\)' - 'Customers Query' diff --git a/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-2.qmd b/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-2.qmd index 77ad5f23e5b..75849c0c86d 100644 --- a/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-2.qmd +++ b/tests/docs/smoke-all/crossrefs/float/typst/typst-listings-2.qmd @@ -6,8 +6,10 @@ _quarto: tests: typst: ensureTypstFileRegexMatches: - - - - '#figure\(\[\s+#set align\(left\)\s+#Skylighting' + - + # Listings now use a show rule for alignment instead of inline #set align + - '#show figure\.where\(kind: "quarto-float-lst"\): set align\(start\)' + - '#figure\(\[\s*\n#Skylighting' - 'kind: "quarto-float-lst"' - '#ref\(, supplement: \[Listing\]\)' - 'Customers Query' diff --git a/tests/docs/smoke-all/crossrefs/theorem/algorithm.qmd b/tests/docs/smoke-all/crossrefs/theorem/algorithm.qmd index 3df6e707adf..ec74ab178e0 100644 --- a/tests/docs/smoke-all/crossrefs/theorem/algorithm.qmd +++ b/tests/docs/smoke-all/crossrefs/theorem/algorithm.qmd @@ -19,10 +19,10 @@ _quarto: - [] typst: ensureTypstFileRegexMatches: - - + - - "#ref\\(, supplement: \\[alg.\\]\\)" - "#ref\\(, supplement: \\[Alg.\\]\\)" - - "#algorithm\\(\"Euclid\"\\)" + - "#algorithm\\(title: \"Euclid\"\\)" - [] markdown: ensureFileRegexMatches: diff --git a/tests/docs/smoke-all/crossrefs/theorem/lemma-1.qmd b/tests/docs/smoke-all/crossrefs/theorem/lemma-1.qmd index dde405023e5..e0dcfdb7931 100644 --- a/tests/docs/smoke-all/crossrefs/theorem/lemma-1.qmd +++ b/tests/docs/smoke-all/crossrefs/theorem/lemma-1.qmd @@ -18,9 +18,9 @@ _quarto: - [] typst: ensureTypstFileRegexMatches: - - + - - "#ref\\(, supplement: \\[Lemma\\]\\)" - - "#lemma\\(\"Line\"\\)" + - "#lemma\\(title: \"Line\"\\)" - [] markdown: ensureFileRegexMatches: diff --git a/tests/docs/smoke-all/crossrefs/theorem/theorem-1.qmd b/tests/docs/smoke-all/crossrefs/theorem/theorem-1.qmd index 62f3b67a6f3..81c3510732c 100644 --- a/tests/docs/smoke-all/crossrefs/theorem/theorem-1.qmd +++ b/tests/docs/smoke-all/crossrefs/theorem/theorem-1.qmd @@ -19,10 +19,14 @@ _quarto: - [] typst: ensureTypstFileRegexMatches: - - + - - "#ref\\(, supplement: \\[Theorem\\]\\)" - - "#theorem\\(\"Line\"\\)" - - [] + - "#theorem\\(title: \"Line\"\\)" + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame" + - "simple-theorem-render" + - + - "cosmos" + - "fancy-box" markdown: ensureFileRegexMatches: - diff --git a/tests/docs/smoke-all/crossrefs/theorem/theorem-2.qmd b/tests/docs/smoke-all/crossrefs/theorem/theorem-2.qmd index d1a5d3275ac..fbeb47c3217 100644 --- a/tests/docs/smoke-all/crossrefs/theorem/theorem-2.qmd +++ b/tests/docs/smoke-all/crossrefs/theorem/theorem-2.qmd @@ -19,11 +19,10 @@ _quarto: - [] typst: ensureTypstFileRegexMatches: - - + - - "#ref\\(, supplement: \\[Theorem\\]\\)" - "#theorem\\(\\)" - - - - "#theorem\\(\"\"\\)" + - [] markdown: ensureFileRegexMatches: - diff --git a/tests/docs/smoke-all/typst/brand-yaml/color/nobrand/brand-color.qmd b/tests/docs/smoke-all/typst/brand-yaml/color/nobrand/brand-color.qmd index d3d9e9c9fe2..fd5411d4bfa 100644 --- a/tests/docs/smoke-all/typst/brand-yaml/color/nobrand/brand-color.qmd +++ b/tests/docs/smoke-all/typst/brand-yaml/color/nobrand/brand-color.qmd @@ -7,9 +7,9 @@ _quarto: tests: typst: ensureTypstFileRegexMatches: - - [] - - - 'brand-color' + - '#let brand-color = \(:\)' + - '#let brand-color-background = \(:\)' --- ::: {.callout-note} diff --git a/tests/docs/smoke-all/typst/code-listing-alignment.qmd b/tests/docs/smoke-all/typst/code-listing-alignment.qmd new file mode 100644 index 00000000000..84aeeb70f6b --- /dev/null +++ b/tests/docs/smoke-all/typst/code-listing-alignment.qmd @@ -0,0 +1,26 @@ +--- +title: Code Listing Alignment Test +format: typst +_quarto: + tests: + typst: + ensurePdfTextPositions: + - # Code listing should be left-aligned with body text + # NOTE: Subject must be text at the START of a line because + # ensurePdfTextPositions uses word positions, not semantic containers. + # A proper fix would walk the PDF structure tree to find the + # parent container and aggregate its bounds. + - subject: "CODESTART_func():" + relation: leftAligned + object: "BODYTEXT_ALIGN_MARKER" + tolerance: 5 +--- + +BODYTEXT_ALIGN_MARKER is body text that should left-align with code listings. + +```{#lst-test .python lst-cap="Test Listing"} +CODESTART_func(): + print("Hello, World!") +``` + +See @lst-test for the test listing. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd index 63e6fe78798..f15d7944cf9 100644 --- a/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd @@ -20,6 +20,16 @@ _quarto: - subject: "MARGIN-NOTE-LISTING" relation: rightOf object: "Full Width Listing" + # Listing caption should be left-aligned with body text (not centered) + - subject: "FULLWIDTH-CSS-STYLES" + relation: leftAligned + object: "This tests code listings" + tolerance: 10 + # Full-page listing code should be near left page edge (within body margin) + - subject: "docker" + relation: leftAligned + object: { role: "Page", page: 1, edge: "left" } + tolerance: 50 # Body margin ~47pt from page edge - # Negative: fullwidth listing caption NOT rightOf margin note - subject: "FULLWIDTH-CSS-STYLES" relation: rightOf diff --git a/tests/docs/smoke-all/typst/orange-book-margin/.gitignore b/tests/docs/smoke-all/typst/orange-book-margin/.gitignore new file mode 100644 index 00000000000..5d34a00bb3a --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/.gitignore @@ -0,0 +1,5 @@ +/.quarto/ +/_book/ +/index.typ +**/*.quarto_ipynb +*_files/ diff --git a/tests/docs/smoke-all/typst/orange-book-margin/_brand.yml b/tests/docs/smoke-all/typst/orange-book-margin/_brand.yml new file mode 100644 index 00000000000..e9b43f3e6a5 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/_brand.yml @@ -0,0 +1,10 @@ +color: + primary: "#6B8E6B" + secondary: "#2E86AB" + +logo: + images: + test-logo: + path: logo.svg + alt: "Test Logo" + medium: test-logo diff --git a/tests/docs/smoke-all/typst/orange-book-margin/_quarto.yml b/tests/docs/smoke-all/typst/orange-book-margin/_quarto.yml new file mode 100644 index 00000000000..11569f18bb0 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/_quarto.yml @@ -0,0 +1,38 @@ +project: + type: book + +book: + title: "Test Typst Book with Margins" + author: "Test Author" + date: "2024-01-01" + chapters: + - index.qmd + - part: "Part I: Getting Started" + chapters: + - chapter1.qmd + - part: "Part II: Advanced Topics" + chapters: + - chapter2.qmd + - chapter3.qmd + appendices: + - appendix.qmd + - appendix-b.qmd + +bibliography: references.bib +reference-location: margin +citation-location: margin +suppress-bibliography: true + +grid: + margin-width: 2in + gutter-width: 0.25in + +crossref: + custom: + - kind: float + key: dino + reference-prefix: Dinosaur + +format: + typst: + keep-typ: true diff --git a/tests/docs/smoke-all/typst/orange-book-margin/appendix-b.qmd b/tests/docs/smoke-all/typst/orange-book-margin/appendix-b.qmd new file mode 100644 index 00000000000..bc9fa6ac407 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/appendix-b.qmd @@ -0,0 +1,105 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Supplementary Data {#sec-supplementary} + +This is the second appendix containing supplementary data and additional examples. + +## Appendix B Margin Figures {#sec-appendix-b-margin-figures} + +Secondaria body text introduces the supplementary margin content. + +::: {.column-margin} +![Databvisual supplementary data](logo.svg){#fig-appendix-b-margin} +::: + +Graphica diagram in @fig-appendix-b-margin demonstrates second appendix margin figure numbering. + +## Additional Figures {#sec-additional-figures} + +::: {#fig-appendix-b-panel layout-ncol=2} + +![Third appendix panel](logo.svg){#fig-appendix-b-panel-a} + +![Fourth appendix panel](logo.svg){#fig-appendix-b-panel-b} + +A panel of sub-figures in Appendix B demonstrating B-prefix numbering. +::: + +Secundaria panel in @fig-appendix-b-panel, with @fig-appendix-b-panel-a and @fig-appendix-b-panel-b as components. + +## Appendix B Margin Tables {#sec-appendix-b-margin-tables} + +Metrica body text introduces additional supplementary data. + +::: {.column-margin} +| Parameter | Unit | +|-----------|------| +| Mass | kg | +| Length | m | +| Time | s | + +: Unitaria values {#tbl-appendix-b-margin} +::: + +Dimensiona units in @tbl-appendix-b-margin demonstrate Appendix B margin table placement. + +## Additional Callouts {#sec-additional-callouts} + +::: {#wrn-appendix-b .callout-warning} +## Appendix B Warning +Pericula secundaria hazard documented here. Monitoria reference in @wrn-appendix-b. +::: + +Exegesis body text explicates supplementary guidance. + +::: {#tip-appendix-b .callout-tip .column-margin} +## Appendix B Tip +Gnomicon: Consilia secundaria guidance provided here. Advisoria reference in @tip-appendix-b. +::: + +## Additional Dinosaurs {#sec-additional-dinosaurs} + +::: {#dino-appendix-b} +**Brachiosaurus** + +Sauropoda giganta specimen documented here. Brachiosaura reference in @dino-appendix-b. +::: + +## Appendix B Margin Dinosaurs {#sec-appendix-b-margin-dinosaurs} + +::: {#dino-appendix-b-margin .column-margin} +**Parasaura** + +This crested dinosaur demonstrates Appendix B margin placement. +::: + +Hadrosaura body text discusses the margin dinosaur placement. + +## Appendix B Margin Equations {#sec-appendix-b-margin-equations} + +Magnetica body text introduces additional supplementary mathematics. + +::: {.column-margin} +$$ +\nabla \times \vec{B} = \mu_0 \vec{J} + \mu_0 \epsilon_0 \frac{\partial \vec{E}}{\partial t} +$$ {#eq-appendix-b-margin} + +Maxwelliana field law. +::: + +Electromagnetica law in @eq-appendix-b-margin demonstrates Appendix B margin equation placement. + +## Cross-references {#sec-appendix-b-crossrefs} + +Retrospecta from Appendix A: compositia panel in @fig-appendix-panel. + +Marginala from Appendix A: orbitala diagram in @fig-appendix-margin. + +Foundationa content: carnivorica @dino-trex from @sec-intro and beveragia @wrn-tea. + +Marginala from Chapter 1: copernicana @fig-margin-orbital and keplerian @lst-margin-kepler. diff --git a/tests/docs/smoke-all/typst/orange-book-margin/appendix.qmd b/tests/docs/smoke-all/typst/orange-book-margin/appendix.qmd new file mode 100644 index 00000000000..6efbd00bfa9 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/appendix.qmd @@ -0,0 +1,165 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Additional Resources {#sec-resources} + +This appendix contains additional resources and supplementary material. + +## Data Sources {#sec-data-sources} + +The data used in this book comes from various sources. + +## Code Repository {#sec-code-repository} + +All code examples are available in the companion repository. Computationa theory from @turing1950 establishes foundational concepts. + +Foundationa material in @sec-intro, with kinematica visualization in @fig-cars. + +## Appendix Margin Figures {#sec-appendix-margin-figures} + +Appendixia body text introduces the appendix margin content. + +::: {.column-margin} +![Appendorba supplementary diagram](logo.svg){#fig-appendix-margin} +::: + +Additiva diagram in @fig-appendix-margin demonstrates appendix margin figure numbering. + +## Appendix Sub-figures {#sec-appendix-sub-figures} + +Appendiculata subfigure numbering test. @sec-appendix-sub-figures validates letter-based chapter numbering. + +Compositia panel in @fig-appendix-panel, with @fig-appendix-panel-a and @fig-appendix-panel-b as components. + +::: {#fig-appendix-panel layout-ncol=2} + +![First appendix panel](logo.svg){#fig-appendix-panel-a} + +![Second appendix panel](logo.svg){#fig-appendix-panel-b} + +A panel of sub-figures in the appendix demonstrating letter-based numbering. +::: + +## Appendix Margin Tables {#sec-appendix-margin-tables} + +Tabulata body text introduces supplementary data. + +::: {.column-margin} +| Constant | Value | +|----------|-------| +| G | 6.674e-11 | +| c | 299792458 | +| h | 6.626e-34 | + +: Constantia values {#tbl-appendix-margin} +::: + +Fundamentala constants in @tbl-appendix-margin demonstrate appendix margin table placement. + +## Appendix Callouts {#sec-appendix-callouts} + +Admonitia appendix numbering test. @sec-appendix-callouts validates letter-based callout numbering. + +::: {#wrn-appendix .callout-warning} +## Appendix Warning +Pericula appendix hazard documented here. Admonitoria reference in @wrn-appendix. +::: + +Appendicata body text introduces the supplementary guidance. + +::: {#tip-appendix .callout-tip .column-margin} +## Appendix Tip +Consilia appendix guidance provided here. +::: + +Advisoria reference in @tip-appendix demonstrates margin callout placement. + +Retrospecta: beveragia warning in @wrn-tea from @sec-intro. + +## Appendix Custom Crossref Dinosaurs {#sec-appendix-dinosaurs} + +Taxonomica appendix numbering test. @sec-appendix-dinosaurs validates letter-based crossref numbering. + +::: {#dino-appendix} +**Triceratops** + +Ceratopsia specimen documented here. Fossilica reference in @dino-appendix. +::: + +Comparativa: herbivorica specimen @dino-steg from @sec-intro. + +## Appendix Margin Dinosaurs {#sec-appendix-margin-dinosaurs} + +::: {#dino-appendix-margin .column-margin} +**Diplodoca** + +This long-necked dinosaur demonstrates appendix margin placement. +::: + +Longneckia body text discusses the margin dinosaur placement. + +## Appendix Equations {#sec-appendix-equations} + +The Pythagorean theorem: + +$$ +a^2 + b^2 = c^2 +$$ {#eq-pythagorean} + +Geometrica appendix result in @eq-pythagorean. + +Retrospectiva: relativistica in @eq-einstein from @sec-intro and algebraica in @eq-quadratic from @sec-methods. + +## Appendix Margin Equations {#sec-appendix-margin-equations} + +Electrica body text introduces supplementary mathematics. + +::: {.column-margin} +$$ +\oint \vec{E} \cdot d\vec{A} = \frac{Q}{\epsilon_0} +$$ {#eq-appendix-margin-gauss} + +Gaussiana electric field law. +::: + +Integrala surface law in @eq-appendix-margin-gauss demonstrates appendix margin equation placement. + +## Appendix Theorems {#sec-appendix-theorems} + +::: {#thm-appendix} +## Example Appendix Theorem +This theorem demonstrates appendix numbering. It should ideally be Theorem A.1. +::: + +Demonstrata result in @thm-appendix. Retrospectiva: @thm-pythagorean from @sec-intro and @thm-calculus from @sec-methods. + +## Appendix Listings {#sec-appendix-listings} + +```{#lst-appendix-example .python lst-cap="Appendix Code Example"} +# This demonstrates appendix listing numbering +# Should display as Listing A.1 +def appendix_function(): + return "Appendix example" +``` + +Exemplara code in @lst-appendix-example. + +Retrospectiva: programmata in @lst-hello from @sec-intro and sortiva in @lst-quicksort from @sec-methods. + +## Appendix Margin Listings {#sec-appendix-margin-listings} + +Algoritha body text introduces supplementary code. + +::: {.column-margin} +```{#lst-appendix-margin .python lst-cap="Auxiliara annotation"} +def appendix_helper(): + """Appendix margin code.""" + return 42 +``` +::: + +Helpera function in @lst-appendix-margin demonstrates appendix margin listing placement. diff --git a/tests/docs/smoke-all/typst/orange-book-margin/chapter1.qmd b/tests/docs/smoke-all/typst/orange-book-margin/chapter1.qmd new file mode 100644 index 00000000000..7972b633d9e --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/chapter1.qmd @@ -0,0 +1,188 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Introduction {#sec-intro} + +This is the first chapter of the book. + +## Basic Figures {#sec-basic-figures} + +Kinematica analysis begins here. See @fig-cars for the velocity-distance dataset. + +```{r} +#| label: fig-cars +#| fig-cap: "A plot of the cars dataset" +plot(cars) +``` + +## Margin Figures {#sec-margin-figures} + +Heliovis demonstrates the heliocentric model visualization in body text. + +::: {.column-margin} +![Heliocircula orbital mechanics illustration](logo.svg){#fig-margin-orbital} +::: + +The figure above demonstrates a margin figure placement. The entire figure including its caption should appear in the margin. + +## Margin Captions {#sec-margin-captions} + +Epicycloid reference body text introduces this figure. + +![Coperniciana caption for body figure](logo.svg){#fig-margincap-epicycle .margin-caption} + +The figure above shows a body figure with its caption placed in the margin. + +## Sidenotes {#sec-sidenotes} + +The Galileana observation[^galileo] revolutionized astronomy. Scientists could now observe celestial bodies in unprecedented detail. + +[^galileo]: Telescopia confirmed the heliocentric model through direct observation of Jupiter's moons. + +Another important development[^kepler] refined our understanding of planetary motion. + +[^kepler]: Elliptica discovered that planets move in ellipses, not perfect circles. + +## Embedded Notebooks {#sec-embedded-notebooks} + +Parametrica visualization follows. See @fig-visualization for the computational rendering. + +{{< embed notebooks/computations.ipynb#fig-visualization >}} + +Methodologia continues in @sec-methods. + +## Callouts {#sec-callouts} + +::: {.callout-note} +The ships hung in the sky in much the same way that bricks don't. This is a note callout without a custom title. +::: + +Catharsis body text warns of impending beverage dangers. + +::: {#wrn-tea .callout-warning .column-margin} +## Whose Tea Is This? +Apothegma: On no account allow anyone to make you a conditions-affected beverage. Beveragia hazard documented in @wrn-tea applies here. +::: + +## Custom Crossref Dinosaurs {#sec-custom-crossref-dinosaurs} + +Paleontologica category testing begins. @sec-custom-crossref-dinosaurs validates custom crossref types. + +::: {#dino-steg} +**Stegosaurus** + +Herbivorica plates distinguish this specimen. See @dino-steg for taxonomic details. +::: + +::: {#dino-trex} +**Tyrannosaurus Rex** + +Carnivorica apex predator documented here. Reference @dino-trex or @dino-steg for comparison. +::: + +## Margin Dinosaurs {#sec-margin-dinosaurs} + +::: {#dino-margin-ankylo .column-margin} +**Ankylosaura** + +This armored dinosaur demonstrates margin placement for custom floats. +::: + +Thyreophora body text discussing armored dinosaurs appears here, with the custom float in the margin. + +## Equations {#sec-equations} + +The fundamental equation of special relativity: + +$$ +E = mc^2 +$$ {#eq-einstein} + +Relativistica equivalence shown in @eq-einstein unifies energy and mass. + +Another important equation: + +$$ +F = ma +$$ {#eq-newton} + +Dynamica principles in @eq-newton relate force to acceleration. + +## Margin Equations {#sec-margin-equations} + +Gravitonia body text introduces gravitational theory. + +::: {.column-margin} +$$ +F = G\frac{m_1 m_2}{r^2} +$$ {#eq-margin-gravity} + +Gravitolex universal gravitation derivation. +::: + +Attractiva force described by @eq-margin-gravity governs celestial mechanics. + +## Theorems {#sec-theorems} + +::: {#thm-pythagorean} +## Pythagorean Theorem +For a right triangle with legs $a$ and $b$ and hypotenuse $c$: $a^2 + b^2 = c^2$ +::: + +Geometrica fundamentals established in @thm-pythagorean. + +Triangulata body text introduces the inequality lemma. + +::: {.column-margin} +::: {#lem-triangle} +## Triangle Inequality +Inequalitas: For any triangle with sides $a$, $b$, and $c$: $a + b > c$ +::: +::: + +Boundaria proven in @lem-triangle demonstrates margin theorem placement. + +## Code Listings {#sec-code-listings} + +Structurata programming principles from @dijkstra1968 inform our code style. Listbody is body text that should left-align with code listings. + +```{#lst-hello .python lst-cap="Hello World in Python"} +# Alignmark +def hello(): + print("Hello, World!") + +if __name__ == "__main__": + hello() +``` + +Programmata basics shown in @lst-hello. + +```{#lst-fibonacci .python lst-cap="Fibonacci Sequence"} +def fibonacci(n): + if n <= 1: + return n + return fibonacci(n-1) + fibonacci(n-2) +``` + +Recursiva patterns demonstrated in @lst-fibonacci. + +## Margin Listings {#sec-margin-listings} + +Orbitcode algorithmic implementation appears in the body. + +::: {.column-margin} +```{#lst-margin-kepler .python lst-cap="Orbitsolva solver"} +def kepler_equation(M, e): + """Solve Kepler's equation.""" + E = M # initial guess + for _ in range(10): + E = M + e * sin(E) + return E +``` +::: + +Iterativa convergence in @lst-margin-kepler solves orbital anomalies. diff --git a/tests/docs/smoke-all/typst/orange-book-margin/chapter2.qmd b/tests/docs/smoke-all/typst/orange-book-margin/chapter2.qmd new file mode 100644 index 00000000000..5f6c8aa5915 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/chapter2.qmd @@ -0,0 +1,187 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Methods {#sec-methods} + +This is the second chapter of the book. Previousia foundations from @sec-intro inform our methodology. + +The fundamental problem with any bureaucratic methodology is that it must, by its very nature, assume that the person filling out the forms is lying. This is not because bureaucrats are inherently suspicious people, but because the forms themselves were designed by committees who assumed that clarity was a luxury that could not be afforded in these troubled times. + +Consider, for example, the simple act of changing one's address. One might naively suppose that this would involve telling the relevant authorities where one now lives. In practice, it requires filling out seventeen forms, each of which asks for one's previous address in a slightly different format, and all of which must be submitted to different departments who do not, under any circumstances, communicate with each other. + +The postal service, meanwhile, continues to deliver mail to addresses that have not existed for thirty years, on the grounds that someone might still be expecting it. This is considered efficiency. + +## Tables {#sec-tables} + +Informatica theory from @shannon1948 provides foundations. Tabulara @tbl-data presents the structured dataset. + +| Column A | Column B | Column C | +|----------|----------|----------| +| 1 | 2 | 3 | +| 4 | 5 | 6 | + +: Sample data table {#tbl-data} + +## Margin Tables {#sec-margin-tables} + +Periodicus orbital tabulation is discussed in the body text. + +::: {.column-margin} +| Planet | Period | +|--------|--------| +| Mercury | 88d | +| Venus | 225d | +| Earth | 365d | +| Mars | 687d | + +: Orbitperioda periods {#tbl-margin-planets} +::: + +Celestia periods listed in @tbl-margin-planets demonstrate margin table placement. + +## Margin Caption Tables {#sec-margin-caption-tables} + +Spectralis body text introduces stellar spectroscopy. + +| Element | Symbol | Wavelength | +|---------|--------|------------| +| Hydrogen | H | 656.3nm | +| Helium | He | 587.6nm | +| Carbon | C | 247.9nm | + +: Elementica stellar caption {#tbl-margincap-elements .margin-caption} + +Absorptia lines documented in @tbl-margincap-elements reveal stellar composition. + +## Cross-references {#sec-cross-references} + +Retrospecta analysis continues. Kinematica data from @fig-cars and tabulara structure from @tbl-data provide foundations. + +## Sub-figures {#sec-sub-figures} + +Compositia panels follow. See @fig-panel for combined visualization, with @fig-panel-a and @fig-panel-b as components. + +::: {#fig-panel layout-ncol=2} + +![First panel](logo.svg){#fig-panel-a} + +![Second panel](logo.svg){#fig-panel-b} + +A panel with two sub-figures showing the same plot. +::: + +## Margin Subfigures {#sec-margin-subfigures} + +Chromatus body text introduces the spectral analysis. + +::: {#fig-margin-panel .column-margin layout-ncol=1} +![Waveluma alpha](logo.svg){#fig-margin-panel-a} + +![Wavelumb beta](logo.svg){#fig-margin-panel-b} + +Wavelengthra panel +::: + +Diffractionica analysis in @fig-margin-panel shows margin subfigure placement with @fig-margin-panel-a and @fig-margin-panel-b. + +## Margin Citations {#sec-margin-citations} + +Newtoniana reference body discusses classical mechanics. Newton established the laws of motion [@newton1687], which were later refined by Einstein [@einstein1905]. Bibliographica marginalia should appear in the margin for these citations. + +Literatica programming discussed by @knuth84 informs our approach. + +## More Callouts {#sec-more-callouts} + +Beveragia warning from @sec-intro applies: see @wrn-tea for safety protocols. + +Hermeneutica body text interprets the hitchhiker's wisdom. + +::: {#tip-towel .callout-tip .column-margin} +## Whose Towel Is This? +Prolegomena: A towel is about the most massively useful thing an interstellar hitchhiker can have. Fabricata utility documented in @tip-towel. +::: + +::: {.callout-caution .column-margin} +## Paniculus +Don't Panic. Under no circumstances should you allow yourself to panic. +::: + +Philologica body text analyzes alien verse forms. + +::: {#nte-vogon .callout-note .column-margin} +## A Note About Vogon Poetry +Scholiasta: Vogon poetry is of course, the third worst in the universe. Poetica horrors catalogued in @nte-vogon. +::: + +## More Dinosaurs {#sec-more-dinosaurs} + +Taxonomica counter reset testing. @sec-more-dinosaurs validates chapter-boundary behavior. + +::: {#dino-raptor} +**Velociraptor** + +Dromaeosaura hunting behavior documented here. See @dino-raptor for pack dynamics. +::: + +Comparativa analysis: @dino-steg and @dino-trex from @sec-intro establish baseline taxonomy. + +## More Equations {#sec-more-equations} + +Formulix body text introduces the quadratic formula. + +::: {.column-margin} +$$ +x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} +$$ {#eq-quadratic} + +Quadratica root formula. +::: + +Algebraica roots computed via @eq-quadratic. + +Retrospectiva: @eq-einstein from @sec-intro and @eq-newton provide foundational physics. + +## More Theorems {#sec-more-theorems} + +::: {#thm-calculus} +## Fundamental Theorem of Calculus +If $F$ is an antiderivative of $f$ on $[a,b]$, then: $\int_a^b f(x)\,dx = F(b) - F(a)$ +::: + +Integrala foundations established in @thm-calculus. + +Continua body text introduces the continuity definition. + +::: {.column-margin} +::: {#def-continuous} +## Continuous Function +Limitica: A function $f$ is continuous at $c$ if $\lim_{x \to c} f(x) = f(c)$. +::: +::: + +Epsilondelta defined in @def-continuous demonstrates margin definition placement. + +Retrospectiva: @thm-pythagorean and @lem-triangle from @sec-intro provide geometric foundations. + +## More Code Listings {#sec-more-code-listings} + +Algorithmix body text introduces the sorting algorithm. + +::: {.column-margin} +```{#lst-quicksort .python lst-cap="Quicksortix"} +def quicksort(arr): + if len(arr) <= 1: + return arr + pivot = arr[len(arr) // 2] + left = [x for x in arr if x < pivot] + return quicksort(left) + [pivot] + quicksort([x for x in arr if x > pivot]) +``` +::: + +Sortiva efficiency demonstrated in @lst-quicksort. + +Retrospectiva: @lst-hello and @lst-fibonacci from @sec-intro provide programming foundations. diff --git a/tests/docs/smoke-all/typst/orange-book-margin/chapter3.qmd b/tests/docs/smoke-all/typst/orange-book-margin/chapter3.qmd new file mode 100644 index 00000000000..013112957b3 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/chapter3.qmd @@ -0,0 +1,86 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Results {#sec-results} + +This is the third chapter of the book. + +## Cross-chapter references {#sec-cross-chapter-refs} + +Synthesica analysis combines previous findings. Compositia visualization in @fig-panel from @sec-methods provides the complete panel. Componenta breakdown: @fig-panel-a shows the first panel and @fig-panel-b shows the second panel. + +Kinematica data from @fig-cars in @sec-intro establishes velocity-distance relationships. + +## Results Citations {#sec-results-citations} + +Algorithmia body text discusses computational complexity as established by @knuth84. The foundational work on classical mechanics [@newton1687] informs our physical models. Relativistica principles from @einstein1905 provide the theoretical framework. + +Bibliographica marginalia demonstrates citation placement in chapter 3. + +## Cross-chapter margin references {#sec-cross-chapter-margin} + +Marginala content from previous chapters: + +- Copernicana orbital diagram in @fig-margin-orbital from @sec-intro +- Ptolemaica caption figure in @fig-margincap-epicycle +- Planetaria periods in @tbl-margin-planets from @sec-methods +- Wavelengthra panel in @fig-margin-panel +- Attractiva equation in @eq-margin-gravity +- Keplerian solver in @lst-margin-kepler + +## Cross-chapter callout references {#sec-cross-chapter-callouts} + +Admonitia references from previous chapters: + +- Beveragia hazard in @wrn-tea from @sec-intro +- Fabricata utility in @tip-towel from @sec-methods +- Poetica horrors in @nte-vogon + +Anagnorisis body text reveals the cosmic truth. + +::: {#imp-answer .callout-important .column-margin} +## The Answer +Peripeteia: The answer to the ultimate question of life, the universe, and everything is 42. Ultimata response documented in @imp-answer. +::: + +## Custom crossref dinosaurs {#sec-custom-crossref-dinosaurs-ch3} + +::: {#dino-ptero} +**Pterodactyl** + +Pterosaura flight mechanics documented here. See @dino-ptero for aerodynamic analysis. +::: + +Comparativa taxonomy: @dino-steg from @sec-intro and @dino-raptor from @sec-methods. + +Marginala specimen: @dino-margin-ankylo from @sec-intro demonstrates placement. + +## Wide Content {#sec-wide-content} + +Panoramica observation body text introduces wide figures. + +![Celestica wide survey visualization](logo.svg){#fig-wide-observation .column-page} + +Expansiva layout demonstrated in @fig-wide-observation spans page width. + +## Forward references to appendices {#sec-forward-refs} + +Appendica A content: + +- Compositia panel in @fig-appendix-panel +- Admonitia warning in @wrn-appendix +- Consilia tip in @tip-appendix +- Fossilica specimen in @dino-appendix +- Orbitala margin figure in @fig-appendix-margin + +Appendica B content: + +- Secundaria panel in @fig-appendix-b-panel +- Monitoria warning in @wrn-appendix-b +- Advisoria tip in @tip-appendix-b +- Brachiosaura specimen in @dino-appendix-b +- Visualica margin figure in @fig-appendix-b-margin diff --git a/tests/docs/smoke-all/typst/orange-book-margin/index.qmd b/tests/docs/smoke-all/typst/orange-book-margin/index.qmd new file mode 100644 index 00000000000..c06d0bf3ed5 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/index.qmd @@ -0,0 +1,464 @@ +--- +keep-typ: true +_quarto: + render-project: true + tests: + typst: + ensureTypstFileRegexMatches: + - # matches array (first positional argument) + - "test book for Typst output format" + - "first chapter of the book" + - "second chapter of the book" + - "third chapter of the book" + - "#heading\\(level: 1, numbering: none\\)\\[Preface\\]" + - "" + - "" + - "" + - "" + - "" + - "" + # Section labels + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + # Margin section labels + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + # Margin figure labels + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + # Margin table labels + - "" + - "" + - "" + - "" + # Margin equation labels + - "" + - "" + - "" + # Margin listing labels + - "" + - "" + # Margin dinosaur labels + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Table\\]\\)" + - "#ref\\(, supplement: \\[Chapter\\]\\)" + - "#ref\\(, supplement: \\[Chapter\\]\\)" + - "A plot of the cars dataset" + - "Sample data table" + - "#cite\\(" + - "#cite\\(" + - "#cite\\(" + - "#cite\\(" + - "#cite\\(" + - "#cite\\(" + - '#bibliography\(\("references\.bib"\)\)' + # Parts (orange-book uses #part) + - "#part\\[Part I: Getting Started\\]" + - "#part\\[Part II: Advanced Topics\\]" + - "" + - "#quarto_super\\(" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#callout\\(" + - 'kind: "quarto-callout-Warning"' + - 'kind: "quarto-callout-Tip"' + - 'kind: "quarto-callout-Note"' + - 'kind: "quarto-callout-Important"' + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - "#ref\\(, supplement: \\[Tip\\]\\)" + - "#ref\\(, supplement: \\[Note\\]\\)" + - "#ref\\(, supplement: \\[Important\\]\\)" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "" + - "" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - "#ref\\(, supplement: \\[Tip\\]\\)" + - 'kind: "quarto-float-dino"' + - "" + - "" + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - 'counter\(figure\.where\(kind: "quarto-float-dino"\)\)\.update\(0\)' + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + # Theorems + - "" + - "" + - "" + - "" + - "" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "" + - "" + - "" + - "" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - 'kind: "quarto-float-lst"' + # Margin references + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + ensurePdfRegexMatches: + - # Chapter 1 figure captions and references + - "Figure 1\\.1: A plot of the cars" + - "Figure 1\\.2: Heliocircula" + - "Figure 1\\.3: Coperniciana" + - "Figure 1\\.4:.*line" + - "Kinematica.*Figure 1\\.1" + - "Parametrica.*Figure 1\\.4" + # Chapter 1 callouts + - "Warning 1\\.1: Whose Tea" + - "Beveragia.*Warning 1\\.1" + # Chapter 1 dinosaurs + - "Dinosaur 1\\.1:.*Herbivorica" + - "Dinosaur 1\\.2:.*Carnivorica" + - "Dinosaur 1\\.3:.*armored" + - "Dinosaur 1\\.1.*taxonomic" + - "Dinosaur 1\\.2.*Dinosaur 1\\.1" + # Chapter 1 equations + - "Relativistica.*Equation \\(1\\.1\\)" + - "Dynamica.*Equation \\(1\\.2\\)" + - "Attractiva.*Equation \\(1\\.3\\)" + # Chapter 1 theorems + - "Theorem 1\\.1.*Pythagorean" + - "Lemma 1\\.1.*Triangle" + - "Geometrica.*Theorem 1\\.1" + - "Boundaria.*Lemma 1\\.1" + # Chapter 1 listings + - "Listing 1\\.1:.*Hello World" + - "Listing 1\\.2:.*Fibonacci" + - "Listing 1\\.3:.*Orbitsolva" + - "Programmata.*Listing 1\\.1" + - "Recursiva.*Listing 1\\.2" + - "Iterativa.*Listing 1\\.3" + # Chapter 1 citations + - "Structurata" + # Chapter 2 tables + - "Table 2\\.1: Sample data" + - "Table 2\\.2: Orbitperioda" + - "Table 2\\.3: Elementica" + - "Informatica" + - "Tabulara.*Table 2\\.1" + - "Celestia.*Table 2\\.2" + - "Absorptia.*Table 2\\.3" + # Chapter 2 figures + - "Figure 2\\.1:.*panel" + - "Figure 2\\.2:.*Wavelengthra" + - "Compositia.*Figure 2\\.1" + - "Figure 2\\.1a.*Figure 2\\.1b" + - "Diffractionica.*Figure 2\\.2" + - "Figure 2\\.2a.*Figure 2\\.2b" + # Chapter 2 callouts + - "Tip 2\\.1: Whose Towel" + - "Note 2\\.1:.*Vogon" + - "Fabricata.*Tip 2\\.1" + - "Poetica.*Note 2\\.1" + # Chapter 2 dinosaurs + - "Dinosaur 2\\.1:.*Dromaeosaura" + - "Dinosaur 2\\.1.*pack" + # Chapter 2 equations and theorems + - "Algebraica.*Equation \\(2\\.1\\)" + - "Integrala.*Theorem 2\\.1" + - "Epsilondelta.*Definition 2\\.1" + # Chapter 2 listings + - "Listing 2\\.1:.*Quicksort" + - "Sortiva.*Listing 2\\.1" + # Chapter 3 callouts + - "Important 3\\.1: The Answer" + # Note: Long words may be hyphenated in narrow margin, use shorter unique text + - "ultimate question" + - "response documented" + # Chapter 3 dinosaurs + - "Dinosaur 3\\.1:.*Pterosaura" + - "Dinosaur 3\\.1.*aerodynamic" + # Appendix A figures + - "Figure A\\.1:.*Appendorba" + - "Figure A\\.2:.*panel" + - "Additiva.*Figure A\\.1" + - "Compositia.*Figure A\\.2" + - "Figure A\\.2a" + # Appendix A tables + - "Table A\\.1:.*Constantia" + - "Fundamentala.*Table A\\.1" + # Appendix A callouts + - "Warning A\\.1: Appendix Warning" + - "Tip A\\.1: Appendix Tip" + - "Admonitoria" + - "soria reference in Tip A\\.1" + # Appendix A dinosaurs + - "Dinosaur A\\.1:.*Ceratopsia" + - "Dinosaur A\\.2:.*long-necked" + - "Fossilica.*Dinosaur A\\.1" + # Appendix A citations + - "Computationa" + # Appendix A equations + - "Geometrica.*Equation \\(A\\.1\\)" + - "surface law in Equation \\(A\\.2\\)" + # Appendix A theorems and listings + - "Theorem A\\.1" + - "Demonstrata.*Theorem A\\.1" + - "Listing A\\.1:.*Appendix Code" + - "Listing A\\.2:.*Auxiliara" + - "Exemplara.*Listing A\\.1" + - "Helpera.*Listing A\\.2" + # Appendix B figures + - "Figure B\\.1:.*Databvisual" + - "Figure B\\.2:.*panel" + - "Graphica.*Figure B\\.1" + - "Secundaria.*Figure B\\.2" + - "Figure B\\.2a" + - "Figure B\\.2b" + # Appendix B tables + - "Table B\\.1:.*Unitaria" + - "Dimensiona.*Table B\\.1" + # Appendix B callouts + - "Warning B\\.1: Appendix B Warning" + - "Tip B\\.1: Appendix B Tip" + - "Monitoria.*Warning B\\.1" + - "Advisoria.*Tip B\\.1" + # Appendix B dinosaurs + - "Dinosaur B\\.1:.*Sauropoda giganta" + - "Dinosaur B\\.2:.*crested" + - "Brachiosaura.*Dinosaur B\\.1" + # Appendix B equations + - "law in Equation \\(B\\.1\\)" + # Unique margin content anchors + - "Heliocircula" + - "Coperniciana" + - "Telescopia" + - "Gravitolex" + - "Orbitsolva" + - "Orbitperioda" + - "Elementica" + - "Waveluma" + - "Appendorba" + - "Constantia" + - "Databvisual" + - "Unitaria" + - "Ankylosaura" + - "Diplodoca" + - "Parasaura" + - "Longneckia" + # Unique body anchors + - "Heliovis" + - "Galileana" + - "Gravitonia" + - "Orbitcode" + - "Periodicus" + - "Spectralis" + - "Chromatus" + - "Appendixia" + - "Tabulata" + - "Secondaria" + - "Metrica" + # Chapter 2 extended margin anchors + - "Formulix" + - "Quadratica" + - "Algorithmix" + - "Quicksortix" + # Chapter 2 citation anchors + - "Newtoniana" + - "Bibliographica" + # Chapter 3 citation anchors + - "Algorithmia" + # Margin theorem anchors + - "Inequalitas" + - "Triangulata" + - "Boundaria" + - "Limitica" + - "Continua" + - "Epsilondelta" + # Margin callout anchors (literary/classical) + - "Apothegma" + - "Catharsis" + - "Prolegomena" + - "Hermeneutica" + - "Scholiasta" + - "Philologica" + - "Peripeteia" + - "Anagnorisis" + - "Gnomicon" + - "Exegesis" + ensurePdfTextPositions: + - # Code listings should be left-aligned with body text, not centered. + - subject: { text: "Alignmark", granularity: "Div" } + relation: leftAligned + object: { text: "Listbody", granularity: "P" } + tolerance: 15 + # Page 9 (recto = right margin) + - subject: "Heliocircula" + relation: rightOf + object: "Heliovis" + page: 9 + - subject: "Coperniciana" + relation: rightOf + object: "Epicycloid" + page: 9 + # Page 10 (verso = left margin) + - subject: "Telescopia" + relation: leftOf + object: "Galileana" + page: 10 + - subject: "Apothegma" + relation: leftOf + object: "Catharsis" + page: 10 + # Page 11 (recto = right margin) + - subject: "Ankylosaura" + relation: rightOf + object: "Thyreophora" + page: 11 + - subject: "Gravitolex" + relation: rightOf + object: "Gravitonia" + page: 11 + - subject: "Inequalitas" + relation: rightOf + object: "Triangulata" + page: 11 + # Page 12 (verso = left margin) + - subject: "Orbitsolva" + relation: leftOf + object: "Orbitcode" + page: 12 + # Page 15 (recto = right margin) + - subject: "Orbitperioda" + relation: rightOf + object: "Periodicus" + page: 15 + - subject: "Elementica" + relation: rightOf + object: "Spectralis" + page: 15 + # Page 16 (verso = left margin) + - subject: "Waveluma" + relation: leftOf + object: "Chromatus" + page: 16 + - subject: "Prolegomena" + relation: leftOf + object: "Hermeneutica" + page: 16 + - subject: "Scholiasta" + relation: leftOf + object: "Philologica" + page: 16 + # Page 17 (recto = right margin) + - subject: "Limitica" + relation: rightOf + object: "Continua" + page: 17 + - subject: "Quicksortix" + relation: rightOf + object: "Algorithmix" + page: 17 + - subject: "Quadratica" + relation: rightOf + object: "Formulix" + page: 17 + # Page 19 (recto = right margin) + - subject: "Peripeteia" + relation: rightOf + object: "Anagnorisis" + page: 19 + # Page 23 (recto = right margin) + - subject: "Appendorba" + relation: rightOf + object: "Appendixia" + page: 23 + # Page 24 (verso = left margin) + - subject: "Diplodoca" + relation: leftOf + object: "Longneckia" + page: 24 + # Page 27 (recto = right margin) + - subject: "Gnomicon" + relation: rightOf + object: "Exegesis" + page: 27 + - subject: "Databvisual" + relation: rightOf + object: "Secondaria" + page: 27 + # Page 28 (verso = left margin) + - subject: "Parasaura" + relation: leftOf + object: "Hadrosaura" + page: 28 +--- + +# Preface {.unnumbered} + +This is a test book for Typst output format. + +## About this book + +This book tests the basic Typst book rendering functionality in Quarto, with margin layout features enabled. +See @knuth84 for additional discussion of literate programming. diff --git a/tests/docs/smoke-all/typst/orange-book-margin/logo.svg b/tests/docs/smoke-all/typst/orange-book-margin/logo.svg new file mode 100644 index 00000000000..62b02b1ebd1 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/logo.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/tests/docs/smoke-all/typst/orange-book-margin/notebooks/computations.ipynb b/tests/docs/smoke-all/typst/orange-book-margin/notebooks/computations.ipynb new file mode 100644 index 00000000000..b9ab8546b0f --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/notebooks/computations.ipynb @@ -0,0 +1,103 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "3a7ef254", + "metadata": {}, + "source": [ + "# Computations\n", + "\n", + "This is a simple markdown cell that has various contents in it. _What_ is up!" + ] + }, + { + "cell_type": "raw", + "id": "081703fc-4357-469b-a931-707a8f41d626", + "metadata": { + "raw_mimetype": "text/html", + "tags": [] + }, + "source": [ + "Hello World - this is HTML!" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c997cb65", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWoAAAD4CAYAAADFAawfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAlmElEQVR4nO3dW2zc533m8e875zM5PFOkqKMlWbabOFHsJg7StIGLdhsEe7EXLdACm13AvVgUKbqLounFdneBvdibor1YFGsk7bZo2m03aW6KNE2ySZAmcRwfYlsSJdmWRInn85zPM+9ezJAiZYocUjOcPznPBxB4Gg5/sqVH7/zek7HWIiIizuXqdAEiIrI7BbWIiMMpqEVEHE5BLSLicApqERGH87TjSQcGBuzp06fb8dQiIsfSG2+8sWKtHdzpa20J6tOnT/P666+346lFRI4lY8y9R31NrQ8REYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHE5BLSLicApqERGHU1CLiDicglpExOEU1CIiDqegFhFxOAW1iIjDKahFRBxOQS0i4nAKahGRDiuUq7t+vS03vIiISHOm13L88/WFXR+joBYR6YBqzfKTO6u8NrWGtbs/VkEtInLIErkS/3RtgYVkoanHK6hFRA6JtZbJ+RTfv7VMqVJr+vsU1CIih6BQrvLdm0vcWkjv+3v3DGpjzEXg77Z86izwn621f7LvnyYi0oVmE3m+eW2BVL58oO/fM6ittbeADwMYY9zALPD1A/00EZEuUqtZfnJ3lZ/e3XvCcDf7bX18Brhtrb138B8pInL8JXNlvnl9nrlEcxOGu9lvUP868LeP/VNFRI6xG/MpvntzaV8ThrtpOqiNMT7gc8AXH/H1l4CXACYmJlpSnIjIUVKsVPnezSVuzO9/wnA3+xlR/yrwprV2cacvWmtfBl4GuHLlymN0Y0REjp65xoRh8oAThrvZT1D/Bmp7iIjDZYsVvnNjkWKlxlDUz1A0wFDMT1/Ih8tlWv7zajXLT6fWePXOGrXHmTHcRVNBbYwJAy8Cv92WKkREWuDeapZ/vr5Atlg/5Gh2Pb/5NY/LMBD1MxT1M9gI8IGID4/74GfTJfNl/vnaArOJ/N4PfgxNBbW1Ngv0t7USEZEDqtYsr9xe5fV7j14GV6lZFpKFbdu2XcbQF/ExGPEzFHsQ4n6Pe8+feWshzf+7uUix3JoJw91oZ6KIHGnJfJlvXjvYMriatayki6yki9yYf/D53pB3s2WyEeIhXz0ui5Uq37+1zORcqlW/hT0pqEXkyHpvMc23b7R+VJvIlUnkyry7+GD1RjTgYTDqZy1bIpFr/YThbhTUInLklKs1/uW9Zd6eTh7az0wXKqQLlUP7eVspqEXkSFnNFPnGtQVW0sVOl3JoFNQiciRYa7k+l+L7t5YoV7trq4aCWkQcr1ip8t0bS9w8wBGhx4GCWkQcbTFV4BtX5w99As9JFNQi4kjWWt68n+BH769QrXVXq+NhCmoRcZx8qcq3Jhe4s5ztdCmOoKAWEUeZXsvxzWsLZIqdWQrnRApqEXGEVt2GchwpqEWk49KFMv90bWHbIUrygIJaRDrq9nKGb11fpFCudroUx1JQi8iBWWupWajUalRrlkrNUq3W31ZqNSpV++Dzjc9t/XgtWzrUw42OKgW1iDxSoVzlZ/cT3F3JUq3V6gFc3Qja+sfqJ7efglpEPiBXqvCz+wnemk607IJWOTgFtYhsyhQrvHlvnXdmEl13noaTKahFhFShzBtT61ybTVLp8l2ATqSgFuliyVyZ16bWmJxPdf02bSdr9nLbXuBLwNOABf6dtfaVNtYlIm20li3x07tr3FpIt+3mbGmdZkfUfwp801r7b4wxPiDUxppEpE2W00Vem1rj3cW0VmscIXsGtTGmB/gU8G8BrLUloNTeskSklRZTBV69u8btpUynS5EDaGZEfQZYBv7CGPMh4A3gC9babcdaGWNeAl4CmJiYaHWdInIAc4k8P727xt0VnUJ3lLmaeIwH+AjwZ9baZ4Es8AcPP8ha+7K19oq19srg4GCLyxSRZllrmV7L8bU3Zvi716YV0sdAMyPqGWDGWvtq4+OvskNQi0hnWWu5v5bj1TtrzCZ0uNFxsmdQW2sXjDHTxpiL1tpbwGeAyfaXJiJ7yRQrzKznmFnLM72e6+rrqo6zZld9/A7wlcaKjzvA59tXkog8SrZYYWY9Xw/n9TxrWc3rd4Omgtpa+xZwpb2liMjDcqXtwbyaUTB3I+1MFHGQfKm6Gcoz6zlWFMyCglqkowrlejBPr+eZWc+zki52uiRxIAW1yCGq1SxTq1nur9VHzSuZonYIyp4U1CKHIFOscHUmyfW5JOmCbteW/VFQi7RJfeNJnndmE9xeyurwIzkwBbVIixXKVSbnU1ydSWr5nLSEglqkRRZTBd6eTvDuYlq3o0hLKahFHkO5WuPWQpp3ZpIspgqdLkeOKQW1yAGsZUu8M5Ngcj5FsazLX6W9FNQiTarWLHeWM7w9k2R6LdfpcqSLKKhF9pAulLk6m+T6bIpMUUvr5PApqEV2sHFk6DszSe4sa2mddJaCWqTBWstypsithTS3FtLamCKHZim9+0S0glq6XjJfboRzSocgyaFK5sv8+PYK7y7ufpelglq6UqFc5d3FNDcX0syu6zYUOVy5UoWf3l3j6mySmgW3Mbs+XkEtXaNcrXF3JcuN+RT3VnNUa+o7y+EqVWq8eX+dN++vb26KenI0ys+f6ee/7PJ9Cmo51mo1y/R6jpsLad5fylCqaM2zHL5qzXJtNsmrd9fIl6sAnBkI84lz/QxE/Ht+v4Jajh1rLUvpIjcX0ry7kNaSOukYay3vLmZ45c4qyXz9PsvRngAvnBtgLB5s+nmaCmpjzBSQBqpAxVqra7nEcZK5MjcWUtxaSOswpC5XrFRxG4PH7epYDfdWs/zo9irLjcsg4iEvL5wf4OxAGLNHT/ph+xlR/6K1dmVfzy7SZvlSlVuL9RUbcwmdtdHtKtUar9xZ5Wf3E7iMYaQnwHg8yHg8yEhPAI+r/cG9mCrwo/dXmG5MUkf8Hp4/28flkRgu1/4CeoNaH3IkLaYKvDWd4N2FNBVNCgowl8jz7RuLJHL1FkPVWmYTeWYTeV69C26XYXQzuEOMxAK4DxicO1nPlXjl9irvLdWX2vk9Lq6civOhk714H3Nk32xQW+BbxhgL/C9r7csPP8AY8xLwEsDExMRjFSWyk0q1xntLGd6eTjCf1OhZ6srVGq/cXuVn0wkA+sI+XnxymJ6Ql9mtN7hnS41Lg/PAGh6X4URvkLF4kJPxIEPRgwV3tljh1btrXJ9rLLVzGT483suV03ECXndLfo/NBvUnrbWzxpgh4NvGmJvW2h9sfUAjvF8GuHLlioY40jLpQpmrM0muzibJlaqdLkccZDaR5zuTiyTyZYyBK6fiPHemb7PFcX4owvmhCFBfuzzbCOqZRJ61bIn7aznur+V4BfC668E93lsfcQ9F/bu2KoqVKm/eS/Dm/XUqNYsBLo/G+PmzfUQD3pb+PpsKamvtbOPtkjHm68BzwA92/y6Rg7PWMrOe5+0ZXWMlH1Su1vjx7VXeaoyi+8M+Xrw8zHAs8MjvCfk8PDEc5YnhKFAfCc8mGsG9nmM9V+beao57qzlgFZ/bxYneACfjIcbiQQajflzGUKnVuDqT5LWp9c2ldmcbS+36m1hqdxB7BrUxJgy4rLXpxvu/DPy3tlQjXa9UqXFzIcXb0wlt55Ydza7Xe9HJR4yimxX2e7gwHOVCI7gzxQoz6zlm1/NMr+dJ5stMreaYWq0faev3uDjRG2Q1UyTVOAdmtCfAJ88PcKK3+aV2B9HMiHoY+HpjOYkH+Btr7TfbWpV0nfVsibd1EL/solyt8eP3V3lrJgFAf6Tei95tFL0fEb+HSyMxLo3EgHrLbSO0Z9ZzpAoV7q5kgXof/IVz/Zw5wFK7g9gzqK21d4APtb0S6Tq1mmVqNcvbMwmmVnQQvzzazHqO79xYIpkv4zJw5VQfz53pa+mqjYdFA14ujXq5NFoP7lS+zGwij9ft4uxgGNchBPQGLc+TQ1coV7k+l+Tt6eTmbi2RnZQqNX58e4W3Z5IADETqveihaGtG0fsRC3qJBVs7SdgsBbUcmqV0gbenk9xaSOmWbtnT9FqO79xYJFWo4DLwsdN9fOx0e0fRTqWglrYqVqq8t5hhci7FbELHicreSpUaP3p/hXdmH4yif/nyCIPR9qyoOAoU1NJy1lrmkgWuzyZ5TyfWyT48PIp+7nQfV7p0FL2VglpaJl0oc2M+zeRckvWces/SvFKlxg/fX+FqYxQ9GPXz4pPDXT2K3kpBLY+lWrPcWc5wfS7F1GoW7UuR/brfGEWnG6Po58/089FT8a4fRW+loJYDWU4XuT6X5OZCmry2dcs+WGvJl6sk82Um51Ncm00BMBT18+Ll4aYO0u82CmppWqFc5dZCmutzKRZTOhRJHq1mLZlChUS+TDJXJpkvk8iXSObLpPIVStUH8xYuA8+f7eejExpFP4qCWna1cZXV9bkUt5cyOlJUNlWqNZL5jRAub76fzJVJFcrs9kfF53HRG/QSD/u4ciquUfQeFNSyo2SuzPX5JJNzKdIFXWXVzdZzJZZSxW2j4mS+TLa4e8sr7HfTE/TSE/TSG/Rtvt8T8hLwuA5l6/VxoaCWTYVylTvLWSbnU0yvaUt3t7LWspgqcns5w53lLGu5nQ/Hcpn6NuveLQG8GcZB72Mfli8PKKi7mLWW1WyJqZUsd1eyzCUKOk60S1VqNWbW89xeznB3OUt2ywSxz+NivDdIPOTbFshRv+fAV0vJ/iiou0y5WmN6LcfUapa7KzlSOmujaxXLVe6uZrmznOXeam7bBF/E7+HcYJizgxHGeoOa5OswBXUXSObL3F3JMrWSZXotpwnBLpYulLmznOX2SobZ9fy2Cb+BiI+zAxHODYYZjPrVQ3YQBfUxVK1Z5hL5ejivZlnVAfxda6O9dWc5y+3lDEvp4ubXDDDWG9wcOfd06GQ42ZuC+pjIFiuNdkbjZazO13CkSrXGaraEyxg8boPX5cLjrr/vNqYlo9hazTKfLNQnA1ey246S9bgMp/pDnBuMcHogTLBFl69Keymoj6iNmfm7jYlAbUBxrnSh0Xpaze3aejJQD22XC6/b4HG78LgMXncjzLe8/yDgXXhd9bcuU7/s9e5KlsKWW3KCXjdnB8OcHQgz0RfCo9UYR46C+oio1Swr2SJziQLziTz313K6kduhNka0U6tZ7u7QeuoL+XC5oFy1VGo1KlVLpWqpWku5ailXqzzuHG9P0Mu5wTDnBiOM9AQO9TYSab2mg9oY4wZeB2attZ9tX0kC9XOcF5IF5hIF5hJ5FlIFtTMcLF+qcq8RzPdWcxS3/L/yug0TfSFOD4Q53R8m4t/5r12tZqnULOVqjUrNUqnWKG+8rdbfbv/69sdWapZ42Me5gTB9YZ8mA4+R/YyovwDcAGJtqqVrWWtJFSrMJ/PMJwrMJvKsZIo6ic7BrLUsZ4pMrdSXOs4nt7eeeoNeTg+EOTMQ5kRvoKkbsl0ug89l8HnUmpDtmgpqY8w48GvAfwd+r60VdYFarf6XfC6Rr7cyknlt0z4CSpUa0+u5zdU0W7dQu41hLB7kdH995BwP+TpYqRw3zY6o/wT4fSD6qAcYY14CXgKYmJh47MKOk0K50cZI1oN5UW2MI2M919i5uZplbr1AdcvLnLDfzen++qj5ZDykkbC0zZ5BbYz5LLBkrX3DGPPpRz3OWvsy8DLAlStXuv5Fe7pQ5s37Ce6v5VhVG+PIqNkHS9vuLmdJPDSrN9oT2AzngYj6wHI4mhlRvwB8zhjzr4AAEDPG/LW19jfbW9rRlC1WeG1qjaszSe0APCIq1RrTjXMu7ixnyZcftDT8Hhen+kOc6Q9zqj9M0Kd1x3L49gxqa+0XgS8CNEbU/0kh/UG5UoXXp9Z5ZyZBuaqAdrpipcrUSo7byxmmVrPb/p/FAh7ODUU4NxBhtCegg4ek47SO+jHlS1XeuLfO2zMJ9Z0dLluscGelvpV6ei237ZyLwYifs411x2ppiNPsK6ittd8Hvt+WSo6YQrnKm/fX+dl9BbSTJXIlbjfOudi6hG7jnIuNcNY5F+JkGlHvU6Fc5a3pBG/eX6dYVkA7zcb65ttL9XBezT7YFeh21TeebGynDvn0x1+OBv1JbVKpUuOt6QRv3FunUNbWbSep1SxzyfzmyHnrmnSf28WZgTDnBuuTgVpCJ0eRgnoPpUqNd2YSvH5vnbzO1nCMjUOprs0lP7BSI+SrH0J0fjDCeDykQ+/lyFNQP0K5WuOdmSSvT63p8CMHKVVq3FpMc3U2yfKWs5V7gl7OD0Y4NxRmJBbQZKAcK0ciqNOFMq9PrZPMl4n4PUQDHiIBD7GAd/PjVh3dWKnWuDaX4rW7a2SK2tbtFCuZIldnktxcSG9eGRXwurg8GuPJ0Rj9OoRIjjFHB/V+No+EfG4iAQ/RQP3SzY0wjzbCPOL37PoSuFqzXJ9L8tO7azp3wyEq1RrvL2V4Zza5bcXGaE+Anxvv4fxgRGcrS1dwZFAfZPNIrlQlV6qylCru+HVj2AzsaMDbCHEPUb+HfLnKa1PruujVIdZzJa7NJpmcS1FoLH30uV1cGo3yzFgPAxF/hysUOVyOCup8qb42+a3p1q9NthbShQrpQuUDR1JK51VrljsrGa7OJpley29+fjDq5+fGergwHNWKDelajghqbR7pXulCmWuzKa7PJck2Jm09LsOF4SjPjPcwrNuwRTob1MVKlZ/d1+aRblOzlvurOd6ZTTK1kmWjudUX8vHMeA+XRqIEdOmqyKaOBHWpUuPtmQSvT2nzSDfJFitMzqe4Npsk1ZiwdRl4YijCM2M9jPUGNXoW2cGhBnV9bXI9oLU2+Xix1lKs1CiUqxTKNfLlKsVylXzj47VciTvLmc2DkGIBD0+P9fDUiZi2covs4VD+hlSqNa7OJnltam3b9UXiPLZxE3Y9cOtBW6zUGoFbD93CTu83MbdggLMDYZ4Z7+FUX0ijZ5EmtTWoK9Ua1+dSvDaltclOVa1Z5pN57q3muL+WYyVT5KD3Hfg8LgIeFwGvu/HLRdDrxu9117d1D4SJBnRKnch+tS2or80m+cmdVQW0AyXzZe6tZrm3mmN6PfeBteoel9kM2q2hG/C4CW79eMv7fo9bZ2qItElbgnolU+Tbk4vteGo5gFKlxsx6jntrOe6t5kg+tLGnL+zjVF+IU/0hRnuCWq8scsjiod1fabYlqKu6K7CjrLWsZEr1UfNajrlEfls7w+9xcbIvtBnOakfIcTMeD1Ks1LYd3OU0IZ+bCyNRnhyJMRzz8/ldHqvp9mMiV6pwvzFivr+W27aqxgAjsQCn+uvBPBzVPYByPPUEvfzCxUHODoQxxpDMlbm9kuH2UobZRB7b4TGk1204Nxjh0miMib7mj+DdM6iNMQHgB4C/8fivWmv/6LGqlcdWrVkWkgXurdV7zUsPjRwifg8TjRHzRF9IG0jkWPO4DB8708dHT8Xxbjmoqyfk5SMTcT4yESdfqnJnJcPt5Sz3VrJ7HvTWKsbAqf4Ql0ZinBuMHKi12MyIugj8krU2Y4zxAj80xvyTtfYn+/5p8lhqNcvUapYbC2nur+Y2j/uE+jVTY73B+qi5L0Sfjv2ULnF+KMKnLgzuee9l0OfmqRM9PHWih1Klxv21+i30d5azbdl4NxwLcGk0ysXhKGH/4zUv9vxua60FMo0PvY1fakIfotVMkcn5FDcX0ttaGn0hHxONdsZYb3DbSELkuIuHvHz64hCnB8L7/l6fx8X5oQjnhyLUapbZRJ7by/XR9uOcohkLenlyJMrFkSj9LTzlsamYN8a4gTeA88D/tNa+usNjXgJeAogPnWhZgd2qWKny7kKGyfkUC6kHp/3FQ14un4hxYThKTJOA0oV8HhfPn+nj2Yl4S5aEulyGk30hTvaF+IUL2y9HbmYyMuB1c2G43nc+0dOe24WaCmprbRX4sDGmF/i6MeZpa+21hx7zMvAywMkLT2vEfQDWWqbX80zOpXh/ObO5esbndnFhOMLlEzFdMyVd7dJIlE8+MdC2lUrGGIaiAYaiAT5+rp9kvlwfaT80GelxGc4Mhrk0EuPMQLjtewj21Tix1iaMMd8DfgW4ttfjpTnJfJnJ+RQ35lPbNgiNx4M8NRrj3FBEbQ3pagNRP5++MMjJvtCh/tye4AcnI62t98UPc4K+mVUfg0C5EdJB4EXgf7S9smOu3LhmanIuxUziwUH50YBn8x7AvSZHRI47v9fFx8/286Hx3o4vKd2YjOyEZkbUo8BfNvrULuDvrbX/2N6yjidrLfPJApPzKd5bzGyu2vC4DOeHIlwejTEe11GfIgBPnYjxyScGdLoiza36eAd49hBqObYyxQo3Gq2N9dyDGeWRWKAxMRjB79E6ZxGoL2v7xUuDjPYEO12KY+ifqjapVGvcXckyOZ/i3mpucz1jyOfmydEYl0dj9IV9Ha1RxEmCPjcvnBvgqROxjrc5nEZB3UI1a5lZz3NrIc37y5nN+x9dpn4O81Mn6ucw6w+hyAPGwM+N9/CJcwPaQfsICurHZK1lKV3k1kKadxfTmxe0Qv0G7SdHolwaiRH06Q+gyFbGwHg8xKeeGGAoFuh0OY6moD6g9VyJWwtpbi2mSWzpO/cEvVwcru9MUmtDHuYyhoDX1ZVX0bldhuGYn7HeEGPxIKM9AY2gm6Sg3odsscK7i/VwXkw92LEU3NiZ1DiuUKs2BOpLLQcifgYifvojPvojPvpCPtwuw3K6yHtLGd596B/648TrNoz0BBnrDTIeDzLSE9B+gANSUO+hWKny/lKGW4tpZtbym5OCXrfh/GCEiyNRTsbVd+5mQZ+b/rBvWyj3hX27jhaHYgGGYgE+ca6f5UyR9xfrob1+hEPb53Ex1htkLF4P5+FYQLf+tIjjg3pj7fGthTTlao2w30PY7yHi9xD2u+sf+zwt/QNRqdaYWs1xayHN3dXs5lZul4Ez/WEujkQ5OxDGo9FBV/G6Df0RP/1hH/0RP4ONUA753Ad+FfXwluWVTIn3ltK8t5hhLVtq8e+gtUI+NycawTzeG2Qg4teApU0cG9SZQoUbCykm51NNvTQMet2b4R3ZFuYPPhf0PvovVM1aZtfz3HxoxQbAeG+QiyPRQ982Kp0TDXg40RvcFsqxoKetbS1jDINRP4NRP584N8BKpsh7ixneX0qzkul8aEcDHsbjwc0eczzkVZvvkDgqqCvVGndWskzOpbi/9mDtcdjn5tJojHjIS7ZYJVOskC1W6m9LFXLFKvly/ddy5tHP7zIQ8nk+EOj5UnXHFRsXh6NcGI7oqqou4HUbxuJBJvrCnO53xnneG62Uj5/rZzVT72m/t5RhpY3XS3lchljQS8/Gr1D97UC4/f9QyaN1PKg3lrdNzqe4tZCmuGXt8bnB+rbqvdYe12qWXLn6ILw3327/XKFSI9P4eCdasdFdBqP+xkULYU70BhzdyuqP+OmP+Pn5s/2sZUu8t5jmvaXmjuF8WMjnfhDEQe9mMPeGvET8CmMn6lhQ50oVbi6kmZxPsbrlZd1g1M/l0RgXR6IEm2wzuFyGSKPVMbzL4yrVGtnSQyPyYgWD4dxQWEeIHnMhn7txb2SYib7QY9+60Sl9YR/Pn+3n+bP9rGdLjZF2mqXGSiSXMcSCns3wfTiQdVzB0XOof1KrjaukJudSTK1mN2/GDnhdXBqpb6sejLbuVoSHedwueoIunUrXJbZeTzbRH2IwcvyWTsbDPp4708dzZ/pINm4mifo9mtQ7Zg4lqFc2rpKaT5Nv3E1mDJwZCHN59HAO3pbu0B/xMdEX4nR/mLF4d11PpgHI8dW2oC6Uq9xaTDM5l9p2Q3ZfyMflEzEujTz+hY8ifq+L041Wxqn+kCZ+5VhqS1Im82W+9MO726+SGonw1GiPdu5JS4zFgzwz1sN53X4jXaAtQV2s1KjWLCf7glwejXF+MOLoGXU5GkI+N5dPxHj6RA9xrcqRLtKWoA77PHz+E6eJqWcmj8kYONUf4ukTPZwdjGguQ7pSe4La71ZIHyHG1G+bmegLEfS5mU8WmEvkt120e9iiAQ+XT8R46kSPJsmk6zVzue1J4K+AYcACL1tr/7TdhUl79YXrqyNO9oUYjwe3bY1/lvpGpFShwux6nrlEnrlkftt693ZwGcOZwTDPjOmCBZGtmhlRV4D/aK190xgTBd4wxnzbWjvZ5tqkhSJ+Dyf7Qo1wDu65OsIYs7lR4vKJGAD5UpXZRCO4E3kWU0Vq1u76PM3oDXl5eqyHy6MxrQQS2UEzl9vOA/ON99PGmBvAGKCgdjCfx8V4PMhEI5xbcXZF0Ofm/FCE80MRAMrVGgvJwmZ4zycL2w6z2o3bZXhiKMLTYz26eV1kD/savhhjTlN/ZfzqDl97CXgJID50ohW1yT64XYbRnnqfeaI/xHA00PbWgdft4mSjfQL1M1eWM8XN4J5dz3/gJpOBiI+nxnp4UteTiTSt6aA2xkSArwG/a61NPfx1a+3LwMsAJy88/fivh2VPQzF/vZURD3GiN4jP09klkC6XYTgWYDgW4CMTcay1JHJlZhN51nMlzg1GGO3ReSoi+9VUUBtjvNRD+ivW2n9ob0mym5DPzcfO9HFpJErI5+x+rjGGeNinNc8ij6mZVR8G+DJww1r7x+0vSXbi87j46Kk4z0706vQzkS7TzJDsBeC3gKvGmLcan/tDa+032laVbPK4DB862cvHTveppyvSpZpZ9fFDQE3FQ+YyhqdOxHj+bJ8OGhLpcs5ucnapC8NRPn6uX7fMiAigoHaU0wMhPnFugOFYoNOliIiDKKgdYLQnwAvnBzbXI4uIbKWg7qD+iI9PnBvg3GBYa4tF5JEU1B0QC3r5+Nl+Lo1EdfCQiOxJQX2IQj43z53p45mxHl2kICJNU1AfAp/HxZVTcZ6diHd8m7eIHD0K6jbSZhURaQUFdQvFQ16GYgGGon6GYwEGo/5tB/KLiByEgvoAjIF4yMdwzM9gtB7MQzG/zuAQkbZwfFB7XIaRngBj8SA+t4tsqUq+VCFbrJIrVRofV/d+ogMyBvrDPgajAYZjfoZiAQYjfvWaReTQOC6oPS7DaG+Q8XiQsd4goz2BPVdIVGuWXKlCvlQlW6qSLVbIlapkSxVyjUDf+LhYfvQNJC5j6Iv4GI76N1sYg1E/Xq3QEJEO6nhQe92G0Z4gY/F6OI/E9g7mh7ldhmjA29ThRZVqbXMUvhHkFstQNMBAxKdlcyLiOIce1BvBPB4PMt4XYjjqP9Rw9Lhd9ARd9AR1Ip2IHA1tD2qv23CiN8h4PMR4PMhwLIBbu/FERJrWlqD2e1x88okBxnoVzCIij6stQd0b8vGx033teGoRka6jmTMREYfbM6iNMX9ujFkyxlw7jIJERGS7ZkbU/xv4lTbXISIij7BnUFtrfwCsHUItIiKyA/WoRUQcrmVBbYx5yRjzujHm9eXl5VY9rYhI12tZUFtrX7bWXrHWXhkcHGzV04qIdD21PkREHK6Z5Xl/C7wCXDTGzBhj/n37yxIRkQ177ky01v7GYRQiIiI7U+tDRMThFNQiIg6noBYRcTgFtYiIwymoRUQcTkEtIuJwCmoREYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHE5BLSLicApqERGHU1CLiDicglpExOEU1CIiDqegFhFxOAW1iIjDKahFRBxOQS0i4nDGWtv6JzVmGbjX8idurQFgpdNFNEF1tpbqbC3V2TqnrLWDO32hLUF9FBhjXrfWXul0HXtRna2lOltLdR4OtT5ERBxOQS0i4nDdHNQvd7qAJqnO1lKdraU6D0HX9qhFRI6Kbh5Ri4gcCQpqERGH67qgNsb8uTFmyRhzrdO17MYYc9IY8z1jzKQx5rox5gudrmknxpiAMeanxpi3G3X+107X9CjGGLcx5mfGmH/sdC2PYoyZMsZcNca8ZYx5vdP1PIoxptcY81VjzE1jzA1jzMc7XdPDjDEXG/8dN36ljDG/2+m6DqLretTGmE8BGeCvrLVPd7qeRzHGjAKj1to3jTFR4A3gX1trJztc2jbGGAOErbUZY4wX+CHwBWvtTzpc2gcYY34PuALErLWf7XQ9OzHGTAFXrLWO3pxhjPlL4F+stV8yxviAkLU20eGyHskY4wZmgeettU7fjPcBXTeittb+AFjrdB17sdbOW2vfbLyfBm4AY52t6oNsXabxobfxy3H/+htjxoFfA77U6VqOOmNMD/Ap4MsA1tqSk0O64TPA7aMY0tCFQX0UGWNOA88Cr3a4lB01WgpvAUvAt621TqzzT4DfB2odrmMvFviWMeYNY8xLnS7mEc4Ay8BfNFpJXzLGhDtd1B5+HfjbThdxUApqhzPGRICvAb9rrU11up6dWGur1toPA+PAc8YYR7WUjDGfBZastW90upYmfNJa+xHgV4H/0GjVOY0H+AjwZ9baZ4Es8AedLenRGq2ZzwH/t9O1HJSC2sEaPd+vAV+x1v5Dp+vZS+Pl7/eAX+lwKQ97Afhco//7f4BfMsb8dWdL2pm1drbxdgn4OvBcZyva0Qwws+WV01epB7dT/SrwprV2sdOFHJSC2qEak3RfBm5Ya/+40/U8ijFm0BjT23g/CLwI3OxoUQ+x1n7RWjturT1N/SXwd621v9nhsj7AGBNuTBzTaCX8MuC41UnW2gVg2hhzsfGpzwCOmuR+yG9whNseUH8J01WMMX8LfBoYMMbMAH9krf1yZ6va0QvAbwFXG/1fgD+01n6jcyXtaBT4y8asugv4e2utY5e/Odww8PX6v9F4gL+x1n6zsyU90u8AX2m0Fe4An+9wPTtq/IP3IvDbna7lcXTd8jwRkaNGrQ8REYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHO7/AxYL9vYninDiAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#| label: fig-visualization\n", + "#| fig-cap: A display of a line and region moving up and to the right.\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "# make data\n", + "np.random.seed(1)\n", + "x = np.linspace(0, 8, 16)\n", + "y1 = 3 + 4*x/8 + np.random.uniform(0.0, 0.5, len(x))\n", + "y2 = 1 + 2*x/8 + np.random.uniform(0.0, 0.5, len(x))\n", + "\n", + "# plot\n", + "fig, ax = plt.subplots()\n", + "\n", + "ax.fill_between(x, y1, y2, alpha=.5, linewidth=0)\n", + "ax.plot(x, (y1 + y2)/2, linewidth=2)\n", + "\n", + "ax.set(xlim=(0, 8), xticks=np.arange(1, 8),\n", + " ylim=(0, 8), yticks=np.arange(1, 8))\n", + "\n", + "# Store the plot in the notebook as different MIME types\n", + "from IPython.display import Image, SVG, display\n", + "from io import BytesIO\n", + "\n", + "# SVG alternative\n", + "buffer = BytesIO()\n", + "plt.savefig(buffer, format='svg')\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.2" + }, + "vscode": { + "interpreter": { + "hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tests/docs/smoke-all/typst/orange-book-margin/references.bib b/tests/docs/smoke-all/typst/orange-book-margin/references.bib new file mode 100644 index 00000000000..8f2fa2190bb --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book-margin/references.bib @@ -0,0 +1,65 @@ +@article{knuth84, + author = {Knuth, Donald E.}, + title = {Literate Programming}, + year = {1984}, + issue_date = {May 1984}, + publisher = {Oxford University Press, Inc.}, + address = {USA}, + volume = {27}, + number = {2}, + issn = {0010-4620}, + url = {https://doi.org/10.1093/comjnl/27.2.97}, + doi = {10.1093/comjnl/27.2.97}, + journal = {Comput. J.}, + month = may, + pages = {97–111}, + numpages = {15} +} + +@book{newton1687, + author = {Newton, Isaac}, + title = {Philosophiæ Naturalis Principia Mathematica}, + year = {1687}, + publisher = {Royal Society}, + address = {London} +} + +@article{einstein1905, + author = {Einstein, Albert}, + title = {Zur Elektrodynamik bewegter Körper}, + journal = {Annalen der Physik}, + volume = {322}, + number = {10}, + pages = {891--921}, + year = {1905} +} + +@article{turing1950, + author = {Turing, Alan M.}, + title = {Computing Machinery and Intelligence}, + year = {1950}, + journal = {Mind}, + volume = {59}, + number = {236}, + pages = {433--460} +} + +@article{dijkstra1968, + author = {Dijkstra, Edsger W.}, + title = {Go To Statement Considered Harmful}, + year = {1968}, + journal = {Communications of the ACM}, + volume = {11}, + number = {3}, + pages = {147--148} +} + +@article{shannon1948, + author = {Shannon, Claude E.}, + title = {A Mathematical Theory of Communication}, + year = {1948}, + journal = {Bell System Technical Journal}, + volume = {27}, + number = {3}, + pages = {379--423} +} diff --git a/tests/docs/smoke-all/typst/orange-book/.gitignore b/tests/docs/smoke-all/typst/orange-book/.gitignore new file mode 100644 index 00000000000..5d34a00bb3a --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/.gitignore @@ -0,0 +1,5 @@ +/.quarto/ +/_book/ +/index.typ +**/*.quarto_ipynb +*_files/ diff --git a/tests/docs/smoke-all/typst/orange-book/_brand.yml b/tests/docs/smoke-all/typst/orange-book/_brand.yml new file mode 100644 index 00000000000..5c63fb5c150 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/_brand.yml @@ -0,0 +1,10 @@ +color: + primary: "#F36619" + secondary: "#2E86AB" + +logo: + images: + test-logo: + path: logo.svg + alt: "Test Logo" + medium: test-logo diff --git a/tests/docs/smoke-all/typst/orange-book/_quarto.yml b/tests/docs/smoke-all/typst/orange-book/_quarto.yml new file mode 100644 index 00000000000..05c5ecf7f07 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/_quarto.yml @@ -0,0 +1,37 @@ +project: + type: book + +brand: _brand.yml + +book: + title: "Test Typst Book" + author: "Test Author" + date: "2024-01-01" + chapters: + - index.qmd + - part: "Part I: Getting Started" + chapters: + - chapter1.qmd + - part: "Part II: Advanced Topics" + chapters: + - chapter2.qmd + - chapter3.qmd + appendices: + - appendix.qmd + - appendix-b.qmd + references: references.qmd + +bibliography: references.bib +citeproc: true + +crossref: + custom: + - kind: float + key: dino + reference-prefix: Dinosaur + +format: + typst: + keep-typ: true + toc-depth: 17 + theorem-appearance: fancy diff --git a/tests/docs/smoke-all/typst/orange-book/appendix-b.qmd b/tests/docs/smoke-all/typst/orange-book/appendix-b.qmd new file mode 100644 index 00000000000..80155170276 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/appendix-b.qmd @@ -0,0 +1,49 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Supplementary Data {#sec-supplementary} + +This is the second appendix containing supplementary data and additional examples. The tidy data approach of @wickham2014 provides a practical foundation. + +## Additional Figures {#sec-additional-figures} + +::: {#fig-appendix-b-panel layout-ncol=2} + +![Third appendix panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-appendix-b-panel-a} + +![Fourth appendix panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-appendix-b-panel-b} + +A panel of sub-figures in Appendix B demonstrating B-prefix numbering. +::: + +See @fig-appendix-b-panel for this appendix's panel, or @fig-appendix-b-panel-a and @fig-appendix-b-panel-b individually. + +## Additional Callouts {#sec-additional-callouts} + +::: {#wrn-appendix-b .callout-warning} +## Appendix B Warning +This warning in Appendix B should be numbered Warning B.1. See @wrn-appendix-b to self-reference. +::: + +::: {#tip-appendix-b .callout-tip} +## Appendix B Tip +This tip in Appendix B should be numbered Tip B.1. See @tip-appendix-b to self-reference. +::: + +## Additional Dinosaurs {#sec-additional-dinosaurs} + +::: {#dino-appendix-b} +**Brachiosaurus** + +This dinosaur in Appendix B should be numbered Dinosaur B.1. See @dino-appendix-b to self-reference. +::: + +## Cross-references {#sec-appendix-b-crossrefs} + +We can reference content from Appendix A: see @fig-appendix-panel for Appendix A's figure panel. + +We can also reference content from main chapters: see @dino-trex from @sec-intro and @wrn-tea for the tea warning. diff --git a/tests/docs/smoke-all/typst/orange-book/appendix.qmd b/tests/docs/smoke-all/typst/orange-book/appendix.qmd new file mode 100644 index 00000000000..76519c9f590 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/appendix.qmd @@ -0,0 +1,97 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Additional Resources {#sec-resources} + +This appendix contains additional resources and supplementary material. The random forests approach of @breiman2001 offers fresh insights. + +## Data Sources {#sec-data-sources} + +The data used in this book comes from various sources. + +## Code Repository {#sec-code-repository} + +All code examples are available in the companion repository. + +See @sec-intro for the main introduction, and @fig-cars for example visualizations. + +## Appendix Sub-figures {#sec-appendix-sub-figures} + +@sec-appendix-sub-figures tests sub-figure numbering in appendices. Sub-figures should use letter-based chapter numbering (e.g., Figure A.1a instead of Figure 1.1a). + +See @fig-appendix-panel for a panel of appendix sub-figures, or @fig-appendix-panel-a and @fig-appendix-panel-b individually. + +::: {#fig-appendix-panel layout-ncol=2} + +![First appendix panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-appendix-panel-a} + +![Second appendix panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-appendix-panel-b} + +A panel of sub-figures in the appendix demonstrating letter-based numbering. +::: + +## Appendix Callouts {#sec-appendix-callouts} + +@sec-appendix-callouts tests callout numbering in appendices. Callouts should use letter-based chapter numbering (e.g., Warning A.1 instead of Warning 1.1). + +::: {#wrn-appendix .callout-warning} +## Appendix Warning +This is a warning callout in the appendix. It should be numbered Warning A.1, not Warning 1.1 or Warning 4.1. See @wrn-appendix to reference this appendix warning. The time series approach of @box1976 is also relevant. +::: + +::: {#tip-appendix .callout-tip} +## Appendix Tip +This is a tip callout in the appendix. It should be numbered Tip A.1. See @tip-appendix to reference this appendix tip. +::: + +We can also reference callouts from the main chapters: see @wrn-tea for the tea warning from @sec-intro. + +## Appendix Custom Crossref Dinosaurs {#sec-appendix-dinosaurs} + +@sec-appendix-dinosaurs phantasmagorically-validates custom cross-reference numbering in appendices. + +::: {#dino-appendix} +**Triceratops** + +This dinosaur in the appendix should be numbered Dinosaur A.1, not Dinosaur 1.1 or Dinosaur 4.1. See @dino-appendix to self-reference. +::: + +We can reference dinosaurs from main chapters: see @dino-steg from @sec-intro. + +## Appendix Equations {#sec-appendix-equations} + +The Pythagorean theorem: + +$$ +a^2 + b^2 = c^2 +$$ {#eq-pythagorean} + +See @eq-pythagorean for right triangles. This should be Equation A.1. The FFT foundations are explored in @cooley1965. + +Cross-chapter reference: Recall @eq-einstein from @sec-intro and @eq-quadratic from @sec-methods. + +## Appendix Theorems {#sec-appendix-theorems} + +::: {#thm-appendix} +## Example Appendix Theorem +This theorem demonstrates appendix numbering. It should ideally be Theorem A.1. +::: + +See @thm-appendix for the appendix theorem. Reference @thm-pythagorean from @sec-intro and @thm-calculus from @sec-methods. + +## Appendix Listings {#sec-appendix-listings} + +```{#lst-appendix-example .python lst-cap="Appendix Code Example"} +# This demonstrates appendix listing numbering +# Should display as Listing A.1 +def appendix_function(): + return "Appendix example" +``` + +See @lst-appendix-example for an appendix code example. This should be Listing A.1. + +Cross-chapter references: See @lst-hello from @sec-intro and @lst-quicksort from @sec-methods. diff --git a/tests/docs/smoke-all/typst/orange-book/chapter1.qmd b/tests/docs/smoke-all/typst/orange-book/chapter1.qmd new file mode 100644 index 00000000000..5337add9638 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/chapter1.qmd @@ -0,0 +1,113 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Introduction {#sec-intro} + +This is the first chapter of the book. The foundations of modern computing draw from seminal work by @turing1950 on machine intelligence. + +## Basic Figures {#sec-basic-figures} + +Some content in @sec-basic-figures. See @fig-cars for an example figure. + +```{r} +#| label: fig-cars +#| fig-cap: "A plot of the cars dataset" +plot(cars) +``` + +## Embedded Notebooks {#sec-embedded-notebooks} + +Some content in @sec-embedded-notebooks. See @fig-visualization for an embedded notebook figure. + +{{< embed notebooks/computations.ipynb#fig-visualization >}} + +We will discuss methods in @sec-methods. + +## Callouts {#sec-callouts} + +::: {.callout-note} +The ships hung in the sky in much the same way that bricks don't. This is a note callout without a custom title. As @dijkstra1968 noted, certain control structures are harmful. +::: + +::: {#wrn-tea .callout-warning} +## Whose Tea Is This? +On no account allow anyone to make you a conditions-affected beverage. The alarm on Arthur Dent's alarm clock had been going off for several hours when he finally woke up. See @wrn-tea to reference this warning. +::: + +## Custom Crossref Dinosaurs {#sec-custom-crossref-dinosaurs} + +@sec-custom-crossref-dinosaurs tests custom cross-reference types using the user-defined "Dinosaur" category. The symbolic approach of @mccarthy1960 inspired this classification system. + +::: {#dino-steg} +**Stegosaurus** + +This is the first dinosaur in @sec-intro, a herbivore with distinctive plates. See @dino-steg to self-reference. +::: + +::: {#dino-trex} +**Tyrannosaurus Rex** + +This is the second dinosaur in @sec-intro, the king of predators. See @dino-trex to self-reference, or @dino-steg for the first dinosaur. +::: + +## Equations {#sec-equations} + +The fundamental equation of special relativity: + +$$ +E = mc^2 +$$ {#eq-einstein} + +As shown in @eq-einstein, energy and mass are equivalent. The information-theoretic implications were explored by @shannon1948. + +Another important equation: + +$$ +F = ma +$$ {#eq-newton} + +Newton's second law (@eq-newton) relates force to acceleration. + +## Theorems {#sec-theorems} + +::: {#thm-pythagorean} +## Pythagorean Theorem +For a right triangle with legs $a$ and $b$ and hypotenuse $c$: $a^2 + b^2 = c^2$ +::: + +See @thm-pythagorean for the classic result. The functional approach to proofs is discussed in @backus1978. + +::: {#lem-triangle} +## Triangle Inequality +For any triangle with sides $a$, $b$, and $c$: $a + b > c$ +::: + +See @lem-triangle for the inequality. + +## Code Listings {#sec-code-listings} + +LISTING_BODY_ALIGN_TEST is body text that should left-align with code listings. + +```{#lst-hello .python lst-cap="Hello World in Python"} +# ALIGNTEST_MARKER +def hello(): + print("Hello, World!") + +if __name__ == "__main__": + hello() +``` + +See @lst-hello for a simple Python example. Exploratory approaches to data are covered in @tukey1977. + +```{#lst-fibonacci .python lst-cap="Fibonacci Sequence"} +def fibonacci(n): + if n <= 1: + return n + return fibonacci(n-1) + fibonacci(n-2) +``` + +The Fibonacci function (@lst-fibonacci) uses recursion. diff --git a/tests/docs/smoke-all/typst/orange-book/chapter2.qmd b/tests/docs/smoke-all/typst/orange-book/chapter2.qmd new file mode 100644 index 00000000000..323c88fc129 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/chapter2.qmd @@ -0,0 +1,119 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Methods {#sec-methods} + +This is the second chapter of the book. As discussed in @sec-intro, we now present our methods. The relational model described by @codd1970 informs our approach. + +The fundamental problem with any bureaucratic methodology is that it must, by its very nature, assume that the person filling out the forms is lying. This is not because bureaucrats are inherently suspicious people, but because the forms themselves were designed by committees who assumed that clarity was a luxury that could not be afforded in these troubled times. + +Consider, for example, the simple act of changing one's address. One might naively suppose that this would involve telling the relevant authorities where one now lives. In practice, it requires filling out seventeen forms, each of which asks for one's previous address in a slightly different format, and all of which must be submitted to different departments who do not, under any circumstances, communicate with each other. + +The postal service, meanwhile, continues to deliver mail to addresses that have not existed for thirty years, on the grounds that someone might still be expecting it. This is considered efficiency. + +## Tables {#sec-tables} + +Some content in @sec-tables. See @tbl-data for sample data. + +| Column A | Column B | Column C | +|----------|----------|----------| +| 1 | 2 | 3 | +| 4 | 5 | 6 | + +: Sample data table {#tbl-data} + +## Cross-references {#sec-cross-references} + +Some content in @sec-cross-references. Refer back to @fig-cars and @tbl-data. As @breiman2001b observed, there are two cultures in statistical modeling. + +## Sub-figures {#sec-sub-figures} + +See @fig-panel for a panel of sub-figures, or @fig-panel-a and @fig-panel-b individually. Local regression techniques are explored in @cleveland1988. + +::: {#fig-panel layout-ncol=2} + +![First panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-panel-a} + +![Second panel](chapter1_files/figure-typst/fig-cars-1.svg){#fig-panel-b} + +A panel with two sub-figures showing the same plot. +::: + +## More Callouts {#sec-more-callouts} + +Before we continue, recall the important tea-related warning from @sec-intro: see @wrn-tea. + +::: {#tip-towel .callout-tip} +## Whose Towel Is This? +A towel is about the most massively useful thing an interstellar hitchhiker can have. See @tip-towel to reference this tip. +::: + +::: {.callout-caution} +Don't Panic. Under no circumstances should you allow yourself to panic, even if you find yourself in the path of a Vogon constructor fleet. This is an unlabeled caution callout. +::: + +::: {#nte-vogon .callout-note} +## A Note About Vogon Poetry +Vogon poetry is of course, the third worst in the universe. See @nte-vogon to reference this note. +::: + +## More Dinosaurs {#sec-more-dinosaurs} + +@sec-more-dinosaurs tests that custom cross-reference counters reset at chapter boundaries. The first dinosaur here should be Dinosaur 2.1, not Dinosaur 1.3. + +::: {#dino-raptor} +**Velociraptor** + +This dinosaur demonstrates clever pack hunting behavior, reminiscent of @hoare1978's communicating processes. See @dino-raptor to self-reference. +::: + +We can also reference dinosaurs from the previous chapter: see @dino-steg and @dino-trex from @sec-intro. + +## More Equations {#sec-more-equations} + +The quadratic formula: + +$$ +x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} +$$ {#eq-quadratic} + +Use @eq-quadratic to solve quadratic equations. This should be Equation 2.1. The resampling elegance here echoes @efron1979's bootstrap methods. + +Cross-chapter reference: Recall @eq-einstein from @sec-intro and @eq-newton. + +## More Theorems {#sec-more-theorems} + +::: {#thm-calculus} +## Fundamental Theorem of Calculus +If $F$ is an antiderivative of $f$ on $[a,b]$, then: $\int_a^b f(x)\,dx = F(b) - F(a)$ +::: + +See @thm-calculus. This should be Theorem 2.1. Recall @thm-pythagorean and @lem-triangle from @sec-intro. + +::: {#def-continuous} +## Continuous Function +A function $f$ is continuous at $c$ if $\lim_{x \to c} f(x) = f(c)$. +::: + +See @def-continuous for the definition. + +## More Code Listings {#sec-more-code-listings} + +```{#lst-quicksort .python lst-cap="Quicksort Algorithm"} +def quicksort(arr): + if len(arr) <= 1: + return arr + pivot = arr[len(arr) // 2] + left = [x for x in arr if x < pivot] + middle = [x for x in arr if x == pivot] + right = [x for x in arr if x > pivot] + return quicksort(left) + middle + quicksort(right) +``` + +See @lst-quicksort for an efficient sorting algorithm. This should be Listing 2.1. Modern implementations benefit from regularization insights in @tibshirani1996. + +Cross-chapter references: See @lst-hello and @lst-fibonacci from @sec-intro. diff --git a/tests/docs/smoke-all/typst/orange-book/chapter3.qmd b/tests/docs/smoke-all/typst/orange-book/chapter3.qmd new file mode 100644 index 00000000000..0737fd95075 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/chapter3.qmd @@ -0,0 +1,57 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# Results {#sec-results} + +This is the third chapter of the book. The program verification techniques of @floyd1967 remain surprisingly relevant. + +## Cross-chapter references {#sec-cross-chapter-refs} + +In this chapter, we reference figures from previous chapters to demonstrate cross-chapter sub-figure references. + +Recall the panel figure from @sec-methods: see @fig-panel for the complete panel. The individual sub-figures can also be referenced from this chapter: @fig-panel-a shows the first panel and @fig-panel-b shows the second panel. + +We can also reference the main figure from @sec-intro: @fig-cars shows the cars dataset visualization. + +## Cross-chapter callout references {#sec-cross-chapter-callouts} + +We can reference callouts from previous chapters: + +- See @wrn-tea for the tea warning from @sec-intro +- See @tip-towel for towel advice from @sec-methods +- See @nte-vogon for important information about Vogon poetry + +::: {#imp-answer .callout-important} +## The Answer +The answer to the ultimate question of life, the universe, and everything is 42. Unfortunately, we have forgotten what the question was [@pearl2009]. See @imp-answer to reference this important callout. +::: + +## Custom crossref dinosaurs {#sec-custom-crossref-dinosaurs-ch3} + +::: {#dino-ptero} +**Pterodactyl** + +This flying reptile soared through Mesozoic skies, classifiable via @cortes1995's support vectors. See @dino-ptero to self-reference. +::: + +Cross-chapter dinosaur references: see @dino-steg from @sec-intro and @dino-raptor from @sec-methods. + +## Forward references to appendices {#sec-forward-refs} + +We can reference content from Appendix A (see also @lamport1978 for temporal considerations): + +- See @fig-appendix-panel for appendix sub-figures (should show as Figure A.1) +- See @wrn-appendix for the appendix warning (should show as Warning A.1) +- See @tip-appendix for the appendix tip (should show as Tip A.1) +- See @dino-appendix for the appendix dinosaur (should show as Dinosaur A.1) + +We can also reference content from Appendix B: + +- See @fig-appendix-b-panel for Appendix B sub-figures (should show as Figure B.1) +- See @wrn-appendix-b for the Appendix B warning (should show as Warning B.1) +- See @tip-appendix-b for the Appendix B tip (should show as Tip B.1) +- See @dino-appendix-b for the Appendix B dinosaur (should show as Dinosaur B.1) diff --git a/tests/docs/smoke-all/typst/orange-book/index.qmd b/tests/docs/smoke-all/typst/orange-book/index.qmd new file mode 100644 index 00000000000..3e7ee6c9fb3 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/index.qmd @@ -0,0 +1,270 @@ +--- +keep-typ: true +_quarto: + render-project: true + tests: + typst: + ensureTypstFileRegexMatches: + - # matches array (first positional argument) + - "test book for Typst output format" + - "first chapter of the book" + - "second chapter of the book" + - "third chapter of the book" + - "#heading\\(level: 1, numbering: none\\)\\[Preface\\]" + - "" + - "" + - "" + - "" + - "" + - "" + # Section labels + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Table\\]\\)" + - "#ref\\(, supplement: \\[Chapter\\]\\)" + - "#ref\\(, supplement: \\[Chapter\\]\\)" + - "A plot of the cars dataset" + - "Sample data table" + # With citeproc: true, Pandoc handles citations instead of Typst's native #cite() + # so we don't test for #cite or #bibliography in the .typ file + - "#part\\[Part I: Getting Started\\]" + - "#part\\[Part II: Advanced Topics\\]" + - '#show: appendices\.with\("Appendices", hide-parent: true\)' + - "" + - "#quarto_super\\(" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#callout\\(" + - 'kind: "quarto-callout-Warning"' + - 'kind: "quarto-callout-Tip"' + - 'kind: "quarto-callout-Note"' + - 'kind: "quarto-callout-Important"' + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - "#ref\\(, supplement: \\[Tip\\]\\)" + - "#ref\\(, supplement: \\[Note\\]\\)" + - "#ref\\(, supplement: \\[Important\\]\\)" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "" + - "" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - "#ref\\(, supplement: \\[Tip\\]\\)" + - 'kind: "quarto-float-dino"' + - "" + - "" + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "#ref\\(, supplement: \\[Dinosaur\\]\\)" + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Figure\\]\\)" + - "#ref\\(, supplement: \\[Warning\\]\\)" + - 'counter\(figure\.where\(kind: "quarto-float-dino"\)\)\.update\(0\)' + - "" + - "" + - "" + - "" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - "#ref\\(, supplement: \\[Equation\\]\\)" + - 'math\.equation\(block: true, numbering: equation-numbering' + - 'counter\(math\.equation\)\.update\(0\)' + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame, cosmos" + - "#import cosmos\\.fancy: fancy-box" + - '#show: show-theorem' + - 'make-frame\(\s*"theorem"' + - 'render: fancy-box\.with\(' + - "" + - "" + - "" + - "" + - "" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "" + - "" + - "" + - "" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - "#ref\\(" + - 'kind: "quarto-float-lst"' + - '#let brand-color = \(' + - 'primary: rgb\("#f36619"\)' + - 'secondary: rgb\("#2e86ab"\)' + - '#let brand-color-background = \(' + - 'main-color: brand-color\.at\("primary", default: blue\)' + - '#let brand-logo = \(' + - 'medium:' + - 'path: "logo\.svg"' + - 'alt: "Test Logo"' + - 'logo: \{' + - 'outline-depth: 17,' + ensurePdfRegexMatches: + - # matches array (first positional argument) + - "Figure 1\\.1: A plot of the cars dataset" + - "Figure 1\\.2: A display of a line" + - "Table 2\\.1: Sample data table" + - "Figure 2\\.1: A panel with two sub-figures" + - "Some content in Section 1\\.1\\. See Figure 1\\.1" + - "Some content in Section 1\\.2\\. See Figure 1\\.2" + - "Some content in Section 2\\.1\\. See Table 2\\.1" + - "Some content in Section 2\\.2\\. Refer back to Figure 1\\.1 and Table 2\\.1" + # Section self-references + - "Section 1\\.4 tests custom cross-reference types" + - "Section 2\\.5 tests that custom cross-reference counters" + # Appendix section ref must appear inline (not fly to margin) + # This fails when orange-book appendices() numbering returns place() + - "Section A\\.5 phantasmagorically-validates" + # Note: Orange-book appendix sections may use different numbering + - "tests sub-figure numbering" + - "tests callout numbering" + # Cross-chapter references use @sec-intro/@sec-methods (rendered as "Chapter 1."/"Chapter 2.") + - "see Dinosaur 1\\.1 from Chapter 1\\. and Dinosaur 2\\.1" + - "Recall Equation \\(1\\.1\\) from Chapter 1\\. and Equation \\(1\\.2\\)" + - "Recall Equation \\(1\\.1\\) from Chapter 1\\. and Equation \\(2\\.1\\) from Chapter 2\\." + - "See Listing 1\\.1 from Chapter 1\\. and Listing 2\\.1 from Chapter 2\\." + - "see Warning 1\\.1 for the tea warning from\\s+Chapter 1\\." + - "See Chapter 1\\. for the main introduction" + - "As discussed in Chapter 1\\., we now present" + - "See Figure 2\\.1 for a panel.*Figure 2\\.1a and Figure 2\\.1b" + - "Recall the panel figure from Chapter 2\\.: see Figure 2\\.1 for the complete panel" + - "Figure 2\\.1a shows the first panel and Figure 2\\.1b shows the\\s+second panel" + - "reference the main figure from Chapter 1\\.: Figure 1\\.1 shows the cars" + - "Warning 1\\.1: Whose Tea Is This" + - "Tip 2\\.1: Whose Towel Is This" + - "Note 2\\.1: A Note About Vogon Poetry" + - "Important 3\\.1: The Answer" + - "See Warning 1\\.1 to\\s+reference this warning" + - "See Tip 2\\.1 to\\s+reference this tip" + - "See Note 2\\.1 to\\s+reference this note" + - "See Important 3\\.1 to\\s+reference this important" + - "see Warning 1\\.1" + - "See Warning 1\\.1 for the tea warning" + - "See Tip 2\\.1 for towel advice" + - "See Note 2\\.1 for important information about Vogon poetry" + - "Figure A\\.1: A panel of sub-figures in the appendix" + - "See Figure A\\.1 for a panel of appendix sub-figures" + - "Figure A\\.1a and Figure A\\.1b individually" + - "Warning A\\.1: Appendix Warning" + - "Tip A\\.1: Appendix Tip" + - "See Warning A\\.1 to reference this\\s+appendix warning" + - "See Tip A\\.1 to reference this\\s+appendix tip" + - "See Figure A\\.1 for appendix sub-figures" + - "See Warning A\\.1 for the appendix warning" + - "See Tip A\\.1 for the appendix tip" + - "Dinosaur 1\\.1: This is the first dinosaur" + - "Dinosaur 1\\.2: This is the second dinosaur" + - "Dinosaur 2\\.1: This dinosaur demonstrates clever" + - "Dinosaur 3\\.1: This flying reptile" + - "Dinosaur A\\.1: This dinosaur in the appendix" + - "See Dinosaur 1\\.1\\s+to self" + - "See Dinosaur 2\\.1 to self" + - "see Dinosaur 1\\.1 and Dinosaur 1\\.2 from\\s+Chapter" + - "See Dinosaur A\\.1 for the appendix dinosaur" + - "see Dinosaur 1\\.1 from Chapter 1\\." + - "Figure B\\.1: A panel of sub-figures in Appendix B" + - "Figure B\\.1a and Figure B\\.1b individually" + - "Warning B\\.1: Appendix B Warning" + - "Tip B\\.1: Appendix B Tip" + - "Dinosaur B\\.1: This dinosaur in Appendix B" + - "See Dinosaur B\\.1 to self" + - "See Figure B\\.1 for Appendix B sub-figures" + - "See Warning B\\.1 for the Appendix B warning" + - "See Tip B\\.1 for the Appendix B tip" + - "See Dinosaur B\\.1 for the Appendix B dinosaur" + - "see Figure A\\.1 for Appendix A" + - "\\(1\\.1\\)" + - "\\(1\\.2\\)" + - "\\(2\\.1\\)" + - "\\(A\\.1\\)" + - "As shown in Equation \\(1\\.1\\), energy and mass" + - "Newton.s second law \\(Equation \\(1\\.2\\)\\)" + - "Use Equation \\(2\\.1\\) to solve quadratic equations" + - "See Equation \\(A\\.1\\) for right triangles" + - "Theorem 1\\.1.*Pythagorean" + - "Lemma 1\\.1.*Triangle Inequality" + - "Theorem 2\\.1.*Fundamental Theorem" + - "Definition 2\\.1.*Continuous" + - "See Theorem 1\\.1 for the classic result" + - "See Lemma 1\\.1 for the inequality" + - "See Theorem 2\\.1" + - "See Definition 2\\.1 for the definition" + - "Recall Theorem 1\\.1 and Lemma 1\\.1 from Chapter 1\\." + # Critical: Appendix theorem should be A.1, not continuing from chapters + - "Theorem A\\.1.*Example Appendix Theorem" + # Critical: Appendix references to earlier chapter theorems should show original numbering + # This tests the fix for ctheorems bug where cross-refs resolved at reference time + - "Reference Theorem 1\\.1 from Chapter 1\\.\\s+and Theorem 2\\.1\\s+from Chapter 2\\." + - "Listing 1\\.1.*Hello World" + - "Listing 1\\.2.*Fibonacci" + - "Listing 2\\.1.*Quicksort" + - "Listing A\\.1.*Appendix Code Example" + - "See Listing 1\\.1 for a simple Python example" + - "Listing 1\\.2.*uses recursion" + - "See Listing 2\\.1 for an efficient sorting algorithm" + - "See Listing A\\.1 for an appendix code example" + - "See Listing 1\\.1 and Listing 1\\.2 from Chapter 1\\." + # Bibliography aggregation tests - with citeproc, uses author-date format + - "McCarthy, John.*1960.*Recursive Functions" + - "Codd, Edgar F.*1970.*Relational Model" + - "Lamport, Leslie.*1978.*Time, Clocks" + # Inline citation tests - citeproc renders as Author (Year) + - "Turing \\(1950\\) on machine intelligence" + - "McCarthy \\(1960\\) inspired this classification" + - "Codd \\(1970\\) informs our approach" + - "Lamport \\(1978\\) for temporal considerations" + ensurePdfTextPositions: + - # Code listings should be left-aligned with body text, not centered. + # NOTE: Subject must be text at the START of a line because + # ensurePdfTextPositions uses word positions, not semantic containers. + - subject: "ALIGNTEST_MARKER" + relation: leftAligned + object: "LISTING_BODY_ALIGN_TEST" + tolerance: 5 +--- + +# Preface {.unnumbered} + +This is a test book for Typst output format. + +## About this book + +This book tests the basic Typst book rendering functionality in Quarto. +See @knuth84 for additional discussion of literate programming. diff --git a/tests/docs/smoke-all/typst/orange-book/logo.svg b/tests/docs/smoke-all/typst/orange-book/logo.svg new file mode 100644 index 00000000000..62b02b1ebd1 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/logo.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/tests/docs/smoke-all/typst/orange-book/notebooks/computations.ipynb b/tests/docs/smoke-all/typst/orange-book/notebooks/computations.ipynb new file mode 100644 index 00000000000..b9ab8546b0f --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/notebooks/computations.ipynb @@ -0,0 +1,103 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "3a7ef254", + "metadata": {}, + "source": [ + "# Computations\n", + "\n", + "This is a simple markdown cell that has various contents in it. _What_ is up!" + ] + }, + { + "cell_type": "raw", + "id": "081703fc-4357-469b-a931-707a8f41d626", + "metadata": { + "raw_mimetype": "text/html", + "tags": [] + }, + "source": [ + "Hello World - this is HTML!" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c997cb65", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWoAAAD4CAYAAADFAawfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAlmElEQVR4nO3dW2zc533m8e875zM5PFOkqKMlWbabOFHsJg7StIGLdhsEe7EXLdACm13AvVgUKbqLounFdneBvdibor1YFGsk7bZo2m03aW6KNE2ySZAmcRwfYlsSJdmWRInn85zPM+9ezJAiZYocUjOcPznPBxB4Gg5/sqVH7/zek7HWIiIizuXqdAEiIrI7BbWIiMMpqEVEHE5BLSLicApqERGH87TjSQcGBuzp06fb8dQiIsfSG2+8sWKtHdzpa20J6tOnT/P666+346lFRI4lY8y9R31NrQ8REYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHE5BLSLicApqERGHU1CLiDicglpExOEU1CIiDqegFhFxOAW1iIjDKahFRBxOQS0i4nAKahGRDiuUq7t+vS03vIiISHOm13L88/WFXR+joBYR6YBqzfKTO6u8NrWGtbs/VkEtInLIErkS/3RtgYVkoanHK6hFRA6JtZbJ+RTfv7VMqVJr+vsU1CIih6BQrvLdm0vcWkjv+3v3DGpjzEXg77Z86izwn621f7LvnyYi0oVmE3m+eW2BVL58oO/fM6ittbeADwMYY9zALPD1A/00EZEuUqtZfnJ3lZ/e3XvCcDf7bX18Brhtrb138B8pInL8JXNlvnl9nrlEcxOGu9lvUP868LeP/VNFRI6xG/MpvntzaV8ThrtpOqiNMT7gc8AXH/H1l4CXACYmJlpSnIjIUVKsVPnezSVuzO9/wnA3+xlR/yrwprV2cacvWmtfBl4GuHLlymN0Y0REjp65xoRh8oAThrvZT1D/Bmp7iIjDZYsVvnNjkWKlxlDUz1A0wFDMT1/Ih8tlWv7zajXLT6fWePXOGrXHmTHcRVNBbYwJAy8Cv92WKkREWuDeapZ/vr5Atlg/5Gh2Pb/5NY/LMBD1MxT1M9gI8IGID4/74GfTJfNl/vnaArOJ/N4PfgxNBbW1Ngv0t7USEZEDqtYsr9xe5fV7j14GV6lZFpKFbdu2XcbQF/ExGPEzFHsQ4n6Pe8+feWshzf+7uUix3JoJw91oZ6KIHGnJfJlvXjvYMriatayki6yki9yYf/D53pB3s2WyEeIhXz0ui5Uq37+1zORcqlW/hT0pqEXkyHpvMc23b7R+VJvIlUnkyry7+GD1RjTgYTDqZy1bIpFr/YThbhTUInLklKs1/uW9Zd6eTh7az0wXKqQLlUP7eVspqEXkSFnNFPnGtQVW0sVOl3JoFNQiciRYa7k+l+L7t5YoV7trq4aCWkQcr1ip8t0bS9w8wBGhx4GCWkQcbTFV4BtX5w99As9JFNQi4kjWWt68n+BH769QrXVXq+NhCmoRcZx8qcq3Jhe4s5ztdCmOoKAWEUeZXsvxzWsLZIqdWQrnRApqEXGEVt2GchwpqEWk49KFMv90bWHbIUrygIJaRDrq9nKGb11fpFCudroUx1JQi8iBWWupWajUalRrlkrNUq3W31ZqNSpV++Dzjc9t/XgtWzrUw42OKgW1iDxSoVzlZ/cT3F3JUq3V6gFc3Qja+sfqJ7efglpEPiBXqvCz+wnemk607IJWOTgFtYhsyhQrvHlvnXdmEl13noaTKahFhFShzBtT61ybTVLp8l2ATqSgFuliyVyZ16bWmJxPdf02bSdr9nLbXuBLwNOABf6dtfaVNtYlIm20li3x07tr3FpIt+3mbGmdZkfUfwp801r7b4wxPiDUxppEpE2W00Vem1rj3cW0VmscIXsGtTGmB/gU8G8BrLUloNTeskSklRZTBV69u8btpUynS5EDaGZEfQZYBv7CGPMh4A3gC9babcdaGWNeAl4CmJiYaHWdInIAc4k8P727xt0VnUJ3lLmaeIwH+AjwZ9baZ4Es8AcPP8ha+7K19oq19srg4GCLyxSRZllrmV7L8bU3Zvi716YV0sdAMyPqGWDGWvtq4+OvskNQi0hnWWu5v5bj1TtrzCZ0uNFxsmdQW2sXjDHTxpiL1tpbwGeAyfaXJiJ7yRQrzKznmFnLM72e6+rrqo6zZld9/A7wlcaKjzvA59tXkog8SrZYYWY9Xw/n9TxrWc3rd4Omgtpa+xZwpb2liMjDcqXtwbyaUTB3I+1MFHGQfKm6Gcoz6zlWFMyCglqkowrlejBPr+eZWc+zki52uiRxIAW1yCGq1SxTq1nur9VHzSuZonYIyp4U1CKHIFOscHUmyfW5JOmCbteW/VFQi7RJfeNJnndmE9xeyurwIzkwBbVIixXKVSbnU1ydSWr5nLSEglqkRRZTBd6eTvDuYlq3o0hLKahFHkO5WuPWQpp3ZpIspgqdLkeOKQW1yAGsZUu8M5Ngcj5FsazLX6W9FNQiTarWLHeWM7w9k2R6LdfpcqSLKKhF9pAulLk6m+T6bIpMUUvr5PApqEV2sHFk6DszSe4sa2mddJaCWqTBWstypsithTS3FtLamCKHZim9+0S0glq6XjJfboRzSocgyaFK5sv8+PYK7y7ufpelglq6UqFc5d3FNDcX0syu6zYUOVy5UoWf3l3j6mySmgW3Mbs+XkEtXaNcrXF3JcuN+RT3VnNUa+o7y+EqVWq8eX+dN++vb26KenI0ys+f6ee/7PJ9Cmo51mo1y/R6jpsLad5fylCqaM2zHL5qzXJtNsmrd9fIl6sAnBkI84lz/QxE/Ht+v4Jajh1rLUvpIjcX0ry7kNaSOukYay3vLmZ45c4qyXz9PsvRngAvnBtgLB5s+nmaCmpjzBSQBqpAxVqra7nEcZK5MjcWUtxaSOswpC5XrFRxG4PH7epYDfdWs/zo9irLjcsg4iEvL5wf4OxAGLNHT/ph+xlR/6K1dmVfzy7SZvlSlVuL9RUbcwmdtdHtKtUar9xZ5Wf3E7iMYaQnwHg8yHg8yEhPAI+r/cG9mCrwo/dXmG5MUkf8Hp4/28flkRgu1/4CeoNaH3IkLaYKvDWd4N2FNBVNCgowl8jz7RuLJHL1FkPVWmYTeWYTeV69C26XYXQzuEOMxAK4DxicO1nPlXjl9irvLdWX2vk9Lq6civOhk714H3Nk32xQW+BbxhgL/C9r7csPP8AY8xLwEsDExMRjFSWyk0q1xntLGd6eTjCf1OhZ6srVGq/cXuVn0wkA+sI+XnxymJ6Ql9mtN7hnS41Lg/PAGh6X4URvkLF4kJPxIEPRgwV3tljh1btrXJ9rLLVzGT483suV03ECXndLfo/NBvUnrbWzxpgh4NvGmJvW2h9sfUAjvF8GuHLlioY40jLpQpmrM0muzibJlaqdLkccZDaR5zuTiyTyZYyBK6fiPHemb7PFcX4owvmhCFBfuzzbCOqZRJ61bIn7aznur+V4BfC668E93lsfcQ9F/bu2KoqVKm/eS/Dm/XUqNYsBLo/G+PmzfUQD3pb+PpsKamvtbOPtkjHm68BzwA92/y6Rg7PWMrOe5+0ZXWMlH1Su1vjx7VXeaoyi+8M+Xrw8zHAs8MjvCfk8PDEc5YnhKFAfCc8mGsG9nmM9V+beao57qzlgFZ/bxYneACfjIcbiQQajflzGUKnVuDqT5LWp9c2ldmcbS+36m1hqdxB7BrUxJgy4rLXpxvu/DPy3tlQjXa9UqXFzIcXb0wlt55Ydza7Xe9HJR4yimxX2e7gwHOVCI7gzxQoz6zlm1/NMr+dJ5stMreaYWq0faev3uDjRG2Q1UyTVOAdmtCfAJ88PcKK3+aV2B9HMiHoY+HpjOYkH+Btr7TfbWpV0nfVsibd1EL/solyt8eP3V3lrJgFAf6Tei95tFL0fEb+HSyMxLo3EgHrLbSO0Z9ZzpAoV7q5kgXof/IVz/Zw5wFK7g9gzqK21d4APtb0S6Tq1mmVqNcvbMwmmVnQQvzzazHqO79xYIpkv4zJw5VQfz53pa+mqjYdFA14ujXq5NFoP7lS+zGwij9ft4uxgGNchBPQGLc+TQ1coV7k+l+Tt6eTmbi2RnZQqNX58e4W3Z5IADETqveihaGtG0fsRC3qJBVs7SdgsBbUcmqV0gbenk9xaSOmWbtnT9FqO79xYJFWo4DLwsdN9fOx0e0fRTqWglrYqVqq8t5hhci7FbELHicreSpUaP3p/hXdmH4yif/nyCIPR9qyoOAoU1NJy1lrmkgWuzyZ5TyfWyT48PIp+7nQfV7p0FL2VglpaJl0oc2M+zeRckvWces/SvFKlxg/fX+FqYxQ9GPXz4pPDXT2K3kpBLY+lWrPcWc5wfS7F1GoW7UuR/brfGEWnG6Po58/089FT8a4fRW+loJYDWU4XuT6X5OZCmry2dcs+WGvJl6sk82Um51Ncm00BMBT18+Ll4aYO0u82CmppWqFc5dZCmutzKRZTOhRJHq1mLZlChUS+TDJXJpkvk8iXSObLpPIVStUH8xYuA8+f7eejExpFP4qCWna1cZXV9bkUt5cyOlJUNlWqNZL5jRAub76fzJVJFcrs9kfF53HRG/QSD/u4ciquUfQeFNSyo2SuzPX5JJNzKdIFXWXVzdZzJZZSxW2j4mS+TLa4e8sr7HfTE/TSE/TSG/Rtvt8T8hLwuA5l6/VxoaCWTYVylTvLWSbnU0yvaUt3t7LWspgqcns5w53lLGu5nQ/Hcpn6NuveLQG8GcZB72Mfli8PKKi7mLWW1WyJqZUsd1eyzCUKOk60S1VqNWbW89xeznB3OUt2ywSxz+NivDdIPOTbFshRv+fAV0vJ/iiou0y5WmN6LcfUapa7KzlSOmujaxXLVe6uZrmznOXeam7bBF/E7+HcYJizgxHGeoOa5OswBXUXSObL3F3JMrWSZXotpwnBLpYulLmznOX2SobZ9fy2Cb+BiI+zAxHODYYZjPrVQ3YQBfUxVK1Z5hL5ejivZlnVAfxda6O9dWc5y+3lDEvp4ubXDDDWG9wcOfd06GQ42ZuC+pjIFiuNdkbjZazO13CkSrXGaraEyxg8boPX5cLjrr/vNqYlo9hazTKfLNQnA1ey246S9bgMp/pDnBuMcHogTLBFl69Keymoj6iNmfm7jYlAbUBxrnSh0Xpaze3aejJQD22XC6/b4HG78LgMXncjzLe8/yDgXXhd9bcuU7/s9e5KlsKWW3KCXjdnB8OcHQgz0RfCo9UYR46C+oio1Swr2SJziQLziTz313K6kduhNka0U6tZ7u7QeuoL+XC5oFy1VGo1KlVLpWqpWku5ailXqzzuHG9P0Mu5wTDnBiOM9AQO9TYSab2mg9oY4wZeB2attZ9tX0kC9XOcF5IF5hIF5hJ5FlIFtTMcLF+qcq8RzPdWcxS3/L/yug0TfSFOD4Q53R8m4t/5r12tZqnULOVqjUrNUqnWKG+8rdbfbv/69sdWapZ42Me5gTB9YZ8mA4+R/YyovwDcAGJtqqVrWWtJFSrMJ/PMJwrMJvKsZIo6ic7BrLUsZ4pMrdSXOs4nt7eeeoNeTg+EOTMQ5kRvoKkbsl0ug89l8HnUmpDtmgpqY8w48GvAfwd+r60VdYFarf6XfC6Rr7cyknlt0z4CSpUa0+u5zdU0W7dQu41hLB7kdH995BwP+TpYqRw3zY6o/wT4fSD6qAcYY14CXgKYmJh47MKOk0K50cZI1oN5UW2MI2M919i5uZplbr1AdcvLnLDfzen++qj5ZDykkbC0zZ5BbYz5LLBkrX3DGPPpRz3OWvsy8DLAlStXuv5Fe7pQ5s37Ce6v5VhVG+PIqNkHS9vuLmdJPDSrN9oT2AzngYj6wHI4mhlRvwB8zhjzr4AAEDPG/LW19jfbW9rRlC1WeG1qjaszSe0APCIq1RrTjXMu7ixnyZcftDT8Hhen+kOc6Q9zqj9M0Kd1x3L49gxqa+0XgS8CNEbU/0kh/UG5UoXXp9Z5ZyZBuaqAdrpipcrUSo7byxmmVrPb/p/FAh7ODUU4NxBhtCegg4ek47SO+jHlS1XeuLfO2zMJ9Z0dLluscGelvpV6ei237ZyLwYifs411x2ppiNPsK6ittd8Hvt+WSo6YQrnKm/fX+dl9BbSTJXIlbjfOudi6hG7jnIuNcNY5F+JkGlHvU6Fc5a3pBG/eX6dYVkA7zcb65ttL9XBezT7YFeh21TeebGynDvn0x1+OBv1JbVKpUuOt6QRv3FunUNbWbSep1SxzyfzmyHnrmnSf28WZgTDnBuuTgVpCJ0eRgnoPpUqNd2YSvH5vnbzO1nCMjUOprs0lP7BSI+SrH0J0fjDCeDykQ+/lyFNQP0K5WuOdmSSvT63p8CMHKVVq3FpMc3U2yfKWs5V7gl7OD0Y4NxRmJBbQZKAcK0ciqNOFMq9PrZPMl4n4PUQDHiIBD7GAd/PjVh3dWKnWuDaX4rW7a2SK2tbtFCuZIldnktxcSG9eGRXwurg8GuPJ0Rj9OoRIjjFHB/V+No+EfG4iAQ/RQP3SzY0wjzbCPOL37PoSuFqzXJ9L8tO7azp3wyEq1RrvL2V4Zza5bcXGaE+Anxvv4fxgRGcrS1dwZFAfZPNIrlQlV6qylCru+HVj2AzsaMDbCHEPUb+HfLnKa1PruujVIdZzJa7NJpmcS1FoLH30uV1cGo3yzFgPAxF/hysUOVyOCup8qb42+a3p1q9NthbShQrpQuUDR1JK51VrljsrGa7OJpley29+fjDq5+fGergwHNWKDelajghqbR7pXulCmWuzKa7PJck2Jm09LsOF4SjPjPcwrNuwRTob1MVKlZ/d1+aRblOzlvurOd6ZTTK1kmWjudUX8vHMeA+XRqIEdOmqyKaOBHWpUuPtmQSvT2nzSDfJFitMzqe4Npsk1ZiwdRl4YijCM2M9jPUGNXoW2cGhBnV9bXI9oLU2+Xix1lKs1CiUqxTKNfLlKsVylXzj47VciTvLmc2DkGIBD0+P9fDUiZi2covs4VD+hlSqNa7OJnltam3b9UXiPLZxE3Y9cOtBW6zUGoFbD93CTu83MbdggLMDYZ4Z7+FUX0ijZ5EmtTWoK9Ua1+dSvDaltclOVa1Z5pN57q3muL+WYyVT5KD3Hfg8LgIeFwGvu/HLRdDrxu9117d1D4SJBnRKnch+tS2or80m+cmdVQW0AyXzZe6tZrm3mmN6PfeBteoel9kM2q2hG/C4CW79eMv7fo9bZ2qItElbgnolU+Tbk4vteGo5gFKlxsx6jntrOe6t5kg+tLGnL+zjVF+IU/0hRnuCWq8scsjiod1fabYlqKu6K7CjrLWsZEr1UfNajrlEfls7w+9xcbIvtBnOakfIcTMeD1Ks1LYd3OU0IZ+bCyNRnhyJMRzz8/ldHqvp9mMiV6pwvzFivr+W27aqxgAjsQCn+uvBPBzVPYByPPUEvfzCxUHODoQxxpDMlbm9kuH2UobZRB7b4TGk1204Nxjh0miMib7mj+DdM6iNMQHgB4C/8fivWmv/6LGqlcdWrVkWkgXurdV7zUsPjRwifg8TjRHzRF9IG0jkWPO4DB8708dHT8Xxbjmoqyfk5SMTcT4yESdfqnJnJcPt5Sz3VrJ7HvTWKsbAqf4Ql0ZinBuMHKi12MyIugj8krU2Y4zxAj80xvyTtfYn+/5p8lhqNcvUapYbC2nur+Y2j/uE+jVTY73B+qi5L0Sfjv2ULnF+KMKnLgzuee9l0OfmqRM9PHWih1Klxv21+i30d5azbdl4NxwLcGk0ysXhKGH/4zUv9vxua60FMo0PvY1fakIfotVMkcn5FDcX0ttaGn0hHxONdsZYb3DbSELkuIuHvHz64hCnB8L7/l6fx8X5oQjnhyLUapbZRJ7by/XR9uOcohkLenlyJMrFkSj9LTzlsamYN8a4gTeA88D/tNa+usNjXgJeAogPnWhZgd2qWKny7kKGyfkUC6kHp/3FQ14un4hxYThKTJOA0oV8HhfPn+nj2Yl4S5aEulyGk30hTvaF+IUL2y9HbmYyMuB1c2G43nc+0dOe24WaCmprbRX4sDGmF/i6MeZpa+21hx7zMvAywMkLT2vEfQDWWqbX80zOpXh/ObO5esbndnFhOMLlEzFdMyVd7dJIlE8+MdC2lUrGGIaiAYaiAT5+rp9kvlwfaT80GelxGc4Mhrk0EuPMQLjtewj21Tix1iaMMd8DfgW4ttfjpTnJfJnJ+RQ35lPbNgiNx4M8NRrj3FBEbQ3pagNRP5++MMjJvtCh/tye4AcnI62t98UPc4K+mVUfg0C5EdJB4EXgf7S9smOu3LhmanIuxUziwUH50YBn8x7AvSZHRI47v9fFx8/286Hx3o4vKd2YjOyEZkbUo8BfNvrULuDvrbX/2N6yjidrLfPJApPzKd5bzGyu2vC4DOeHIlwejTEe11GfIgBPnYjxyScGdLoiza36eAd49hBqObYyxQo3Gq2N9dyDGeWRWKAxMRjB79E6ZxGoL2v7xUuDjPYEO12KY+ifqjapVGvcXckyOZ/i3mpucz1jyOfmydEYl0dj9IV9Ha1RxEmCPjcvnBvgqROxjrc5nEZB3UI1a5lZz3NrIc37y5nN+x9dpn4O81Mn6ucw6w+hyAPGwM+N9/CJcwPaQfsICurHZK1lKV3k1kKadxfTmxe0Qv0G7SdHolwaiRH06Q+gyFbGwHg8xKeeGGAoFuh0OY6moD6g9VyJWwtpbi2mSWzpO/cEvVwcru9MUmtDHuYyhoDX1ZVX0bldhuGYn7HeEGPxIKM9AY2gm6Sg3odsscK7i/VwXkw92LEU3NiZ1DiuUKs2BOpLLQcifgYifvojPvojPvpCPtwuw3K6yHtLGd596B/648TrNoz0BBnrDTIeDzLSE9B+gANSUO+hWKny/lKGW4tpZtbym5OCXrfh/GCEiyNRTsbVd+5mQZ+b/rBvWyj3hX27jhaHYgGGYgE+ca6f5UyR9xfrob1+hEPb53Ex1htkLF4P5+FYQLf+tIjjg3pj7fGthTTlao2w30PY7yHi9xD2u+sf+zwt/QNRqdaYWs1xayHN3dXs5lZul4Ez/WEujkQ5OxDGo9FBV/G6Df0RP/1hH/0RP4ONUA753Ad+FfXwluWVTIn3ltK8t5hhLVtq8e+gtUI+NycawTzeG2Qg4teApU0cG9SZQoUbCykm51NNvTQMet2b4R3ZFuYPPhf0PvovVM1aZtfz3HxoxQbAeG+QiyPRQ982Kp0TDXg40RvcFsqxoKetbS1jDINRP4NRP584N8BKpsh7ixneX0qzkul8aEcDHsbjwc0eczzkVZvvkDgqqCvVGndWskzOpbi/9mDtcdjn5tJojHjIS7ZYJVOskC1W6m9LFXLFKvly/ddy5tHP7zIQ8nk+EOj5UnXHFRsXh6NcGI7oqqou4HUbxuJBJvrCnO53xnneG62Uj5/rZzVT72m/t5RhpY3XS3lchljQS8/Gr1D97UC4/f9QyaN1PKg3lrdNzqe4tZCmuGXt8bnB+rbqvdYe12qWXLn6ILw3327/XKFSI9P4eCdasdFdBqP+xkULYU70BhzdyuqP+OmP+Pn5s/2sZUu8t5jmvaXmjuF8WMjnfhDEQe9mMPeGvET8CmMn6lhQ50oVbi6kmZxPsbrlZd1g1M/l0RgXR6IEm2wzuFyGSKPVMbzL4yrVGtnSQyPyYgWD4dxQWEeIHnMhn7txb2SYib7QY9+60Sl9YR/Pn+3n+bP9rGdLjZF2mqXGSiSXMcSCns3wfTiQdVzB0XOof1KrjaukJudSTK1mN2/GDnhdXBqpb6sejLbuVoSHedwueoIunUrXJbZeTzbRH2IwcvyWTsbDPp4708dzZ/pINm4mifo9mtQ7Zg4lqFc2rpKaT5Nv3E1mDJwZCHN59HAO3pbu0B/xMdEX4nR/mLF4d11PpgHI8dW2oC6Uq9xaTDM5l9p2Q3ZfyMflEzEujTz+hY8ifq+L041Wxqn+kCZ+5VhqS1Im82W+9MO726+SGonw1GiPdu5JS4zFgzwz1sN53X4jXaAtQV2s1KjWLCf7glwejXF+MOLoGXU5GkI+N5dPxHj6RA9xrcqRLtKWoA77PHz+E6eJqWcmj8kYONUf4ukTPZwdjGguQ7pSe4La71ZIHyHG1G+bmegLEfS5mU8WmEvkt120e9iiAQ+XT8R46kSPJsmk6zVzue1J4K+AYcACL1tr/7TdhUl79YXrqyNO9oUYjwe3bY1/lvpGpFShwux6nrlEnrlkftt693ZwGcOZwTDPjOmCBZGtmhlRV4D/aK190xgTBd4wxnzbWjvZ5tqkhSJ+Dyf7Qo1wDu65OsIYs7lR4vKJGAD5UpXZRCO4E3kWU0Vq1u76PM3oDXl5eqyHy6MxrQQS2UEzl9vOA/ON99PGmBvAGKCgdjCfx8V4PMhEI5xbcXZF0Ofm/FCE80MRAMrVGgvJwmZ4zycL2w6z2o3bZXhiKMLTYz26eV1kD/savhhjTlN/ZfzqDl97CXgJID50ohW1yT64XYbRnnqfeaI/xHA00PbWgdft4mSjfQL1M1eWM8XN4J5dz3/gJpOBiI+nxnp4UteTiTSt6aA2xkSArwG/a61NPfx1a+3LwMsAJy88/fivh2VPQzF/vZURD3GiN4jP09klkC6XYTgWYDgW4CMTcay1JHJlZhN51nMlzg1GGO3ReSoi+9VUUBtjvNRD+ivW2n9ob0mym5DPzcfO9HFpJErI5+x+rjGGeNinNc8ij6mZVR8G+DJww1r7x+0vSXbi87j46Kk4z0706vQzkS7TzJDsBeC3gKvGmLcan/tDa+032laVbPK4DB862cvHTveppyvSpZpZ9fFDQE3FQ+YyhqdOxHj+bJ8OGhLpcs5ucnapC8NRPn6uX7fMiAigoHaU0wMhPnFugOFYoNOliIiDKKgdYLQnwAvnBzbXI4uIbKWg7qD+iI9PnBvg3GBYa4tF5JEU1B0QC3r5+Nl+Lo1EdfCQiOxJQX2IQj43z53p45mxHl2kICJNU1AfAp/HxZVTcZ6diHd8m7eIHD0K6jbSZhURaQUFdQvFQ16GYgGGon6GYwEGo/5tB/KLiByEgvoAjIF4yMdwzM9gtB7MQzG/zuAQkbZwfFB7XIaRngBj8SA+t4tsqUq+VCFbrJIrVRofV/d+ogMyBvrDPgajAYZjfoZiAQYjfvWaReTQOC6oPS7DaG+Q8XiQsd4goz2BPVdIVGuWXKlCvlQlW6qSLVbIlapkSxVyjUDf+LhYfvQNJC5j6Iv4GI76N1sYg1E/Xq3QEJEO6nhQe92G0Z4gY/F6OI/E9g7mh7ldhmjA29ThRZVqbXMUvhHkFstQNMBAxKdlcyLiOIce1BvBPB4PMt4XYjjqP9Rw9Lhd9ARd9AR1Ip2IHA1tD2qv23CiN8h4PMR4PMhwLIBbu/FERJrWlqD2e1x88okBxnoVzCIij6stQd0b8vGx033teGoRka6jmTMREYfbM6iNMX9ujFkyxlw7jIJERGS7ZkbU/xv4lTbXISIij7BnUFtrfwCsHUItIiKyA/WoRUQcrmVBbYx5yRjzujHm9eXl5VY9rYhI12tZUFtrX7bWXrHWXhkcHGzV04qIdD21PkREHK6Z5Xl/C7wCXDTGzBhj/n37yxIRkQ177ky01v7GYRQiIiI7U+tDRMThFNQiIg6noBYRcTgFtYiIwymoRUQcTkEtIuJwCmoREYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHE5BLSLicApqERGHU1CLiDicglpExOEU1CIiDqegFhFxOAW1iIjDKahFRBxOQS0i4nDGWtv6JzVmGbjX8idurQFgpdNFNEF1tpbqbC3V2TqnrLWDO32hLUF9FBhjXrfWXul0HXtRna2lOltLdR4OtT5ERBxOQS0i4nDdHNQvd7qAJqnO1lKdraU6D0HX9qhFRI6Kbh5Ri4gcCQpqERGH67qgNsb8uTFmyRhzrdO17MYYc9IY8z1jzKQx5rox5gudrmknxpiAMeanxpi3G3X+107X9CjGGLcx5mfGmH/sdC2PYoyZMsZcNca8ZYx5vdP1PIoxptcY81VjzE1jzA1jzMc7XdPDjDEXG/8dN36ljDG/2+m6DqLretTGmE8BGeCvrLVPd7qeRzHGjAKj1to3jTFR4A3gX1trJztc2jbGGAOErbUZY4wX+CHwBWvtTzpc2gcYY34PuALErLWf7XQ9OzHGTAFXrLWO3pxhjPlL4F+stV8yxviAkLU20eGyHskY4wZmgeettU7fjPcBXTeittb+AFjrdB17sdbOW2vfbLyfBm4AY52t6oNsXabxobfxy3H/+htjxoFfA77U6VqOOmNMD/Ap4MsA1tqSk0O64TPA7aMY0tCFQX0UGWNOA88Cr3a4lB01WgpvAUvAt621TqzzT4DfB2odrmMvFviWMeYNY8xLnS7mEc4Ay8BfNFpJXzLGhDtd1B5+HfjbThdxUApqhzPGRICvAb9rrU11up6dWGur1toPA+PAc8YYR7WUjDGfBZastW90upYmfNJa+xHgV4H/0GjVOY0H+AjwZ9baZ4Es8AedLenRGq2ZzwH/t9O1HJSC2sEaPd+vAV+x1v5Dp+vZS+Pl7/eAX+lwKQ97Afhco//7f4BfMsb8dWdL2pm1drbxdgn4OvBcZyva0Qwws+WV01epB7dT/SrwprV2sdOFHJSC2qEak3RfBm5Ya/+40/U8ijFm0BjT23g/CLwI3OxoUQ+x1n7RWjturT1N/SXwd621v9nhsj7AGBNuTBzTaCX8MuC41UnW2gVg2hhzsfGpzwCOmuR+yG9whNseUH8J01WMMX8LfBoYMMbMAH9krf1yZ6va0QvAbwFXG/1fgD+01n6jcyXtaBT4y8asugv4e2utY5e/Odww8PX6v9F4gL+x1n6zsyU90u8AX2m0Fe4An+9wPTtq/IP3IvDbna7lcXTd8jwRkaNGrQ8REYdTUIuIOJyCWkTE4RTUIiIOp6AWEXE4BbWIiMMpqEVEHO7/AxYL9vYninDiAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#| label: fig-visualization\n", + "#| fig-cap: A display of a line and region moving up and to the right.\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "# make data\n", + "np.random.seed(1)\n", + "x = np.linspace(0, 8, 16)\n", + "y1 = 3 + 4*x/8 + np.random.uniform(0.0, 0.5, len(x))\n", + "y2 = 1 + 2*x/8 + np.random.uniform(0.0, 0.5, len(x))\n", + "\n", + "# plot\n", + "fig, ax = plt.subplots()\n", + "\n", + "ax.fill_between(x, y1, y2, alpha=.5, linewidth=0)\n", + "ax.plot(x, (y1 + y2)/2, linewidth=2)\n", + "\n", + "ax.set(xlim=(0, 8), xticks=np.arange(1, 8),\n", + " ylim=(0, 8), yticks=np.arange(1, 8))\n", + "\n", + "# Store the plot in the notebook as different MIME types\n", + "from IPython.display import Image, SVG, display\n", + "from io import BytesIO\n", + "\n", + "# SVG alternative\n", + "buffer = BytesIO()\n", + "plt.savefig(buffer, format='svg')\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.2" + }, + "vscode": { + "interpreter": { + "hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6" + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tests/docs/smoke-all/typst/orange-book/references.bib b/tests/docs/smoke-all/typst/orange-book/references.bib new file mode 100644 index 00000000000..d8ce6067526 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/references.bib @@ -0,0 +1,205 @@ +@article{knuth84, + author = {Knuth, Donald E.}, + title = {Literate Programming}, + year = {1984}, + journal = {Comput. J.}, + volume = {27}, + number = {2}, + pages = {97--111}, + doi = {10.1093/comjnl/27.2.97} +} + +@article{turing1950, + author = {Turing, Alan M.}, + title = {Computing Machinery and Intelligence}, + year = {1950}, + journal = {Mind}, + volume = {59}, + number = {236}, + pages = {433--460} +} + +@article{dijkstra1968, + author = {Dijkstra, Edsger W.}, + title = {Go To Statement Considered Harmful}, + year = {1968}, + journal = {Communications of the ACM}, + volume = {11}, + number = {3}, + pages = {147--148} +} + +@article{codd1970, + author = {Codd, Edgar F.}, + title = {A Relational Model of Data for Large Shared Data Banks}, + year = {1970}, + journal = {Communications of the ACM}, + volume = {13}, + number = {6}, + pages = {377--387} +} + +@article{shannon1948, + author = {Shannon, Claude E.}, + title = {A Mathematical Theory of Communication}, + year = {1948}, + journal = {Bell System Technical Journal}, + volume = {27}, + number = {3}, + pages = {379--423} +} + +@article{backus1978, + author = {Backus, John}, + title = {Can Programming Be Liberated from the von Neumann Style? A Functional Style and Its Algebra of Programs}, + year = {1978}, + journal = {Communications of the ACM}, + volume = {21}, + number = {8}, + pages = {613--641} +} + +@article{hoare1978, + author = {Hoare, C. A. R.}, + title = {Communicating Sequential Processes}, + year = {1978}, + journal = {Communications of the ACM}, + volume = {21}, + number = {8}, + pages = {666--677} +} + +@article{lamport1978, + author = {Lamport, Leslie}, + title = {Time, Clocks, and the Ordering of Events in a Distributed System}, + year = {1978}, + journal = {Communications of the ACM}, + volume = {21}, + number = {7}, + pages = {558--565} +} + +@article{mccarthy1960, + author = {McCarthy, John}, + title = {Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I}, + year = {1960}, + journal = {Communications of the ACM}, + volume = {3}, + number = {4}, + pages = {184--195} +} + +@book{tukey1977, + author = {Tukey, John W.}, + title = {Exploratory Data Analysis}, + year = {1977}, + publisher = {Addison-Wesley}, + address = {Reading, MA} +} + +@article{cooley1965, + author = {Cooley, James W. and Tukey, John W.}, + title = {An Algorithm for the Machine Calculation of Complex Fourier Series}, + year = {1965}, + journal = {Mathematics of Computation}, + volume = {19}, + number = {90}, + pages = {297--301} +} + +@article{breiman2001, + author = {Breiman, Leo}, + title = {Random Forests}, + year = {2001}, + journal = {Machine Learning}, + volume = {45}, + number = {1}, + pages = {5--32} +} + +@article{breiman2001b, + author = {Breiman, Leo}, + title = {Statistical Modeling: The Two Cultures}, + year = {2001}, + journal = {Statistical Science}, + volume = {16}, + number = {3}, + pages = {199--231} +} + +@article{cortes1995, + author = {Cortes, Corinna and Vapnik, Vladimir}, + title = {Support-Vector Networks}, + year = {1995}, + journal = {Machine Learning}, + volume = {20}, + number = {3}, + pages = {273--297} +} + +@book{pearl2009, + author = {Pearl, Judea}, + title = {Causality: Models, Reasoning, and Inference}, + year = {2009}, + publisher = {Cambridge University Press}, + edition = {2nd}, + address = {Cambridge, UK} +} + +@article{efron1979, + author = {Efron, Bradley}, + title = {Bootstrap Methods: Another Look at the Jackknife}, + year = {1979}, + journal = {The Annals of Statistics}, + volume = {7}, + number = {1}, + pages = {1--26} +} + +@article{tibshirani1996, + author = {Tibshirani, Robert}, + title = {Regression Shrinkage and Selection via the Lasso}, + year = {1996}, + journal = {Journal of the Royal Statistical Society: Series B}, + volume = {58}, + number = {1}, + pages = {267--288} +} + +@article{cleveland1988, + author = {Cleveland, William S. and Devlin, Susan J.}, + title = {Locally Weighted Regression: An Approach to Regression Analysis by Local Fitting}, + year = {1988}, + journal = {Journal of the American Statistical Association}, + volume = {83}, + number = {403}, + pages = {596--610} +} + +@article{wickham2014, + author = {Wickham, Hadley}, + title = {Tidy Data}, + year = {2014}, + journal = {Journal of Statistical Software}, + volume = {59}, + number = {10}, + pages = {1--23} +} + +@book{box1976, + author = {Box, George E. P. and Jenkins, Gwilym M.}, + title = {Time Series Analysis: Forecasting and Control}, + year = {1976}, + publisher = {Holden-Day}, + address = {San Francisco}, + edition = {Revised} +} + +@article{floyd1967, + author = {Floyd, Robert W.}, + title = {Assigning Meanings to Programs}, + year = {1967}, + journal = {Proceedings of Symposia in Applied Mathematics}, + volume = {19}, + pages = {19--32} +} diff --git a/tests/docs/smoke-all/typst/orange-book/references.qmd b/tests/docs/smoke-all/typst/orange-book/references.qmd new file mode 100644 index 00000000000..8d293cdf0d4 --- /dev/null +++ b/tests/docs/smoke-all/typst/orange-book/references.qmd @@ -0,0 +1,11 @@ +--- +_quarto: + tests: + run: + skip: "Book chapter - only renders as part of full book" +--- + +# References {.unnumbered} + +::: {#refs} +::: diff --git a/tests/docs/smoke-all/typst/pandoc-template-features.qmd b/tests/docs/smoke-all/typst/pandoc-template-features.qmd index 7f28a5d0a59..08e27c3dd3a 100644 --- a/tests/docs/smoke-all/typst/pandoc-template-features.qmd +++ b/tests/docs/smoke-all/typst/pandoc-template-features.qmd @@ -74,7 +74,7 @@ _quarto: [] --- -## Introduction +## Introduction {#sec-intro} This document tests all the Pandoc typst template features that have been merged into Quarto's modular template structure. @@ -87,18 +87,26 @@ def hello(): print("Hello, world!") ``` -## Math Example +## Links and Cross-References + +Here is an external [link to Quarto](https://quarto.org) which should be blue (`linkcolor`). + +Here is a cross-reference to @fig-test which should be green (`citecolor`). + +Here is a cross-reference to @eq-einstein which should also be green. + +Here is an internal link to [the introduction](#sec-intro) which should be red (`filecolor`). + +See also [the math section](#sec-math) for another internal link example. + +## Math Example {#sec-math} Here is some math with custom font: $$ E = mc^2 -$$ - -## Links - -Here is a [link to Quarto](https://quarto.org) which should be colored. +$$ {#eq-einstein} -## Conclusion +## Figure Example -All features work correctly. +![A simple test figure](data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iIzAwZmYwMCIvPjwvc3ZnPg==){#fig-test width=100} diff --git a/tests/docs/smoke-all/typst/theorem/_brand.yml b/tests/docs/smoke-all/typst/theorem/_brand.yml new file mode 100644 index 00000000000..39feea4e0ef --- /dev/null +++ b/tests/docs/smoke-all/typst/theorem/_brand.yml @@ -0,0 +1,4 @@ +color: + primary: "#2e7d32" + secondary: "#f57c00" + tertiary: "#1565c0" diff --git a/tests/docs/smoke-all/typst/theorem/theorem-clouds.qmd b/tests/docs/smoke-all/typst/theorem/theorem-clouds.qmd new file mode 100644 index 00000000000..aa67afaf11e --- /dev/null +++ b/tests/docs/smoke-all/typst/theorem/theorem-clouds.qmd @@ -0,0 +1,40 @@ +--- +format: + typst: + keep-typ: true + theorem-appearance: clouds +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame" + - "clouds-render" + - "red\\.lighten\\(85%\\)" + - "teal\\.lighten\\(85%\\)" + - "olive\\.lighten\\(85%\\)" + - + - "fancy-box" + - "rainbow-render" + - "simple-theorem-render" + - "cosmos\\.fancy" +--- + +# Theorem Test - Clouds Theme + +::: {#thm-test} +## Test Theorem +Theorems get red background. +::: + +::: {#lem-test} +## Test Lemma +Lemmas get teal background. +::: + +::: {#def-test} +## Test Definition +Definitions get olive background. +::: + +See @thm-test, @lem-test, and @def-test. diff --git a/tests/docs/smoke-all/typst/theorem/theorem-fancy.qmd b/tests/docs/smoke-all/typst/theorem/theorem-fancy.qmd new file mode 100644 index 00000000000..f9bfa28801f --- /dev/null +++ b/tests/docs/smoke-all/typst/theorem/theorem-fancy.qmd @@ -0,0 +1,55 @@ +--- +format: + typst: + keep-typ: true + theorem-appearance: fancy +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame, cosmos" + - "#import cosmos\\.fancy: fancy-box" + - "render: fancy-box\\.with\\(" + - "set-primary-border-color" + - "set-secondary-border-color" + - "set-tertiary-border-color" + - "get-primary-border-color" + - "get-secondary-border-color" + - "get-tertiary-border-color" + - + - "clouds-render" + - "rainbow-render" + - "simple-theorem-render" + ensurePdfRegexMatches: + - + - "Theorem 1" + - "Lemma 1" + - "Definition 1" + - "Proposition 1" + - [] +--- + +# Theorem Test - Fancy Theme + +::: {#thm-test} +## Test Theorem +Theorems use secondary color. +::: + +::: {#lem-test} +## Test Lemma +Lemmas also use secondary color. +::: + +::: {#def-test} +## Test Definition +Definitions use primary color. +::: + +::: {#prp-test} +## Test Proposition +Propositions use tertiary color. +::: + +See @thm-test, @lem-test, @def-test, and @prp-test. diff --git a/tests/docs/smoke-all/typst/theorem/theorem-rainbow.qmd b/tests/docs/smoke-all/typst/theorem/theorem-rainbow.qmd new file mode 100644 index 00000000000..6c317bc1af9 --- /dev/null +++ b/tests/docs/smoke-all/typst/theorem/theorem-rainbow.qmd @@ -0,0 +1,40 @@ +--- +format: + typst: + keep-typ: true + theorem-appearance: rainbow +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame" + - "rainbow-render" + - "red\\.darken\\(20%\\)" + - "teal\\.darken\\(20%\\)" + - "olive\\.darken\\(20%\\)" + - + - "fancy-box" + - "clouds-render" + - "simple-theorem-render" + - "cosmos\\.fancy" +--- + +# Theorem Test - Rainbow Theme + +::: {#thm-test} +## Test Theorem +Theorems get red left border. +::: + +::: {#lem-test} +## Test Lemma +Lemmas get teal left border. +::: + +::: {#def-test} +## Test Definition +Definitions get olive left border. +::: + +See @thm-test, @lem-test, and @def-test. diff --git a/tests/docs/smoke-all/typst/theorem/theorem-simple.qmd b/tests/docs/smoke-all/typst/theorem/theorem-simple.qmd new file mode 100644 index 00000000000..d6fc5bca375 --- /dev/null +++ b/tests/docs/smoke-all/typst/theorem/theorem-simple.qmd @@ -0,0 +1,42 @@ +--- +format: + typst: + keep-typ: true + theorem-appearance: simple +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - + - "#import \"@preview/theorion:0\\.4\\.1\": make-frame" + - "#show: show-theorem" + - "#show: show-lemma" + - "#show: show-definition" + - "simple-theorem-render" + - "strong\\[" + - "emph\\(" + - + - "cosmos" + - "fancy-box" + - "clouds-render" + - "rainbow-render" +--- + +# Theorem Test - Simple Theme + +::: {#thm-pythagorean} +## Pythagorean Theorem +For a right triangle with sides $a$, $b$ and hypotenuse $c$: $a^2 + b^2 = c^2$ +::: + +::: {#lem-triangle} +## Triangle Inequality +For any triangle, the sum of any two sides must be greater than the third side. +::: + +::: {#def-continuous} +## Continuous Function +A function $f$ is continuous at $x_0$ if $\lim_{x \to x_0} f(x) = f(x_0)$. +::: + +See @thm-pythagorean, @lem-triangle, and @def-continuous. diff --git a/tests/smoke/book/render-book.test.ts b/tests/smoke/book/render-book.test.ts index d5542f246bf..c0e77361b62 100644 --- a/tests/smoke/book/render-book.test.ts +++ b/tests/smoke/book/render-book.test.ts @@ -51,3 +51,6 @@ testQuartoCmd( }, }, ); + +// Note: Typst book tests have been moved to smoke-all infrastructure at +// tests/docs/smoke-all/typst/orange-book/index.qmd diff --git a/tests/smoke/inspect/inspect-extensions.test.ts b/tests/smoke/inspect/inspect-extensions.test.ts index bbf4820e118..f33d84f8a97 100644 --- a/tests/smoke/inspect/inspect-extensions.test.ts +++ b/tests/smoke/inspect/inspect-extensions.test.ts @@ -25,9 +25,9 @@ import { assert, assertEquals } from "testing/asserts"; verify: async (outputs: ExecuteOutput[]) => { assert(existsSync(output)); const json = JSON.parse(Deno.readTextFileSync(output)); - assert(json.extensions.length === 2); - // 0 is julia-engine - assertEquals(json.extensions[1].title, "Auto Dark Mode"); + assert(json.extensions.length === 3); + // 0 is orange-book, 1 is julia-engine (bundled extensions) + assertEquals(json.extensions[2].title, "Auto Dark Mode"); } } ], diff --git a/tests/smoke/smoke-all.test.ts b/tests/smoke/smoke-all.test.ts index 36650b92667..b0bc2f3eece 100644 --- a/tests/smoke/smoke-all.test.ts +++ b/tests/smoke/smoke-all.test.ts @@ -290,14 +290,22 @@ function resolveTestSpecs( const usesKeepTex = key === "ensureLatexFileRegexMatches" && (metadata.format?.pdf?.['keep-tex'] || metadata['keep-tex']); const needsInputPath = usesKeepTyp || usesKeepTex; + + // For book projects, use intermediateTypstPath (index.typ at project root) + // instead of the output path (which would be _book/BookTitle.typ) + let targetPath = outputFile.outputPath; + if (key === "ensureTypstFileRegexMatches" && outputFile.intermediateTypstPath) { + targetPath = outputFile.intermediateTypstPath; + } + if (typeof value === "object" && Array.isArray(value)) { // value is [matches, noMatches?] - ensure inputFile goes in the right position const matches = value[0]; const noMatches = value[1]; const inputFile = needsInputPath ? input : undefined; - verifyFns.push(verifyMap[key](outputFile.outputPath, matches, noMatches, inputFile)); + verifyFns.push(verifyMap[key](targetPath, matches, noMatches, inputFile)); } else { - verifyFns.push(verifyMap[key](outputFile.outputPath, value, undefined, needsInputPath ? input : undefined)); + verifyFns.push(verifyMap[key](targetPath, value, undefined, needsInputPath ? input : undefined)); } } else { throw new Error(`Unknown verify function used: ${key} in file ${input} for format ${format}`) ; @@ -450,6 +458,9 @@ for (const { path: fileName } of files) { // Wait for all the promises to resolve // Meaning all the files have been tested and we can clean Promise.all(testFilesPromises).then(() => { + if (Deno.env.get("QUARTO_TEST_KEEP_OUTPUTS")) { + return; + } // Clean up any projects that were tested for (const project of testedProjects) { // Clean project output directory diff --git a/tests/utils.ts b/tests/utils.ts index 26775a4666f..8ba0bf54ee5 100644 --- a/tests/utils.ts +++ b/tests/utils.ts @@ -11,6 +11,8 @@ import { kMetadataFormat, kOutputExt, kOutputFile } from "../src/config/constant import { pathWithForwardSlashes, safeExistsSync } from "../src/core/path.ts"; import { readYaml } from "../src/core/yaml.ts"; import { isWindows } from "../src/deno_ral/platform.ts"; +import { bookOutputStem } from "../src/project/types/book/book-shared.ts"; +import { ProjectConfig } from "../src/project/types.ts"; // caller is responsible for cleanup! export function inTempDirectory(fn: (dir: string) => unknown): unknown { @@ -67,6 +69,21 @@ export function findProjectOutputDir(projectdir: string | undefined) { return (yaml as any)?.project?.["output-dir"] || ""; } +// Get the book output stem using the real bookOutputStem() from book-shared.ts +export function findBookOutputStem(projectdir: string | undefined): string | undefined { + if (!projectdir) { + return undefined; + } + const yaml = readYaml(join(projectdir, "_quarto.yml")) as Record; + // deno-lint-ignore no-explicit-any + const projectType = ((yaml as any).project as any)?.type; + if (projectType !== "book") { + return undefined; + } + // Pass the yaml as ProjectConfig - it has { project: {...}, book: {...} } + return bookOutputStem(projectdir, yaml as ProjectConfig); +} + // Gets output that should be created for this input file and target format export function outputForInput( input: string, @@ -79,8 +96,16 @@ export function outputForInput( // TODO: Consider improving this (e.g. for cases like Beamer, or typst) projectRoot = projectRoot ?? findProjectDir(input); projectOutDir = projectOutDir ?? findProjectOutputDir(projectRoot); - const dir = projectRoot ? relative(projectRoot, dirname(input)) : dirname(input); - let stem = metadata?.[kMetadataFormat]?.[to]?.[kOutputFile] || basename(input, extname(input)); + + // For book projects with single-file output (PDF, Typst, EPUB), use the book title as stem + // Multi-file formats (HTML) produce individual chapter files, so use input filename + // Single-file formats only produce merged output when rendering the index file + const inputBasename = basename(input, extname(input)); + const isMultiFileFormat = to.startsWith("html") || to === "revealjs"; + const isSingleFileBookRender = !isMultiFileFormat && inputBasename === "index"; + const bookStem = isSingleFileBookRender ? findBookOutputStem(projectRoot) : undefined; + const dir = bookStem ? "" : (projectRoot ? relative(projectRoot, dirname(input)) : dirname(input)); + let stem = bookStem || metadata?.[kMetadataFormat]?.[to]?.[kOutputFile] || inputBasename; let ext = metadata?.[kMetadataFormat]?.[to]?.[kOutputExt]; // TODO: there's a bug where output-ext keys from a custom format are @@ -155,9 +180,18 @@ export function outputForInput( ? join(projectOutDir, dir, `${stem}_files`) : join(dir, `${stem}_files`); + // For book projects with typst format, the intermediate .typ file is at project root + // as index.typ (from the merged book content), not derived from the PDF path + let intermediateTypstPath: string | undefined; + if (baseFormat === "typst" && projectRoot && projectOutDir === "_book") { + // Book projects place the merged .typ at project root as index.typ + intermediateTypstPath = join(projectRoot, "index.typ"); + } + return { outputPath, supportPath, + intermediateTypstPath, }; } diff --git a/tests/verify-pdf-text-position.ts b/tests/verify-pdf-text-position.ts index 65b24a3deb1..7a60ee2ee9c 100644 --- a/tests/verify-pdf-text-position.ts +++ b/tests/verify-pdf-text-position.ts @@ -62,6 +62,7 @@ export const TextSelectorSchema = z.object({ role: z.string().optional(), // PDF 1.4 structure role: P, H1, H2, Figure, Table, Span, etc. page: z.number().optional(), // Page number (1-indexed), required for role: "Page" edge: EdgeSchema.optional(), // Which edge to use for comparison (overrides relation default) + granularity: z.string().optional(), // Aggregate bbox to ancestor with this role (e.g., "Div", "P") }); export type TextSelector = z.infer; @@ -394,29 +395,38 @@ function extractMarkedTextItems( } /** - * Recursively build MCID -> StructNode map from structure tree. - * Returns the struct node that directly contains the MCID content. + * Recursively build MCID -> StructNode map and parent map from structure tree. + * Returns the struct node that directly contains the MCID content, plus a map + * from each struct node to its parent for tree traversal. */ function buildMcidStructMap( tree: StructTreeNode | null, - map: Map = new Map(), + mcidMap: Map = new Map(), + parentMap: Map = new Map(), parentNode: StructTreeNode | null = null, -): Map { - if (!tree) return map; +): { mcidMap: Map; parentMap: Map } { + if (!tree) return { mcidMap, parentMap }; for (const child of tree.children ?? []) { if (isStructTreeContent(child)) { if (child.type === "content" && child.id) { // Map MCID to the parent struct node (the semantic element) - map.set(child.id, parentNode ?? tree); + mcidMap.set(child.id, parentNode ?? tree); } } else { + // Record parent for tree traversal + if (parentNode) { + parentMap.set(child, parentNode); + } else { + // Root-level children have tree as parent + parentMap.set(child, tree); + } // Recurse into child struct nodes - buildMcidStructMap(child, map, child); + buildMcidStructMap(child, mcidMap, parentMap, child); } } - return map; + return { mcidMap, parentMap }; } /** @@ -438,6 +448,46 @@ function collectDirectMcids(node: StructTreeNode): string[] { return mcids; } +/** + * Recursively collect ALL MCIDs under a structure node and its descendants. + * Used for granularity aggregation to compute bbox of an entire subtree. + */ +function collectAllMcids(node: StructTreeNode): string[] { + const mcids: string[] = []; + + for (const child of node.children ?? []) { + if (isStructTreeContent(child)) { + if (child.type === "content" && child.id) { + mcids.push(child.id); + } + } else { + // Recurse into child struct nodes + mcids.push(...collectAllMcids(child)); + } + } + + return mcids; +} + +/** + * Walk up the structure tree to find the nearest ancestor with a matching role. + * Returns null if no ancestor with the target role is found. + */ +function findAncestorWithRole( + node: StructTreeNode, + targetRole: string, + parentMap: Map, +): StructTreeNode | null { + let current: StructTreeNode | undefined = node; + while (current) { + if (current.role === targetRole) { + return current; + } + current = parentMap.get(current); + } + return null; +} + /** * Check if a string is whitespace-only (including empty). * Used to filter out horizontal skip spaces in PDF content. @@ -582,13 +632,21 @@ export const ensurePdfTextPositions = ( const isPageRole = (sel: TextSelector): boolean => sel.role === "Page"; // Helper: get unique key for a selector (for resolvedSelectors map) + // Includes granularity since different granularity settings need different bbox computation const selectorKey = (sel: TextSelector): string => { if (isPageRole(sel)) { return `Page:${sel.page}`; } - return sel.text ?? ""; + const base = sel.text ?? ""; + if (sel.granularity) { + return `${base}@${sel.granularity}`; + } + return base; }; + // Track unique selectors by their full key (including granularity) + const uniqueSelectors = new Map(); + const addSelector = (sel: TextSelector) => { if (isPageRole(sel)) { if (sel.page === undefined) { @@ -605,6 +663,8 @@ export const ensurePdfTextPositions = ( const existing = textToSelectors.get(sel.text) ?? []; existing.push(sel); textToSelectors.set(sel.text, existing); + // Also track by full key for resolution + uniqueSelectors.set(selectorKey(sel), sel); } }; @@ -633,6 +693,7 @@ export const ensurePdfTextPositions = ( const allTextItems: MarkedTextItem[] = []; const mcidToTextItems = new Map(); const mcidToStructNode = new Map(); + const structNodeToParent = new Map(); const pageDimensions = new Map(); for (let pageNum = 1; pageNum <= doc.numPages; pageNum++) { @@ -663,15 +724,22 @@ export const ensurePdfTextPositions = ( } } - // Get structure tree and build MCID -> struct node map + // Get structure tree and build MCID -> struct node map + parent map const structTree = await page.getStructTree(); if (structTree) { - buildMcidStructMap(structTree, mcidToStructNode); + const { mcidMap, parentMap } = buildMcidStructMap(structTree); + for (const [k, v] of mcidMap) { + mcidToStructNode.set(k, v); + } + for (const [k, v] of parentMap) { + structNodeToParent.set(k, v); + } } } // Stage 5: Find text items for each search text (must be unique, unless Decoration) const foundTexts = new Map(); + const ambiguousTexts = new Set(); for (const searchText of searchTexts) { const matches = allTextItems.filter((t) => t.str.includes(searchText)); if (matches.length === 1) { @@ -681,6 +749,7 @@ export const ensurePdfTextPositions = ( if (isDecoration(searchText)) { foundTexts.set(searchText, matches[0]); } else { + ambiguousTexts.add(searchText); errors.push( `Text "${searchText}" is ambiguous - found ${matches.length} matches. Use a more specific search string.`, ); @@ -714,11 +783,15 @@ export const ensurePdfTextPositions = ( }); } - // Then, resolve text-based selectors - for (const searchText of searchTexts) { + // Then, resolve text-based selectors (iterate by unique selector key to handle granularity) + for (const [key, selector] of uniqueSelectors) { + const searchText = selector.text!; const textItem = foundTexts.get(searchText); if (!textItem) { - errors.push(`Text not found in PDF: "${searchText}"`); + // Don't report "not found" if we already reported "ambiguous" + if (!ambiguousTexts.has(searchText)) { + errors.push(`Text not found in PDF: "${searchText}"`); + } continue; } @@ -742,28 +815,52 @@ export const ensurePdfTextPositions = ( } else { structNode = mcidToStructNode.get(textItem.mcid) ?? null; - // Same-MCID approach: compute bbox from all text items sharing this MCID - const mcidItems = mcidToTextItems.get(textItem.mcid); - if (mcidItems && mcidItems.length > 0) { - const mcidBBox = unionBBox(mcidItems); - if (mcidBBox) { - bbox = mcidBBox; + // Check for granularity: aggregate bbox to ancestor with target role + if (selector.granularity && structNode) { + const ancestor = findAncestorWithRole(structNode, selector.granularity, structNodeToParent); + if (ancestor) { + // Collect ALL MCIDs recursively under that ancestor + const allMcids = collectAllMcids(ancestor); + const allItems = allMcids.flatMap((id) => mcidToTextItems.get(id) ?? []); + const ancestorBBox = unionBBox(allItems); + if (ancestorBBox) { + bbox = ancestorBBox; + } else { + errors.push( + `Could not compute bbox for "${searchText}" with granularity "${selector.granularity}" - no content items found`, + ); + continue; + } } else { errors.push( - `Could not compute bbox for "${searchText}" - all text items in MCID are whitespace-only`, + `No ancestor with role "${selector.granularity}" found for "${searchText}"`, ); continue; } } else { - errors.push( - `No text items found for MCID ${textItem.mcid} containing "${searchText}"`, - ); - continue; + // Same-MCID approach: compute bbox from all text items sharing this MCID + const mcidItems = mcidToTextItems.get(textItem.mcid); + if (mcidItems && mcidItems.length > 0) { + const mcidBBox = unionBBox(mcidItems); + if (mcidBBox) { + bbox = mcidBBox; + } else { + errors.push( + `Could not compute bbox for "${searchText}" - all text items in MCID are whitespace-only`, + ); + continue; + } + } else { + errors.push( + `No text items found for MCID ${textItem.mcid} containing "${searchText}"`, + ); + continue; + } } } - resolvedSelectors.set(searchText, { - selector: { text: searchText }, + resolvedSelectors.set(key, { + selector, textItem, structNode, bbox, @@ -848,7 +945,7 @@ export const ensurePdfTextPositions = ( (a.byMax !== undefined ? ` (required <= ${a.byMax}pt)` : "") : ""; errors.push( - `Position assertion failed: "${subjectKey}" is NOT ${a.relation} "${objectKey}".` + + `Position assertion failed (page ${subjectResolved.bbox.page}): "${subjectKey}" is NOT ${a.relation} "${objectKey}".` + ` Subject.${result.subjectEdge}=${result.subjectValue.toFixed(1)},` + ` Object.${result.objectEdge}=${result.objectValue.toFixed(1)}.${distanceInfo}` + (result.failureReason ? ` (${result.failureReason})` : ""), @@ -867,7 +964,7 @@ export const ensurePdfTextPositions = ( if (!result.passed) { errors.push( - `Position assertion failed: "${subjectKey}" is NOT ${a.relation} "${objectKey}".` + + `Position assertion failed (page ${subjectResolved.bbox.page}): "${subjectKey}" is NOT ${a.relation} "${objectKey}".` + ` Subject.${result.subjectEdge}=${result.subjectValue.toFixed(1)},` + ` Object.${result.objectEdge}=${result.objectValue.toFixed(1)}.` + ` Difference: ${result.difference.toFixed(1)}pt (tolerance: ${a.tolerance}pt)`, @@ -930,7 +1027,7 @@ export const ensurePdfTextPositions = ( if (passed) { errors.push( - `Negative assertion failed: "${subjectKey}" IS ${a.relation} "${objectKey}" (expected NOT to be). ` + + `Negative assertion failed (page ${subjectResolved.bbox.page}): "${subjectKey}" IS ${a.relation} "${objectKey}" (expected NOT to be). ` + resultInfo, ); } diff --git a/tests/verify.ts b/tests/verify.ts index ca9db28cc88..0a631e44888 100644 --- a/tests/verify.ts +++ b/tests/verify.ts @@ -708,21 +708,27 @@ export const ensurePdfRegexMatches = ( assert(output.success, `Failed to extract text from ${file}.`) const text = new TextDecoder().decode(output.stdout); + // Collect all failures instead of failing on first mismatch + const failures: string[] = []; + matches.forEach((regex) => { - assert( - regex.test(text), - `Required match ${String(regex)} is missing from file ${file}.`, - ); + if (!regex.test(text)) { + failures.push(`Required match ${String(regex)} is missing`); + } }); if (noMatches) { noMatches.forEach((regex) => { - assert( - !regex.test(text), - `Illegal match ${String(regex)} was found in file ${file}.`, - ); + if (regex.test(text)) { + failures.push(`Illegal match ${String(regex)} was found`); + } }); } + + assert( + failures.length === 0, + `${failures.length} regex mismatch(es) in ${file}:\n - ${failures.join('\n - ')}`, + ); }, }; } diff --git a/tools/pdf-tag-tree.ts b/tools/pdf-tag-tree.ts new file mode 100644 index 00000000000..ac16632c8ad --- /dev/null +++ b/tools/pdf-tag-tree.ts @@ -0,0 +1,231 @@ +#!/usr/bin/env -S deno run --allow-read --allow-env +/** + * pdf-tag-tree.ts + * + * Extracts and displays the PDF structure tree (tag hierarchy) with MCIDs. + * Useful for debugging ensurePdfTextPositions issues. + * + * Usage: quarto run tools/pdf-tag-tree.ts + * + * The search-text is required and determines which page's structure tree to display. + */ + +import * as pdfjsLib from "npm:pdfjs-dist@4.4.168/legacy/build/pdf.mjs"; + +interface StructTreeContent { + type: "content"; + id: string; +} + +interface StructTreeNode { + role: string; + children?: (StructTreeNode | StructTreeContent)[]; + alt?: string; + lang?: string; +} + +interface TextMarkedContent { + type: string; + id?: string; + tag?: string; +} + +interface TextItem { + str: string; + transform: number[]; + width: number; + height: number; +} + +function isStructTreeContent(child: any): child is StructTreeContent { + return child && typeof child === "object" && child.type === "content"; +} + +function isTextMarkedContent(item: any): item is TextMarkedContent { + return "type" in item && typeof item.type === "string"; +} + +// Build a map from MCID to the path of tags leading to it +function buildMcidPaths( + node: StructTreeNode, + path: string[] = [], + result: Map }> = new Map() +): Map }> { + const currentPath = [...path, node.role]; + + for (const child of node.children ?? []) { + if (isStructTreeContent(child)) { + // This is an MCID reference + const attrs: Record = {}; + if (node.alt) attrs.alt = node.alt; + if (node.lang) attrs.lang = node.lang; + + result.set(child.id, { + path: currentPath, + role: node.role, + attrs + }); + } else { + // Recurse into child structure nodes + buildMcidPaths(child, currentPath, result); + } + } + + return result; +} + +// Pretty print the structure tree +function printStructTree( + node: StructTreeNode, + indent: number = 0, + maxDepth: number = 10, + highlightMcids: Set = new Set() +): void { + if (indent > maxDepth) { + console.log(" ".repeat(indent * 2) + "...(truncated)"); + return; + } + + const attrs: string[] = []; + if (node.alt) attrs.push(`alt="${node.alt}"`); + if (node.lang) attrs.push(`lang="${node.lang}"`); + + const attrStr = attrs.length > 0 ? ` [${attrs.join(", ")}]` : ""; + + let mcids: string[] = []; + let childNodes: StructTreeNode[] = []; + + for (const child of node.children ?? []) { + if (isStructTreeContent(child)) { + mcids.push(child.id); + } else { + childNodes.push(child); + } + } + + const mcidStr = mcids.length > 0 ? ` (MCIDs: ${mcids.join(", ")})` : ""; + const hasMatch = mcids.some(id => highlightMcids.has(id)); + const matchMarker = hasMatch ? " # <-- found" : ""; + console.log(" ".repeat(indent * 2) + `<${node.role}>${attrStr}${mcidStr}${matchMarker}`); + + for (const child of childNodes) { + printStructTree(child, indent + 1, maxDepth, highlightMcids); + } +} + +async function main() { + const file = Deno.args[0]; + const searchText = Deno.args[1]; + + if (!file || !searchText) { + console.error("Usage: quarto run tools/pdf-tag-tree.ts "); + Deno.exit(1); + } + + const data = await Deno.readFile(file); + const pdf = await pdfjsLib.getDocument({ + data, + useWorkerFetch: false, + isEvalSupported: false, + useSystemFonts: true, + }).promise; + + // First pass: find which page contains the search text + let foundPage: number | null = null; + + for (let pageNum = 1; pageNum <= pdf.numPages; pageNum++) { + const page = await pdf.getPage(pageNum); + const textContent = await page.getTextContent({ includeMarkedContent: true }); + + for (const item of textContent.items) { + if (!isTextMarkedContent(item)) { + const textItem = item as TextItem; + if (textItem.str.includes(searchText)) { + foundPage = pageNum; + break; + } + } + } + if (foundPage) break; + } + + if (!foundPage) { + console.error(`Error: "${searchText}" not found in PDF`); + Deno.exit(1); + } + + console.log(`Found "${searchText}" on page ${foundPage}\n`); + + // Get the page with the search text + const page = await pdf.getPage(foundPage); + const structTree = await page.getStructTree(); + + // Build MCID paths for this page + const mcidPaths = structTree ? buildMcidPaths(structTree as StructTreeNode) : new Map(); + + // Get text content and find MCIDs containing the search text + const textContent = await page.getTextContent({ includeMarkedContent: true }); + + // First pass: collect MCIDs that contain the search text + const matchingMcids = new Set(); + let currentMcid: string | null = null; + + for (const item of textContent.items) { + if (isTextMarkedContent(item)) { + const mcidValue = (item as any).id; + if (item.type === "beginMarkedContentProps" && mcidValue !== undefined) { + currentMcid = mcidValue; + } else if (item.type === "endMarkedContent") { + currentMcid = null; + } + } else { + const textItem = item as TextItem; + if (textItem.str.includes(searchText) && currentMcid !== null) { + matchingMcids.add(currentMcid); + } + } + } + + console.log(`=== STRUCTURE TREE (Page ${foundPage}) ===\n`); + if (structTree) { + printStructTree(structTree as StructTreeNode, 0, 15, matchingMcids); + } else { + console.log("No structure tree found (PDF may not be tagged)"); + } + console.log("\n"); + + console.log(`=== TEXT ITEMS CONTAINING "${searchText}" ===\n`); + + currentMcid = null; + + for (const item of textContent.items) { + if (isTextMarkedContent(item)) { + const mcidValue = (item as any).id; + if (item.type === "beginMarkedContentProps" && mcidValue !== undefined) { + currentMcid = mcidValue; + } else if (item.type === "endMarkedContent") { + currentMcid = null; + } + } else { + const textItem = item as TextItem; + if (textItem.str.includes(searchText)) { + const x = textItem.transform[4]; + const y = textItem.transform[5]; + const pathInfo = currentMcid ? mcidPaths.get(currentMcid) : null; + + console.log(`Text: "${textItem.str}"`); + console.log(` MCID: ${currentMcid}`); + console.log(` Position: x=${x.toFixed(1)}, y=${y.toFixed(1)}`); + if (pathInfo) { + console.log(` Tag path: ${pathInfo.path.join(" > ")}`); + if (Object.keys(pathInfo.attrs).length > 0) { + console.log(` Attrs: ${JSON.stringify(pathInfo.attrs)}`); + } + } + console.log(); + } + } + } +} + +main().catch(console.error);